Search found 10 matches
- Tue Nov 09, 2004 8:02 pm
- Forum: Technical / Scripting
- Topic: Take a look
- Replies: 3
- Views: 4626
- Tue Nov 09, 2004 5:41 pm
- Forum: Technical / Scripting
- Topic: Take a look
- Replies: 3
- Views: 4626
That fixed that part of it VBSTART Function VBDiff(str_Value1,str_Value2) msgbox "str_Value1 = "&str_Value1&" str_Value2 = "&str_Value2 VBDiff = DateDiff("s",str_Value1,str_Value2) End Function VBEND gosub>TimeAndDate let>time1=%DateAndTime% mdl>Time1 = %time1% DateAndTime = %DateAndTime% gosub>Time...
- Tue Nov 09, 2004 4:51 pm
- Forum: Technical / Scripting
- Topic: Take a look
- Replies: 3
- Views: 4626
Take a look
Anybody see the error in this one it is escaping me.. VBSTART Function VBDiff(str_Value1,str_Value2) VBDiff = DateDiff("s",str_Value1,str_Value2) End Function VBEND gosub>TimeAndDate let>time1=%DateAndTime% mdl>Time1 = %time1% gosub>TimeAndDate let>time2=%DateAndTime% mdl>Time2 = %time2% vbe>VBDiff(...
- Mon Nov 08, 2004 2:02 pm
- Forum: Technical / Scripting
- Topic: Internet Explorer is busy
- Replies: 8
- Views: 11090
- Thu Nov 04, 2004 4:23 pm
- Forum: Technical / Scripting
- Topic: Until> statement not working?
- Replies: 2
- Views: 4008
- Thu Nov 04, 2004 4:11 pm
- Forum: Technical / Scripting
- Topic: Internet Explorer is busy
- Replies: 8
- Views: 11090
- Thu Nov 04, 2004 4:08 pm
- Forum: Technical / Scripting
- Topic: Until> statement not working?
- Replies: 2
- Views: 4008
Until> statement not working?
Hello, I'm having a problem with the repeate/until logic. It errors out saying that Label Idx not found let>greeting[1]=Hi let>greeting[2]=Hello let>greeting[3]=Hola let>greeting[4]=Howdy Let>Idx=0 Repeat>Idx Let>Idx=Idx+1 mdl>greeting[%Idx%] Until>Idx,4 I also get the same error using the example f...
- Thu Nov 04, 2004 3:56 pm
- Forum: Technical / Scripting
- Topic: Internet Explorer is busy
- Replies: 8
- Views: 11090
Well actually this VBSTART Public oIE Sub CreateIE Set oIE = CreateObject("InternetExplorer.Application") oIE.visible = 1 End Sub Sub Navigate(URL) oIE.navigate URL End Sub Sub WaitBusy do while oIE.Busy loop End Sub Sub DestroyIE oIE.Quit Set oIE = Nothing End Sub VBEND VBRun>CreateIE VBRun>Navigat...
- Wed Nov 03, 2004 4:18 pm
- Forum: Technical / Scripting
- Topic: SQL Queries with commas
- Replies: 2
- Views: 3951
Seems as though this was a stumper... I thought I'd post my work around out here incase anybody else ever needs to do this or would like an example to work from. VBSTART Function UpDateDB(strSQL) Dim objConn Set objConn = CreateObject("ADODB.Connection") ConnectSTR = "driver=SQL Server;server=SERVER...
- Wed Nov 03, 2004 3:37 pm
- Forum: Technical / Scripting
- Topic: Internet Explorer is busy
- Replies: 8
- Views: 11090
Internet Explorer is busy
Hello I'm trying to write something to launch internet explorer and wait until the page is loaded to progress to the next step. I have seen a few examples posted using vbs that are the same way I write them in vbs but they don't seem to work in the MS realm. Working Vbs code ( this can be cut and pa...