Thanks for the proper direction. I just figured posting the snippet of code would be sufficient because this is where the "error" was occurring and posting my whole program would have been riduculous. And yes, the MainLoop is being called later on down in the code.
Turns out the positioning...
HI all,
I have a little issue with my exit button randomly executing after I execute something on my menubar. So, for example, I go to "open file", select the file, click ok and then the exit function executes. Am I missing something in my creation of the buttons? Any help would be...
The script is being run as a task. I am querying a database to get any entries that have a timestamp that matches the current time. If it matches then it grabs the source and destination paths associated with the entry. The paths are attempted to be mapped and are connected only as long as it...
I have a perl script I am using to get files moved from one area to another. Sometimes this involves two separate servers and two separate mappings. When I attempt the first mapping it works fine, but when I try the second I get this error:
"FAILED: Could not map dest directory
Multiple...
Here's my process:
1. Load page with SQL Query to get past time stamps. This is where the dynamic text fields will come into play.
dbconn = "dsn=MyDatabase;uid=webqueries;pwd="
Set objConnection = Server.CreateObject("ADODB.Connection")
objConnection.Open dbconn
SQLQuery = "select *...
Hey,
I want to have a value inserted into a text field on the page load from a javascript function. I am unfamiliar with the syntax to do that, if at all possible. Here's what I have
<input type=text size=10 disabled name=elapseddate value='AddDate(this.form);'>
I just want the...
Now I get it, thanks!
Now, I found another way to get it in a session variable:
function Generic_TimeFormat(num, strNow)
Dim strTimeNow
Dim strMonth
Dim strYear
strTimeNow = strNow
strMonth = Month(strTimeNow)
strYear = Year(strTimeNow)
if num = 1 then
Generic_TimeFormat =...
I understand, but why, then, does it work when I use a button instead of a link to get to the next page? The session is working fine for another page where the transition is soley a submit button.
I have a simple question, at least I think 8-). I have a start page consisting of all hyperlinks. I also have a couple hidden variables within form tags that I need to pass through as sessions to the next pages, but unless I have a button to pass them, they don't go through. What am I doing...
Here's my issue: I have a page that loads up with a variable number of <select multiple> tags. Each select is a different database call to load up into the select. My issue is I need the selected values to go to the next page. The problem is I don't know the names of the options until I load...
sorry, it's parsing this line where I have no problem:
GCS SERIAL #: 0111
but this line is where I have the problem:
TEST STATION NUMBER: 555 TEST TYPE: SALE
I need the first line to output:
SERIAL_NUMBER = 0111
and the second line:
TEST_STATION = 555
TEST_TYPE = SALE
and so on...
Hey guys,
I am trying to get a couple of lines of a text file and parse the lines into individual variables and output them in another formatted text file. Here's what I have so far:
...previous code...
elsif($line =~ /^TEST STATION NUMBER:/)
{
$test_set_id =~ (/^TEST STATION...
Alright, I figured it out. Since I can access the table, row, and cell fairly easy I can cast it as a textbox:
temptext = (TextBox)tblDynamic.Rows[i].Cells[j].Controls[0]
with temptext being added at the top as a textbox.
Thanks for all the help!!!
Mike
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.