Jump to content

LOULOU

Active Members
  • Posts

    464
  • Joined

  • Last visited

Everything posted by LOULOU

  1. It's for two reasons :- IE.au3 new version which seems to correct bug i have - StringRegexp which cause trouble between XP french version and XP English version, the same calling make trouble in french version and works well in English version
  2. When AUTOIT next version and next beta version would be ready for download ? Thanks
  3. Here is the error message...ogram Files\AutoIt3\SciTE\Lua\AutoItAutoComplete.lua:42: bad argument #1 to 'char' (invalid value)
  4. all was good for my installation except that sometimes when i write file i have a lua message error that's happen. Next time i will copy iot and send to you. For the rest all is good. Thanks
  5. How can i personalize then language like locale.properties in old version ? thanks
  6. Where can i get "TextOCX.dll " ? Thanks in advance
  7. Use stringRexexp it's the right choice for you
  8. Is it normal , When you want to put height in a label control to 2 , systematically after saving you have a height of 17 ?
  9. I don't arrive to import external format. If someone have an example of that which work i would be very pleased. Thanks
  10. I want to import an external window in Koda with Form Captor.au3 but i don't know ho to do the help isn't suffisant. May be someone can help me ?
  11. Is it possible to read the entet of an email and determinining if the sender has used a blind carbon copy ? THanks in davance
  12. Send me a privazte message with you pass and user and ftp name, you will change it after i sucess transfering it's the only things i can test for you
  13. Please verify the following instruction $Ftpp = _FtpPutFile($Conn1, 'Xp & Sp.jpg', '/blueduck.website.com/',$internet_FLAG);add filename and destination Is //blueduck.website.com/ The name of the directory where you want to put your files ? It seems it is the name of your FTP and in this case it is normal that it doesnt work.
  14. Maybe you can use Opt("FtpBinaryMode",0) which allow transfering a file by byte and not in ascii Maybe it solves your problem
  15. Here is an example wich works well with the file Attached FTP.AU3 Caution if you want to acess to several FTP, you ought to open a session for each FTP like in the example ;Put this in the main programm #include 'FTP.AU3' Const $INTERNET_FLAG_PASSIVE = 0x08000000 Const $INTERNET_FLAG_TRANSFER_ASCII = 0x00000001 Const $INTERNET_FLAG_TRANSFER_BINARY = 0x00000002 Const $INTERNET_DEFAULT_FTP_PORT = 21 Const $INTERNET_SERVICE_FTP = 1 Const $INTERNET_FLAG_NO_CACHE_WRITE = 0x4000000 Const $internet_FLAG = $INTERNET_FLAG_TRANSFER_BINARY + $INTERNET_FLAG_NO_CACHE_WRITE $server = 'blueduck.mywebsite.com' $username = 'username' $pass = 'password' Func Upload () $dllhandle = DllOpen('wininet.dll') $Open = _FTPOpen('MyFTP Control') $Conn = _FTPConnect($Open, $server, $username, $pass,21,1, $INTERNET_FLAG_PASSIVE,0) If @error Then MsgBox(16, "Error", "Error 1") EndIf $Ftpp = _FtpPutFile($Conn, 'Location.jpg', '/nameofdirectory/',$internet_FLAG);add filename and destination If $Ftpp = 0 Then MsgBox(16, "Error", "Fail to Put File: Error1") EndIf $Ftpc = _FTPClose($Open) $Open1 = _FTPOpen('MyFTP1 Control') $Conn1 = _FTPConnect($Open1, $server, $username, $pass,21,1, $INTERNET_FLAG_PASSIVE,0) If @error Then MsgBox(16, "Error", "Error 1") EndIf $Ftpp = _FtpPutFile($Conn1, 'Xp & Sp.jpg', '/nameofdirectory/',$internet_FLAG);add filename and destination If $Ftpp = 0 Then MsgBox(16, "Error", "Fail to Put File: Error2") EndIf $Ftpc = _FTPClose($Open1) $Open2= _FTPOpen('MyFTP2 Control') $Conn2= _FTPConnect($Open2, $server, $username, $pass,21,1, $INTERNET_FLAG_PASSIVE,0) If @error Then MsgBox(16, "Error", "Error 1") EndIf $Ftpp = _FtpPutFile($Conn2, 'LvL.jpg', '/nameofdirectory/',$internet_FLAG);add filename and destination If $Ftpp = 0 Then MsgBox(16, "Error", "Fail to Put File: Error3") EndIf $Ftpc = _FTPClose($Open2)
  16. It means that i capture a region in bitmap format and i want to get only the text of the capture image. I know that is possible with _clipboard management but my knowledge is not suffisant on how to get that's
  17. Here is my problem I want to capture a region of the screen puting it in the clipboard and after having the clipboard in text format. How can i do ?
  18. Hi DaleHohn, I reboot my computer and desinstall my version of AutoIt Beta an RC to clear Paul1A.lib I reinstall all and after i have always the problem With _IeAttach with DialogBox and Embedded param My program use _IEErrorHandlerRegister() but doesn't give anymore information than these one i give to you I works on a private extranet maybe the problem comes from that How can i debug from another way and giving you more information ?
  19. I want to extract "Bonjour" from the following tag <TR CLASS="LIL">Bonjour <TD> But the function $avarray = _StringBetween ( $html,'<TR CLASS="LIL"><TD>',"</TD>") RetURn nothing can anyone help me to solve that problem ?
  20. $oie = _IEAttach($titre , "dialogbox") Error Message since the last version Works well in my program with beta ver 3.2.9.9 $aRet = DllCall("oleacc.dll", "int", "ObjectFromLresult", "int", $lResult, "ptr", DllStructGetPtr($typUUID), _ "int", 0, "idispatch_ptr", "") If IsObj($aRet[4]) Then C:\Program Files\AutoIt3\beta\Include\IE.AU3 (4088) : ==> Subscript used with non-Array variable.: If IsObj($aRet[4]) Then If IsObj($aRet^ ERROR
  21. You can get image from web with Inetget Function
  22. ]_ListView_ClickItem was in the old version of paul1A lib but now can't be use and was not ported in UDF. Maybe if you are strong in programming you can port the function from the lib to an UDF? For my own i try but i fail to port.
  23. I ind to tra,sform a capture in 16 colors greyscale but it seems that someone is not working #include <GDIPLUS.au3> #include <ScreenCapture.au3> _GDIPlus_Startup() ; Get JPEG encoder CLSID $sCLSID = _GDIPlus_EncodersGetCLSID ("JPEG") $hBitmap = _ScreenCapture_Capture ("") $hImage = _GDIPlus_BitmapCreateFromHBITMAP ($hBitmap) $tData = DllStructCreate("int Data") DllStructSetData($tData, "Data",$GDIP_PXF16GRAYSCALE ) $tParams = _GDIPlus_ParamInit (1) _GDIPlus_ParamAdd ($tParams, $GDIP_EPGCOLORDEPTH , 1, $GDIP_EPTLONG, DllStructGetPtr($tData, "Data")) ; Save bitmap to file _GDIPlus_ImageSaveToFileEx ($hImage, @desktopdir& "\GDIPlus_Image2.jpg", $sCLSID,DllStructGetPtr($tParams)) ; Clean up resources ; _GDIPlus_ImageDispose ($hClone) _GDIPlus_ImageDispose ($hImage) _WinAPI_DeleteObject ($hBitmap) ; Shut down GDI+ library _GDIPlus_ShutDown () What is wrong
  24. It dosen't work with _GuiCtrlListView_SetItemSelected() , only the item is selected not like in library from Paul1A May be ithis function has to be supported in udf but actually not .
  25. Have you an example on how to reduce the number of color and how to crop an image ? Thanks
×
×
  • Create New...