Search found 69 matches

by sarver311
Sat Sep 04, 2010 4:33 pm
Forum: Technical / Scripting
Topic: Problem with Variable breakpoints
Replies: 6
Views: 6012

Ok, you know how in the debugger for macro scheduler there is an option called variable breakpoints? In there you set can set a value pair that tells macro scheduler to pause the script when that value has been reached. In this case when StopScript=True. I was having an issue in another script where...
by sarver311
Sat Sep 04, 2010 5:33 am
Forum: Technical / Scripting
Topic: Problem with Variable breakpoints
Replies: 6
Views: 6012

Oops, I made a last minute change to the script before making this post so I can see how you would that was the only reason it wasn't working. Sorry for the confusion! If you fix my typo and try that script the problem still exists. I know for sure it is working too because I add a message right whe...
by sarver311
Fri Sep 03, 2010 8:48 pm
Forum: Technical / Scripting
Topic: Problem with Variable breakpoints
Replies: 6
Views: 6012

Problem with Variable breakpoints

I don' t know if it's broken or this is working as intended but I noticed an issue with Variable Breakpoints not working under certain scenarios. Here are two code samples that illustrate when it works fine and when it doesn't. Working Scenario: I have a variable break set to StopScript=True The scr...
by sarver311
Tue Aug 24, 2010 4:38 pm
Forum: Technical / Scripting
Topic: Question about the Onshow Event for Dialog
Replies: 2
Views: 2758

Awesome this is exactly what I needed. Thanks for clarifying things and providing such a simple workaround.

-Josh
by sarver311
Tue Aug 24, 2010 4:00 pm
Forum: Technical / Scripting
Topic: Question about the Onshow Event for Dialog
Replies: 2
Views: 2758

Question about the Onshow Event for Dialog

I have a dialog which is modal and I wanted to make a subroutine run AFTER the dialog is created and shown. I am using the onshow event which works but not as I expected it to. The "dialogsubroutine" runs and THEN the dialog opens and I need it to run after the dialog opens. I can work around it and...
by sarver311
Wed Jun 09, 2010 9:43 pm
Forum: Technical / Scripting
Topic: GetEnvVar>Path not working on 64 bit Win 7
Replies: 24
Views: 23093

GetEnvVar>Path not working on 64 bit Win 7

I noticed that I can't seem to grab the path environment variable on 64 bit version of windows 7. To make sure I wasn't crazy I compiled the following script and ran it on a 32bit version and 64 bit version of windows 7. The 32 bit version echos the path just fine whereas the 64 bit is just blank. H...
by sarver311
Wed Jun 02, 2010 5:43 pm
Forum: Technical / Scripting
Topic: Issue with the tabs in MS Version 12
Replies: 1
Views: 2244

Issue with the tabs in MS Version 12

Hey Marcus, Lets say for example I have script1 and script2. If I go into the script editor and open script1 then open script2 in a tab, I have noticed that it won't let me save any changes I make to script2. When I go to the script2 tab, make a change and click save, it gives me an error "cannot cr...
by sarver311
Wed Jun 02, 2010 4:36 pm
Forum: Technical / Scripting
Topic: Ver 12 Dialogs
Replies: 8
Views: 9478

Hello, Here is an example that I believe is what you were asking for regarding your first question Type something in the box and click update and it will change the windows title and a label to the text in the box. Dialog>Dialog1 object Dialog1: TForm Left = 1613 Top = 231 HelpContext = 5000 BorderI...
by sarver311
Tue May 25, 2010 5:31 pm
Forum: Technical / Scripting
Topic: Setting an item in a list box
Replies: 3
Views: 3622

Hi Marcus I am having a similar issue but I discovered my problem is slightly different. When my Dialog pops up, I want to have one of my entries in the listbox preselected. I discovered that using the selectindex property does not work if I have the multiselect for the listbox set to true, if it is...
by sarver311
Fri May 21, 2010 2:30 pm
Forum: Technical / Scripting
Topic: Question about creating multiple panels in a statusbar.
Replies: 2
Views: 7294

That is exactly what I needed Marcus, Thanks!
by sarver311
Thu May 20, 2010 8:31 pm
Forum: Technical / Scripting
Topic: Question about creating multiple panels in a statusbar.
Replies: 2
Views: 7294

Question about creating multiple panels in a statusbar.

Hey everyone, I was looking for some insight into the syntax for status bar panels. The help documentations says if simplepanel property is set to false you can have multiple panels in the status bar but I'm not sure how I'd go about assigning that. I'm assuming I need to assign something to the pan...
by sarver311
Tue May 18, 2010 5:27 pm
Forum: Technical / Scripting
Topic: Getting Blank Window with Tabbed Page Control
Replies: 3
Views: 4092

Thanks Marcus!

As always, I appreciate the quick response and congrats on r12 getting released, it's great!
by sarver311
Tue May 18, 2010 4:35 pm
Forum: Technical / Scripting
Topic: Getting Blank Window with Tabbed Page Control
Replies: 3
Views: 4092

Getting Blank Window with Tabbed Page Control

I'm not sure if this is a bug or if I'm creating my dialogs incorrectly but here is what is happening. I have an example below, if I have a page control and put something in it, the objects within show up just fine. If I create a page control and add a tabbed page and put something in that, it looks...
by sarver311
Fri May 14, 2010 2:31 pm
Forum: Enhancement Suggestions
Topic: DBQuery direct to file
Replies: 12
Views: 26253

Ok I tested this out on my end and it seems to work. I should give you the output John,Smith%CRLF% DECLARE @List varchar(2000) SELECT @List = COALESCE(@List + '%CRLF%', '') + Cast(f_name As varchar(50)) + ',' + Cast(l_name as varchar(50)) FROM customers where f_name like 'j%' SELECT @List As 'List' ...
by sarver311
Thu May 13, 2010 6:26 pm
Forum: Enhancement Suggestions
Topic: DBQuery direct to file
Replies: 12
Views: 26253

Exactly, when my results are returned it is dbreply_1_1 and that is it. I did some testing and was able to configure the statement to work with more than one field. Do you have a sample of one of your queries you are running? Maybe we can get it to work after all. I don't do much with oracle but i t...
Sign up to our newsletter for free automation tips, tricks & discounts