Jump to content

Automationaddict

Members
  • Posts

    11
  • Joined

  • Last visited

Recent Profile Visitors

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

Automationaddict's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I just want to create a very very attractive form( user interface) and code it in autoit. I love autoit because of koda and its awesome form designer provisions. But i don’t know whether that much attractive form creation is even possible with koda. I am a beginner and do not have that much knowledge. Kindly guide me whether it can be done by koda itself or i can use any other form designer and can easily club it with autoit. Please guide me with koda guidebook also if possible. Thank you very very much in advance.
  2. I just want to create a very very attractive form( user interface) and code it in autoit. I love autoit because of koda and its awesome form designer provisions. But i don’t know whether that much attractive form creation is even possible with koda. I am a beginner and do not have that much knowledge. Kindly guide me whether it can be done by koda itself or i can use any other form designer and can easily club it with autoit. Please guide me. Thank you very very much in advance.
  3. The error message is simply “Could not open the file——-Error #include<OutlookEx.au3>“ Kindly help me out as I am new to this language and I love this language Thanks in advance
  4. I tried the following code but it is showing error in the header file itself and my code is not properly running. #include <OutlookEx.au3> $oOL = _OL_Open() _OL_Wrapper_SendMail($oOL, "John Doe", "", "", "Testmail", "<b>Test</b>", "", $olFormatHTML, $olImportanceHigh) _OL_Close($oOL) Can anyone please help me out with this ? I really don’t know whether #include <OutlookEx.au3> This is really a predefined header file. kindly suggest me a way to sort this out else please help me to automate sending of a defined mail without using this header file. Thanks in Advance
  5. Thanks a lot everyone (especially Danp2) for helping me with the Autoit coding. I just executed my code successfully. Thanks once again..
  6. Thanks guys for your time and help I tried a lot but it's not being successful. Suppose I am having the url as "www.xyz.com" and the class is "timerdf1", what should be the code to just click on this? Thanks again in advance.
  7. How can I be so stupid!! This code is exiting abruptly and I could not figure out what's actually goes out missing. Is there any problem with : $oIE = _IEAttach("", "instance", 1) However, I tried this code,it is running successfully in new tab but at the beginning it creates a blank tab which looks wierd. $navOpenInNewTab = 0x0800 $navOpenInBackgroundTab = 0x1000 $oIE = ObjCreate("InternetExplorer.Application") $oIE.Visible = True $oIE = __IENavigate($oIE, "www.google.com", 0, 0x800)
  8. Thanks for your reply and time for my query but I don’t know whether I am able to explain my question or not. It is user dependent as may be this happens that when the user is clicking on a particular button, then IE is not there, in that case we have to open a new window But when IE is opened maybe in his/her second, third... attempt then we need to attach a new tab to the existing window. And i am sorry but I didn’t understand this code and particularly this: Const $navOpenInNewTab = 0x0800
  9. As I am a beginner I do not know much. I am unable to understand from this reference. Can you please send me the code so that I can go through it
  10. I have designed an App using Koda wherein I have different buttons for different URLs. The problem is every url opens in different window and not in different tabs. Please suggest me the entire code to check if there in an open window in IE, then open the next url in next tab and if not then open a new window. Thanks in advance.
  11. As I am very new to this language, kindly suggest me how to click at a particular thing if we are only having it’s “class” in the source code and not the “object” or “id”? Like we have GetobjectById or GetObjectByName, do we have something for class? Please suggest me a method to access it. Thanks in advance.
×
×
  • Create New...