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 strongm 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: *

  1. perltk07

    Calling a perl script

    How can I call a Perl Script from a VB.Net Program?
  2. perltk07

    Uploading file to a webserver

    Hi, I want to post a file to a different web server using ASP. I keep going through the authentication page and I want to go pass that. Can someone show me an example on how to use httpwebrequest library to post files. Thank you
  3. perltk07

    Writing to a CSV file

    I want my VB program to create a csv file and then i want to write to my csv file and have the fields written in particular columns. This is what I have so far Dim oCSV As Object Dim oBook As Object Dim oSheet As Object 'Start a new workbook in CSV. oCSV =...
  4. perltk07

    Uploading file to a webserver

    I am trying to upload a csv file to a server using VB Pro 2005. Following is my code. It does not recognize Upload and asks for chilkat.exe. Does anyone have any better suggestion on how to do this? Public Sub Upload() Dim upload As New Chilkat.Upload upload.Hostname =...
  5. perltk07

    Autopopulating from a database

    All the text boxes are populated from the combo box
  6. perltk07

    Autopopulating from a database

    Its a query that i run on a database that fills up the combo box and the text boxes: here is my code: Public Class Form1 'Loads the names of the active cycles in the combobox Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load...
  7. perltk07

    Autopopulating from a database

    So the text boxes 1, 2 and 3 are filled out on selecting an item from the combo box
  8. perltk07

    Autopopulating from a database

    Actually it is not multi coloumned it looks like the following: Combo Box: -> Item A -> Item B -> Item C If Item A is selected then TextBox1: TextBox2: TextBox3: Will be filled out with items that link to the Combo Box
  9. perltk07

    Autopopulating from a database

    I have a form in which there is one combo box and three text boxes: Combo Box: TextBox1: TextBox2: TextBox3: Once an Item is selected from the combo box, the text boxes are autopopulated with the respected fields which link to the items in the combo box. Its getting the...
  10. perltk07

    VB Form

    Hello, I want to create a simple form using visual basic express 2005. e.g: Name: Age: Adress Then when the user hits submit, i want the form to write the data entered into a csv file under appropriate columns. Can some guide me as how that is done in VB. Thanks
  11. perltk07

    VB Form

    Hello, I want to create a simple form using visual basic express 2005. e.g: Name: Age: Adress Then when the user hits submit, i want the form to write the data entered into a csv file under appropriate columns. Can some guide me as how that is done in VB. Thanks
  12. perltk07

    Perl TK Widget

    I have created a Perl TK widget which is a Form that can be filled out and submitted. Once submitted all the enteries are written to a csv file. My question is that how can i create a webpage with this widget. Right now i run the script and my widget appears. How can I go to a website to access...

Part and Inventory Search

Back
Top