Jump to content

Gabriel12345

Members
  • Posts

    7
  • Joined

  • Last visited

Gabriel12345's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Is there a way to get this working when compiled as CUI? It works great when compiled as GUI, but as CUI "cin" won't block, and instead seems to be seeing a constant stream of carriage returns. Thanks!
  2. I prefer to make the request directly using Inet.au3. Here is a set of scripts heavily based on the work of other forum contributors and mangled by yours truly. I only take credit for the mangling. This will give you the raw request data instead of a file download. ; untested usage example #include "HTTP.au3" Local $aResponse[3] $aResponse = HTTP_Request('http://google.com', "", "", "", "", "", "") msgbox(0,"",$aResponse[0]) msgbox(0,"",$aResponse[1]) msgbox(0,"",$aResponse[2]) HTTP.au3
  3. This is exactly what I needed. Your example works perfectly. Thanks Water!
  4. Hi Water, I just want to search the GAL. I don't need to search any of the other lists. So for example if I have the name "John Smith", I want to be able to search the GAL for "John Smith" and then collect all of the details associated with John (email_address, Company, office etc.. To do this I am assuming I would use _OL_ItemFind and then _OL_ItemGet, however I have no idea how to point the find function at the GAL. Thanks
  5. Hi I am having trouble figuring out how to search the global address list for a contact and then collect the contact's details. I have found the examples using the contacts folder, however I am not able to modify it to work with the global address list. If anyone could point me in the right direction or provide an example that would be great! I am using outlook 2007 on windows 7. Thanks!
  6. I would suspect that video drivers are not rendering the image the same way on both PC's. Diffrent video drivers or quality/performance driver render settings.
  7. Hrm I havent tried it myself, but I suspect somthing like this should work, you will need to find your own color ranges: if pixelgetcolor( 3, 1004 ) >= dec(000000) and pixelgetcolor( 3, 1004 ) <= dec(??????) then and replace ?????? with the color code for violet.
×
×
  • Create New...