Jump to content

kpuk

Members
  • Posts

    8
  • Joined

  • Last visited

kpuk's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. If ICMP protocol disabled on proxy server script show that proxy offline. I use HttpSetProxy+InetGet but it's not so fast as i want(
  2. may be you write your code (or it part) here? It help undersatnd where you wrong.
  3. could anyone reupload this UDF?
  4. in php after query need to fetch result. I think here need it too. I seed in UDF some func named like _fetch_ - try one of it ps: sorry for my English
  5. I use this UDF and needed to escape string. That I little rewrote this func (based on Prog@ndy UDF function) to use with EzMySql.au3 Func _EzMySql_Real_Escape_String($From, $FromLen = Default) If Not $hEzMySql_Ptr Then MsgBox(0, "", "errer") Return SetError(1, 0, 0) EndIf If $FromLen <= 0 Or $FromLen = Default Then $FromLen = StringLen($From) Local $TO = DllStructCreate("char[" & $FromLen * 2 + 1 & "]") Local $query = DllCall($hEzMySql_Dll, "int", "mysql_real_escape_string", "ptr", $hEzMySql_Ptr, "ptr", DllStructGetPtr($TO), "str", $From, "ulong", $FromLen) If @error Then Return SetError(1, 0, 0) Return StringLeft(DllStructGetData($TO, 1), $query[0]) EndFunc ;==>_EzMySql_Real_Escape_String ps: sorry for my English
  6. sorry, have forgotten to write type of result (( I need result in hex representaion. If this $pass = _StringToHex($text) $pass = Dec($pass) $pass = Hex($pass / 26) (26 = 1Ah) result as floating, but i need in hex thx!
  7. For examlpe: I have string str = ftq I need divide this string it on 1Ah (1A in hex). As result i need hex string. So how 667471/1A to do?? 667471 is _StringToHex('ftq') ps:sorry for my english(
  8. hi all from Ukraine! I need help. I have one programm with api-functions. I need help with sintaxis. So: - access to all function using one interface: IRunpadShell - all function return S_OK if successful and other code in other results - all function is not Unicode As Example how i may use this api function?: HRESULT TurnShell(BOOL bNewState); Turn On or Turn Off Shell (TRUE/FALSE). Turn On Shell can only if shell state is RSS_OFF, and Turn Off if RSS_ACTIVE. If i understand this example i understand other function of this program and teach little more Autoit. ps: sorry for my Enlgish!!!
×
×
  • Create New...