Search found 22 matches

by Danish_Ken
Wed Mar 24, 2010 9:56 pm
Forum: Technical / Scripting
Topic: Time comparison doesn't work for AM/PM
Replies: 2
Views: 3484

Thanks Marcus, and as always thanks for the speedy reply.
/Ken
by Danish_Ken
Wed Mar 24, 2010 5:52 am
Forum: Technical / Scripting
Topic: Time comparison doesn't work for AM/PM
Replies: 2
Views: 3484

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...
by Danish_Ken
Wed Jan 28, 2009 12:32 am
Forum: Technical / Scripting
Topic: script to turn on/shut down computer
Replies: 4
Views: 11930

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...
by Danish_Ken
Tue Jan 27, 2009 3:17 am
Forum: Technical / Scripting
Topic: script to turn on/shut down computer
Replies: 4
Views: 11930

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...
by Danish_Ken
Thu Jan 15, 2009 1:35 am
Forum: Technical / Scripting
Topic: Outlook Execute Macro
Replies: 7
Views: 9723

Thanks Aaron,

The action would be somthing like:
  • Receive Email with attachment (xls or csv)
    Save attachment to folder d:\temp
    Run MSAccess database to process attachment
I'm mostly interested in the method to extract the file attachment from OL 2003

Cheers
/Ken
by Danish_Ken
Tue Jan 13, 2009 11:20 pm
Forum: Technical / Scripting
Topic: doesn't run at window open??
Replies: 4
Views: 5496

WindowsXP sp2
Macro Scheduler 11.1

I can confirm this as well, though easily fixed

Code: Select all

RunProgram>calc.exe
WaitWindowOpen>Calculator
WindowAction>2,Calculator
Cheers
Ken
--Still learning more than contributing--
by Danish_Ken
Tue Jan 13, 2009 4:09 am
Forum: Technical / Scripting
Topic: Outlook Execute Macro
Replies: 7
Views: 9723

Hi Aaron,
Using WinXP sp2 with Outlook 2003

Had something similar in mind. Very interested in how you achieve this, if you don't mind sharing?

Thanks in advance
/Ken
by Danish_Ken
Tue Dec 11, 2007 4:51 am
Forum: Technical / Scripting
Topic: select a specific combobox option on web form
Replies: 8
Views: 9736

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...
by Danish_Ken
Mon Dec 10, 2007 5:55 am
Forum: Technical / Scripting
Topic: select a specific combobox option on web form
Replies: 8
Views: 9736

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
by Danish_Ken
Mon Oct 22, 2007 10:48 pm
Forum: Technical / Scripting
Topic: WebRecorder - error parsing text variable to FormFill
Replies: 2
Views: 4309

Thanks Marcus

What a difference a couple of " " can make.
Interesting that numeric values pass through.

Thanks again for the quick response.
/Ken
by Danish_Ken
Mon Oct 22, 2007 7:03 am
Forum: Technical / Scripting
Topic: WebRecorder - error parsing text variable to FormFill
Replies: 2
Views: 4309

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 ...
by Danish_Ken
Fri Apr 21, 2006 2:11 am
Forum: Technical / Scripting
Topic: Remotely execute script that logon....
Replies: 8
Views: 12298

Thanks Marcus,

Can AutoLogon be rolled into a compiled .EXE as well?

/Ken
by Danish_Ken
Thu Apr 20, 2006 6:03 am
Forum: Technical / Scripting
Topic: Remotely execute script that logon....
Replies: 8
Views: 12298

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...
by Danish_Ken
Tue Nov 08, 2005 2:52 am
Forum: Technical / Scripting
Topic: Navigating through a 'tabbed' interface
Replies: 4
Views: 6341

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. ...
by Danish_Ken
Fri Oct 21, 2005 6:08 am
Forum: Technical / Scripting
Topic: Maximise IE window created in VB
Replies: 1
Views: 4931

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...
Sign up to our newsletter for free automation tips, tricks & discounts