Hi tsuji I really appreciate your help. I've been striking out on this. If no checkboxs are checked it works fine, but if more than 1 checkbox is checked only 1 checkbox value is appended to the url.
Here's what I have:
[code]
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<script...
How can I submit the form to a different url with the checked values?
For example, if checkbox1 and checkbox2 checked
action="http://www.yahoo.com?&checkbox1.value&checkbox2.value
Not sure if this is the right forum to post this, please excuse me if not.
what I'm trying to do is append the value of a checkbox when checked to the form action url.
So for example, if checkbox1 and checkbox2 is checked then action="http://server/webfile.asp?blah&blah&ABC=123&DEF=456"...
I am a newbie using RegEx but what I want to do is delete 3 lines in a text file (ie. headers). The header always starts with the text "1PAGE" so I'm assuming this is what we want to match.
Here's what the header contains.
1PAGE 1 RPT-978 'delete this line
DATE 12/06/04 'delete this line
0PLAN...
The generic Exception only works. I want to prompt the user to download files if files are not found. What am I doing wrong?
Catch es As FileNotFoundException
MessageBox.Show("Download files off of network?", "File(s) Not Found!", MessageBoxButtons.YesNo, MessageBoxIcon.Question...
Hi, It seems simple enough but I can't figure it out. I would like to have "Please wait..." appear into a richtextbox immediately after Button1 is clicked. The code that I have displays "Please wait..." AFTER the subfunction is done.
Here's what I have so far.
Private Sub Button1_Click(ByVal...
I need help with this and thanks in advance too :)
I want to multi select files and display the file names into a textbox or RichTextBox and then pass the file paths to a separate function. The function will then do something to each of the files selected. I have the openfiledialog control to...
Thanks for taking a look... I figured it out.
Here it is:
Sub ConverToRtf()
Dim oWord As Word.ApplicationClass
'Start Word and open the document.
oWord = CreateObject("Word.Application")
oWord.Visible = False 'set to true to see Word open up.
Dim aDoc
Dim tempFilename As String...
Thanks for taking a look... I figured it out.
Here it is:
Dim oWord As Word.ApplicationClass
'Start Word and open the document.
oWord = CreateObject("Word.Application")
oWord.Visible = False 'set to true to see Word open up.
Dim aDoc
Dim tempFilename As String...
Hi here's my VBA code that I want to use in VB.NET.
I'm do not know the new syntax's in VB.NET in order for this to work. It basically converts .doc files to .rtf.
PLEASE HELP.
[code]
Dim aDoc
Dim tempFilename As String = "c:\test.txt"
'Application.ScreenUpdating = False
aDoc =...
Thanks for the tip Chip.
here's how I accomplished it.
Dim proc As New Process
' Provide the name of the application or file.
proc.StartInfo.FileName = "C:\usr\print-arg.plx"
' Specify the arguments.
Dim myVar As String = "From VB.NET to PERL. THIS IS SO COOL!"
' we can set this to text...
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.