Jump to content

jbc1

Active Members
  • Posts

    55
  • Joined

  • Last visited

Profile Information

  • Location
    Behind You

jbc1's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. Yes I understood it quite well thank you. I find these forums get more immature each time I come.
  2. Fantastic news
  3. I looked at the DLL using trancexx resource viewer and also PE Explorer, it looks like this under 'Exported Functions' in both applications: _OpenChannel@0 How would I call this correctly?
  4. I have the actual C++ code, the function does exist. So my AutoIT code is correct?
  5. Hi, I have a problem when using DllCall. It keeps giving me the error, 'Function not found in Dll'. Here is the signiture of the function I am trying to call: PVOID EXPORT WINAPI OpenChannel(void) Here is my AutoIT code: $result = DllCall("caccount.dll", "ptr", "OpenChannel") If @error Then If @error = 1 Then MsgBox(1, "DllCall Error - 1", "Unable to use the DLL file") Return EndIf If @error = 2 Then MsgBox(1, "DllCall Error - 2", "Unknown return type") Return EndIf If @error = 3 Then MsgBox(1, "DllCall Error - 3", "Function not found in the DLL file") Return EndIf Else MsgBox(0, "Num Chars Returned", $result[0]) ; number of chars returned EndIf Can anybody give me some advice on this? Thanks
  6. Hi, I need to call a function from a DLL which has a return type 'HANDLE', is it possible to use DllCall to do this? The signiture of the function I am trying to call is: HANDLE EXPORT WINAPI Open(void) Is it possible to call this from AutoITv3? Thanks
  7. Hi Dale, Thanks for your response. Sorry if my post was not clear. The HTML code I want to monitor is this on the first page: <DIV id=status style="DISPLAY: none"> and this on the second: <DIV id=status style="DISPLAY: block"> So is there any way to monitor when the 'style' attribute changes? Thanks.
  8. A perfect job for http://lmgtfy.com/
  9. Hi, I have a HTML page which is like a 'loading' bar. I wan't to know when this page moves to the next page in a sequence, but the only differance between the 'loading' page and the one after it, is one line of code: <DIV id=status style="DISPLAY: none"> -> "Loading page" <DIV id=status style="DISPLAY: block"> -> "Next page" The code for each page is contained in an "Internet Explorer_Server" Object. I already know how to get the HTML code from this Object, but is there a way of monitoring for the above change? Is this possible ? Thanks.
  10. Granted - but this .h file contains code.
  11. #RequireAdmin and IsAdmin() will not help, as the application I am working with has a custom security sub system, which prevents other applications from doing anything with it, unless it has first invoked it's 'trust' API. This can oly be achieved by calling certain functions from the .h file, unfortunetly, these are not in a DLL, so it looks like I'm screwed >_< Thanks for your respone.
  12. Hi, I have a number of functions I need to call before I call AutoIT's Run() method. This is to ensure I am running in trusted mode against my application. But, my problem is these functions reside in a C++ .h file. Is it possible to call these functions from AutoITv3? I guess not, but I live in hope >_< Thanks.
  13. Unfortuntely when I try to adapt this to the application I need to get the source of, I get the error message: 'The requested action with this Object has failed' $typUUID = _WinAPI_GUIDFromString('{626FC520-A41E-11cf-A731-00A0C9082637}') Is the above libe specifc to the application I am testing?
  14. It's easy when you know how I suppose >_< I think this may be different to what I am looking for. To re-iterate, I need to get the text behind an "Internet Explore_Server" Object. My code worked before, but now it doesn't, I was just wondering if the section I mentioned in my first post from '_ObjGetFromHWND' has something specific to do with the window.
  15. This made no differance, and I must say I actually lost faith in the search on this forum a while back!! Thanks for your response!
×
×
  • Create New...