Thanks Marcus, and as always thanks for the speedy reply.
/Ken
Search found 22 matches
- Wed Mar 24, 2010 9:56 pm
- Forum: Technical / Scripting
- Topic: Time comparison doesn't work for AM/PM
- Replies: 2
- Views: 3553
- Wed Mar 24, 2010 5:52 am
- Forum: Technical / Scripting
- Topic: Time comparison doesn't work for AM/PM
- Replies: 2
- Views: 3553
Time comparison doesn't work for AM/PM
Following sample works fine on my PC (24 hour format of course), but when attempted on a 12 hour AM/PM PC, the comparison doesn't work. Is there any other way of achieving this? 24 hour GetTime>TimeNow Let>EarlyTime=09:30:00 Let>LateTime=18:00:00 If>{(%TimeNow% > %EarlyTime%) AND (%TimeNow% < %LateT...
- Wed Jan 28, 2009 12:32 am
- Forum: Technical / Scripting
- Topic: script to turn on/shut down computer
- Replies: 4
- Views: 12119
Not familiar with that BIOS or it's features. You may need to explore Hibernate or Suspend as alternatives, if your BIOS doesn't support Wake on Alarm, or perhaps try Wak On LAN. A bit to get you started: http://en.wikipedia.org/wiki/Hibernate_(OS_feature) http://en.wikipedia.org/wiki/Wake-on-LAN ht...
- Tue Jan 27, 2009 3:17 am
- Forum: Technical / Scripting
- Topic: script to turn on/shut down computer
- Replies: 4
- Views: 12119
Hmm many ways to do this, most can use built in PC (BIOS) and Windows Scheduling without having to write a macro. Really depends on what you want to trigger the start up/shutdown. If it's time based. example Startup at 07:00 everyday 7days, and shutdown at 18:00 everyday, you could do following: Sta...
- Thu Jan 15, 2009 1:35 am
- Forum: Technical / Scripting
- Topic: Outlook Execute Macro
- Replies: 7
- Views: 9987
- Tue Jan 13, 2009 11:20 pm
- Forum: Technical / Scripting
- Topic: doesn't run at window open??
- Replies: 4
- Views: 5598
WindowsXP sp2
Macro Scheduler 11.1
I can confirm this as well, though easily fixed
Cheers
Ken
--Still learning more than contributing--
Macro Scheduler 11.1
I can confirm this as well, though easily fixed
Code: Select all
RunProgram>calc.exe
WaitWindowOpen>Calculator
WindowAction>2,Calculator
Ken
--Still learning more than contributing--
- Tue Jan 13, 2009 4:09 am
- Forum: Technical / Scripting
- Topic: Outlook Execute Macro
- Replies: 7
- Views: 9987
- Tue Dec 11, 2007 4:51 am
- Forum: Technical / Scripting
- Topic: select a specific combobox option on web form
- Replies: 8
- Views: 9942
Thanks Bob, but the webpage mentioned was just a sample, as the real one I need to automate is locked down behind a firewall. The actual webpage has a looong (200+) list of userids in a combo box all starting with D, then some numbers. (don't get me started on bad web design :evil: ) The combo box o...
- Mon Dec 10, 2007 5:55 am
- Forum: Technical / Scripting
- Topic: select a specific combobox option on web form
- Replies: 8
- Views: 9942
What does one do if it's an actual dropdown list. Such as featured in http://www.whitepages.com.au/wp/index.jsp
Choose a state.
Is there a way to pick a specific option using webrecorder?
Thanks
Choose a state.
Is there a way to pick a specific option using webrecorder?
Thanks
- Mon Oct 22, 2007 10:48 pm
- Forum: Technical / Scripting
- Topic: WebRecorder - error parsing text variable to FormFill
- Replies: 2
- Views: 4377
- Mon Oct 22, 2007 7:03 am
- Forum: Technical / Scripting
- Topic: WebRecorder - error parsing text variable to FormFill
- Replies: 2
- Views: 4377
WebRecorder - error parsing text variable to FormFill
I've got a problem parsing text to a variable for the FormFill function. Numeric values or static text work OK The error macroscheduler returns is: "first letter of variable" is not appropriate Could anyone try running these and let me know what you get? // Generated by MacroScript WebRecorder 1.73 ...
- Fri Apr 21, 2006 2:11 am
- Forum: Technical / Scripting
- Topic: Remotely execute script that logon....
- Replies: 8
- Views: 12481
- Thu Apr 20, 2006 6:03 am
- Forum: Technical / Scripting
- Topic: Remotely execute script that logon....
- Replies: 8
- Views: 12481
Remotely execute script that logon....
Hi Gurus, Another question, somewhat related to above scenario. I use WinXP "Remote Desktop Connection" on PC "Main" to control a "Robot" PC running a Macro Scheduler script (compiled .exe) This works fine before, and while I'm remoted in. When I hang up from "Main", then "Robot" PC is left in a loc...
- Tue Nov 08, 2005 2:52 am
- Forum: Technical / Scripting
- Topic: Navigating through a 'tabbed' interface
- Replies: 4
- Views: 6464
Really depends on how the application you are addressing has been written. Standard Microsoft and similar tabbed apps, can usually be navigated with CTRL+TAB If the WindowTitle changes to reflect the the current tab name, you could wrap the navigation in a GetActiveWindow> and Repeat> Untill> loop. ...
- Fri Oct 21, 2005 6:08 am
- Forum: Technical / Scripting
- Topic: Maximise IE window created in VB
- Replies: 1
- Views: 4993
Maximise IE window created in VB
Hi guru's :o How can i get VB to maximize an IE window created in VB. I have tried following with no success. Function CreateIE MaxIEObjects = MaxIEObjects + 1 ReDim preserve IE (MaxIEObjects) Set IE(MaxIEObjects) = CreateObject("InternetExplorer.Application") IE(MaxIEObjects).Visible=1 CreateIE = M...