Thanks for that can you advise,
What API does Macro Scheduler use to interface with the IBM Personal Communication mainframe emulator?
Does Macro Scheduler use the Ehllapi API Interface that comes with IBM Personal Communications? If so, how?
Search found 13 matches
- Wed Jan 17, 2007 3:03 am
- Forum: Technical / Scripting
- Topic: error with EHLAPI32.dll
- Replies: 3
- Views: 6813
- Tue Jan 16, 2007 4:29 am
- Forum: Technical / Scripting
- Topic: error with EHLAPI32.dll
- Replies: 3
- Views: 6813
error with EHLAPI32.dll
Can anyone advise if Macro Scheduler uses or overwrites the EHLAPI32 file? I have an issue where our Java based customer profiling system generates the below error whenever it tries to transfer to a mainframe session. EHLAPI32 is part of IBM Personal Communications. GioBaseException: External sessio...
- Wed Aug 30, 2006 12:09 am
- Forum: General Discussion
- Topic: Tell us how Macro Scheduler helps you, what you use it for.
- Replies: 48
- Views: 367411
Success Story
I have been developing scripts for our Banking and Insurance company for approx 3 years. We currently have 77 scripts with approx 20 000 lines of code, running on 104 machines and used 11502 times last week by our 100+ consultants. The scripts are used in our Insurance Call Centre for lodgement of n...
- Wed Jun 21, 2006 12:43 am
- Forum: Technical / Scripting
- Topic: inactive part of a dialog
- Replies: 3
- Views: 6192
Objects in the window API
I am using your libfunc code to enable and disable certain text boxs in my dialogs. But I am unable to do the same with radiogroups. Can someone advise the correct way to identify a radio group or radio button using LibFunc>user32,FindWindowA,dlgHwnd,TForm,Test Dialog LibFunc>user32,FindWindowExA,ed...
- Sun Jun 12, 2005 12:52 am
- Forum: Technical / Scripting
- Topic: Creating EXE Files
- Replies: 2
- Views: 6228
If your macro is calling other macros, they will also need to be compiled and your script modified to use Run Program>CompiledName vs. the Macro> command. Actually Bob have you tested this, I have a compiled main script on one system I use that calls the .scp files. This makes it easier for me to m...
- Sun Jun 12, 2005 12:45 am
- Forum: Technical / Scripting
- Topic: Error calling macros from macros
- Replies: 5
- Views: 10012
- Sun Jun 12, 2005 12:44 am
- Forum: Technical / Scripting
- Topic: Error calling macros from macros
- Replies: 5
- Views: 10012
- Mon May 23, 2005 5:54 am
- Forum: Technical / Scripting
- Topic: Access Violation Error - ListBox Related
- Replies: 0
- Views: 4109
Access Violation Error - ListBox Related
Fixed with the latest release 7.3.11.4 *****Thankyou Support***** I am recieving the following error when ever i add a listbox to any dialog. "Access Violation at address 0b7eca4 Write address 0be20042" Of course the mem address's change each time. If I remove any listbox's the dialog works again. I...
- Thu May 12, 2005 9:38 am
- Forum: Technical / Scripting
- Topic: Focus and not use Tabs?
- Replies: 6
- Views: 10069
Hi Shel Here is the code that will place "5050" into the first Agent Id Field. vbstart Sub WebFormFill(LookFor,IDValue) Dim IE Dim FormNR Dim ItemNE Dim TheForm Set IE = CreateObject("InternetExplorer.Application") IE.visible = 1 IE.navigate "http://www.airportvalet.com/reservation4.htm" do while IE...
- Tue Apr 26, 2005 12:21 pm
- Forum: Technical / Scripting
- Topic: Retrieving Elements From a web Form
- Replies: 4
- Views: 7624
- Tue Apr 26, 2005 12:13 pm
- Forum: Technical / Scripting
- Topic: Focus and not use Tabs?
- Replies: 6
- Views: 10069
Can you have the Agent ID passed to your Sub OpenPage as a Variable then have VB assign Agent ID to the form element if you dont now the element name or number use MsgBox's to diplay the elements as you loop through them. Here is a rough example (look at Supports post called "Automate Web forms with...
- Tue Apr 26, 2005 11:34 am
- Forum: Technical / Scripting
- Topic: Retrieving Elements From a web Form
- Replies: 4
- Views: 7624
- Sun Apr 24, 2005 3:22 am
- Forum: Technical / Scripting
- Topic: Retrieving Elements From a web Form
- Replies: 4
- Views: 7624
Retrieving Elements From a web Form
I have been using a modified version of the code found under "Automate Web forms with IE" posted on the 10th of December My question is How can I use the same process without using Set IE = CreateObject("InternetExplorer.Application") as Internet Explorer is already running and the correct web page ...