Search results for query: *

  • Users: JesseH
  • Content: Threads
  • Order by date
  1. J

    Creating Access Data Table

    We need to "create" an MS Access data table from within VB.Net without defining fields much like a "make table query" in MS Access. The reason for this is so that we can convert MS Access application to VB.Net gradually. We are seeking to create a table in VB.Net copy this table together with...
  2. J

    Updating Visual Studio 2003

    I have received the following message when trying to update visual studio .net 2003 on two systems. "Microsoft Visual Studio .net 2003 set up has encountered an error while downloading required files from the Internet. Please check your internet connecting setting and try again" Can anybody...
  3. J

    Add Select Column to Datagrid

    Version 2003 I would like to add a "Select" column programmatically to a datagrid. I am adding the columns I need already, but now I need to give the user the option of selecting any one row in the data grid. If I knew the columns that would be displayed, I could use the datagrid control and...
  4. J

    Printing Reports ?

    I am trying to print reports from VB.net Developers Edition, can you please point me to some resources that I can use to accomplish this? Thanks
  5. J

    Sequential Queries

    Supposed you needed to run a series of queries on several files. Supposed there were 4 files external to VB.net. The first file would be "selected" using a where clause, say order date greater than 1/1/2000. The second file would be selected for customer where state = "TX". I would like to...
  6. J

    Calling Forms

    I have a MDI form. It calls another form. This works fine. I am trying to call another form from the second form. That does not work. Idea: MDI form has Major Selections - Inventory, Accounting, Payroll. Second form has Inventory selections - Inventory Master File Inquiry, Inventory class...
  7. J

    List of Events Available in VB.Net

    I keep running into events that I did not know are available in VB.Net. Is there a list of the events that are availible? Thanks in Advance for you help,
  8. J

    SwitchBoard Menu for VB.Net

    I am looking for a switchboard menu to use in VB.net. Can anyone provide an good example? Thanks
  9. J

    VB Net IBM AS400 Connection

    I need to read data from an AS400 (several tables), perform query selections (inner joints, outjoints, etc) and process the results (as a table) in VB.net. I have been working on this issue for over six months. I am willing to pay for help. If you can do this, please contact me at...
  10. J

    Import Access Table into Data Set Using XML

    I have exported a table definition(schema) from MS Access. I would like to import it into a VB.Net Dataset. I have tried just copying that schema but I get errors. Is there a "import" schema function available or a procedure that I can use? Thanks
  11. J

    Multiple Files in Data Adapter

    How do I assigned multiple independent files in a data adapter SQL Statement. "Select * from BPCSFV60.APHL01" Works. I need two additional files. I tried "Select * from BPCSFV60.APHL01 Select * From BPCSFV60.GXRL01 Select * from BPCSFV60.AMHL01" also tried putting semicolon between them. I need...
  12. J

    Null Reference Exception

    I am getting the error below on line "Dataset11.Clear()". I have no clue on how to fix it. Anybody kind enough to respond please remember that you are talking to a newbie.:eek: Thanks in Advance. "An unhandled exception of type 'System.NullReferenceException' occurred in EIMReconStart.exe...
  13. J

    Using MS Access to Generate SQL

    I am trying to generate the SQL in Access using SQL View and copying it into VB.net. Has someone out there tried this? I get errors when I do this. Can anybody give my any hints on how to accomplish this? Thanks for the help
  14. J

    Create Stored Procedure

    How do you create a stored procedure for Windows Forms? We use ODBC to AS400, we have over 1000 files so I was thinking of creating a stored procedure every time I access a new file. Eventually, I would have most of the frequently used files in a stored procedure. Is this a good way to do...
  15. J

    Creating Tables in VB.Net

    I apologize for the question, but how do you create tables in VB.net?
  16. J

    Data Adapter Changes Directories

    We have the same file name in different directories. When I configured the data adapters I selected one directory and it configures OK. When the program failed with no data, I went back to check it and the directory had changed. I deleted all adapters and did it again to make sure that I had not...
  17. J

    Cannot Create a Child list for Field

    I can not find the cause of this error. Here is the code" ODBCITHL15.SelectCommand.CommandText = "Select * from BPCSFV60.ITHL15" _ & " WHERE TPROD = '" & Me.txtPart.Text & "'" ODBCITHL15.Fill(Ds1, "ITHL15") If Ds1.Tables("ITHL15").Rows.Count = 0 Then ErrorProvider1.SetError(txtPart, "No History...
  18. J

    Data Adapters - Conceptual Question

    I had a customer master file and customer invoice file. The mission was to display the customer name, address, etc and the open invoices using a data grid. I was able to do it with no problem, but I had to set up two data adapters - one for the customer master and one for the invoice detail. Is...
  19. J

    Get Fields from Data Set

    First, let me apologize for the level of the question. I have tried desperately to solve it on my own without success. I am teaching myself VBDotNet. The problem is accessing the fields in the ODBC file. The name of the field I am trying to access is IDESC the file is IIML01. I believe that the...
  20. J

    Reference Books

    I am trying to learn VB Net. Can anybody recommend which reference books to buy or which books not to buy. Thanks in advance for your help.
Back
Top