Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: dmoonme
  • Order by date
  1. dmoonme

    Append checkbox value to url?

    Thanks trollacious. The get method seems to work but when more than 1 checkbox is checked, only 1 checkbox value is appended to the url. any ideas?
  2. dmoonme

    Append checkbox value to url?

    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...
  3. dmoonme

    Append checkbox value to url?

    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
  4. dmoonme

    Append checkbox value to url?

    Thanks for the tip tsuji! It accomplished exactly what I wanted.
  5. dmoonme

    Append checkbox value to url?

    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"...
  6. dmoonme

    Use Regular Expression to delete lines in text file?

    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...
  7. dmoonme

    Problem with using Try Catch exception - FileNotFoundException not wor

    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...
  8. dmoonme

    Write text to text box instantly on button click event?

    Thanks RiverGuy. It works perfectly now!
  9. dmoonme

    Write text to text box instantly on button click event?

    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...
  10. dmoonme

    Multi select files and pass each file to separate function?

    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...
  11. dmoonme

    Getting VBA code to work in VB.NET???

    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...
  12. dmoonme

    Getting VBA code to work in VB.NET???

    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...
  13. dmoonme

    Getting VBA code to work in VB.NET???

    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 =...
  14. dmoonme

    How can I pass arguments/variables in VB.NET to PERL?

    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...
  15. dmoonme

    Enumerating conversion of word .doc to rtf?

    Gerry, THANKS! It works like a charm.
  16. dmoonme

    Enumerating conversion of word .doc to rtf?

    Hi, I need help with converting word .docs to .rtf's. I can do one-to-one but I need to do many-to-many. Here's what I have so far: [code] Private Sub Command1_Click() Const FORMAT_RTF = 6 Const FORMAT_TEXT = 2 Const NO_PROMPT = 2 Const OPEN_FORMAT_AUTO = 0 Dim word_server As Object '...
  17. dmoonme

    How to pass variable from PERL to VB.NET?

    I need a VB.NET program to see an "exit status" from the Perl program. Basically, we need to know if the Perl programs can signal to the VB.NET program whether succeeded or failed. How can I do this?
  18. dmoonme

    How can I pass arguments/variables in VB.NET to PERL?

    How can I pass arguments/variables in VB.NET to PERL? I can start my PERL program with process.start method but I need to pass something to it.
  19. dmoonme

    Regular Expressions - how to get text after pattern match???

    Thanks for the reply. It works great! How can I get the field names to display too, ie. Employee's Name:, Address:, etc?
  20. dmoonme

    Regular Expressions - how to get text after pattern match???

    I'm learning how to make use of regex. I want to parse a text file and get the data after a pattern match is found. But here's the problems I am having: * Only the 1st word after the pattern match gets returned. * Employee's Name: and Last Time: doesn't get returned. * The beginning and end...

Part and Inventory Search

Back
Top