Search results for query: *

  1. J

    Creating Access Data Table

    We were able to create a table by copying the colums, using RARDetail = New DataTable("RARDetail") Dim CustNo As DataColumn = New DataColumn("CustNo") Not elegant, but it works. Thanks for the help
  2. 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...
  3. 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...
  4. J

    Add Select Column to Datagrid

    Thanks. I am new to VB.net and having to learn from books and the internet. I apologize for the question but appreciate the answer.
  5. 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...
  6. 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
  7. 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...
  8. J

    Calling Forms

    Bobby, I tried removing the "new" and it failed anyway. Can you tell me in the MDI form the processing returns when the child form closes. The idea would be to store the form that I needed and when I return to the parent launch that form. Thanks
  9. J

    Calling Forms

    Thanks for the question. From the Child form (called from MDI form) the statment below does not work. I know the grand child form works because I can "debug" it. I know the Child works because I can "debug" it also. Dim wInvItemSelected As String Dim wIndex As Integer wIndex =...
  10. 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...
  11. 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,
  12. 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
  13. J

    VB Net IBM AS400 Connection

    Issue Reading files from the AS400 is not a problem. Joins using the SQL Wizard is not an issue. The issue is creating Data Sets that are a result of joins. For example, for inventory history records from xx/xx/xx to yy/yy/yy join with inventory master to add the product description. To the...
  14. 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...
  15. 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
  16. 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...
  17. J

    Using MS Access to Generate SQL

    Thanks. I am struggling to learn VB.net. I appreciate all the help I can get.
  18. J

    Null Reference Exception

    Thanks Any particular location for this line of code?
  19. J

    Null Reference Exception

    Code Used - Thanks for the help PublicClass APNotInGL Inherits System.Windows.Forms.Form #Region " Windows Form Designer generated code " PublicSubNew() MyBase.New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Add any initialization after the...
  20. 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...
Back
Top