Jump to content
Advert

dec

Members
  • Posts

    9
  • Joined

  • Last visited

About dec

  • Birthday 07/04/1987

Profile Information

  • Location
    St.Petersburg - Russia
  • WWW
    http://vkontakte.ru/id1874
  • Interests
    I'M AN IDIOIT SOMEONE KILL ME!!!!!!!!!1111111oneoneone

Recent Profile Visitors

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

dec's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Well, thanks.. Strange, but guictrllistview_getitem() has such behavior only if compressed with Aut2Exe64. 32bit aut2exe doesn't have such problems. But I still have no idea why.
  2. Again and again I have troubles with this damn listview. Now I get empty string if _GUICtrlListView_GetItem() is called. Though _GUICtrlListView_GetItemCount() returns actual items number. Haven't tried it on XP64 but my scripts works perfectly on all x86 platforms. Where is the problem? In GuiListView.au3 or in front of the monitor?..
  3. Hooray!!! I've managed to do that!=) If someone is interested: #include <GuiListView.au3> $hCtrl = ControlGetHandle("MyApplication","","SysListView321"); $items = _GUICtrlListView_GetItemCount($hCtrl); $item = _GUICtrlListView_GetItem($hCtrl, 1, 1);
  4. Well... Actual application has damn POPI classification "Internal use only" So I can't provide it.
  5. Hi everyone; I'm back with my noob questions. I've got an application written with MFC; It has a child named "LOGS" - actually it is something looking like a listview with two columns: timestamp amd event. I need to get exactly what is shown on screen. I've tried ALL controls and classes available in the window - all of them return empty string on WinGetText // ControlGetText. While searching through this forum I've found an idea to use not a Control name, but its handle - but still can't have contents of this window. $hCtrl = ControlGetHandle("sm56","","Afx:00400000:8:00010011:00000000:01CC05CA"); $str = ControlCommand("sm56ant","",$hCtrl,"Getcurrentline");;Maybe I do something wrong?.. Also I tried something like Ctrl+A; Ctrl+C; Run notepad; Ctrl+V : Ctrl + A selects the table but its contents are not copied to clipboard:( Standart functions like ClipGet()/ClipPut() cannot be used - I don't know how to get WHAT to put into clipboard. The most similar to my problem was in this topic: http://www.autoitscript.com/forum/index.php?showtopic=15936 Hope it's not true that AutoIt cannot make it.
  6. Well, I'm just non-experienced google user.. Thanks a lot.
  7. Sorry, forum search doesn't work. Can I send something to COM port using AutoIt or I should use some external methods?
  8. Hi everyone. Sorry I couldn't find any answers in FAQ or search. I have an external "blahblahblah.js" javascript, declaring an "Obj" object with some methods. How can I call these methods from AutoIt script? eg I need to call Obj.Print() Thank you.
×
×
  • Create New...