Search results for query: *

  1. i8088user

    reading from excel sheet

    youll need to write an Insert Command for the Data Adaptor... then use Table. NewRow adap.InsertCommand = New OleDb.OleDbCommand("INSERT * INTO [Sheet1$]") With DataSet.Tables(0).NewRow() 'Remember Tables/Rows/Cols Start at offset 0 .Item("Col0") = "CAT" .Item(1) = "DOG" End With Wit my...
  2. i8088user

    Accessing an HTML page from within program

    oh i forgot to mention, im sorry the RES:// thing should work fine on EXEs as well.
  3. i8088user

    Accessing an HTML page from within program

    If you want it to be a control in your window, to show it like you would an image or a button on the form use the Web Browser com control. If you want to click a button and have an IE box popup, there are several ways you can do this, you can go the managed route...
  4. i8088user

    reading from excel sheet

    The following works perfectly fine for me Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim DataSet As New DataSet Dim con As OleDb.OleDbConnection = New OleDb.OleDbConnection("provider=Microsoft.Jet.OLEDB.4.0;data...
  5. i8088user

    Accessing an HTML page from within program

    Html ok first off, where is this HTML file? is it compiled as a resource in to the DLL/EXE or is it in a seporate file? or is it online? Next do you want it to show as source? or as a render'd page?
  6. i8088user

    vb.net standard or Studio .net professional

    VS Pro versus VB.NET Std VB.net is missing some functionality between the Pro and Std versions. Such as in VB.net Std you can only create data connections/adaptors for MS-SQL/MSACCESS/TEXT(i think) databases. There is a bit more but whit what i was doing this created a large problem. I got...
  7. i8088user

    Console Application Problems

    Im using a console application because the program im working on is for automation purposes. Only problem is, i can figure out how to end the program. In a forms based program is ME/MYBASE/THIS(C#).Close in the console its none of these. Ive tried Wrapping the API call of FreeConsole from...
Back
Top