Jump to content

mary

Active Members
  • Posts

    166
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

mary's Achievements

Prodigy

Prodigy (4/7)

0

Reputation

  1. I'm using the great IE UDF but i'm not sure if _IEAttach is the better solution to loop until a substring exists in html. so i'm asking if the is better idea that my loop? Here is my code #include <IE.au3> While 1 Sleep(1000) if StringInStr(WinGetTitle("[ACTIVE]"),"sport") Then $oIE = _IEAttach("<span class="titre_ref2">", "html") If @error = $_IEStatus_NoMatch Then ExitLoop myfunction($oIE) EndIf WEnd Thanks
  2. just to get the mail_address and associate it with the local IP (I have a LAN with 153 PC). im my server, i will make a csv file like this: mail;IP
  3. COM Error Encountered in lolo.au3 OutlookEx UDF version = 0.9.0 @AutoItVersion = 3.3.6.1 @AutoItX64 = 0 @Compiled = 0 @OSArch = X86 @OSVersion = WIN_XP Scriptline = 18 NumberHex = 80020006 Number = -2147352570 WinDescription = Nom inconnu. Description = Source = HelpFile = HelpContext = LastDllError = 0
  4. Thanks, i get the username but i have error Global $sCurrentUser = $oOutlook.GetNameSpace("MAPI").CurrentUser.AddressEntry.GetExchangeUser.PrimarySmtpAddress
  5. yes but did not find function to get a property like "mail_adress" of the current configured account
  6. Hi! I have outlook 2003 and a ready configured exchange profile. My question: How to get the mailadresse of the current configured profile ? the is an outlook UDF but there is nothing about (account info). maybe it is more simple with registry but what key store the mailadress of the current profile ? Thanks a lot
  7. Juste need help about API to retrieve the content of the DNS cache. The API is DnsGetCacheDataTable from DNSAPI.dll I found an exemple here but i'm unable do make a call in order to get result. Thanks a lot PS: i know that there is an other way ( IPCONFIG /DISPLAYDNS command). My perpose is to do it without cmd
  8. Thanks for help ! I need to check new arrived mail and if mail match same criteria (msg that subject contain a substring) , it read it without deleting it from server
  9. Thanks ! in your OutlookEx wiki it talk about sending mail, but nothing about how to check mail (get msg, read object...etc)...maybe is the a example ?
  10. yes i have outlook 2003. you mean that is not possible to check mail without outlook client installed ?
  11. Hi ! is the a way to check mail from Microsoft Exchange Server. Is it just a POP protocole ? thanks
  12. hi ! I dont know if is it bug or code mistake. my goal is to use GUICtrlCreatePic to load a jpg in all area of my main GUI (Form1) and place a button to be clickable. All is ok but my button seams to be not clickable. Here is my code : #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 471, 382, 192, 146, $WS_POPUP) $Pic1 = GUICtrlCreatePic("d:\image.jpg", 8, 8, 441, 365) $Button1 = GUICtrlCreateButton("Button1", 352, 336, 81, 25);, BitOR($BS_CENTER,$WS_BORDER,$WS_CLIPSIBLINGS)) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 msgbox(1,1,"ok") EndSwitch WEnd thanks for any help
×
×
  • Create New...