Search results for query: *

  1. K

    Question could not find installable ISAM in "MyCommand.Fill(DtSet)" line

    S U R Correct yes you are correct its Excel 8.0
  2. K

    Question could not find installable ISAM in "MyCommand.Fill(DtSet)" line

    Public Function ImportExcel2DataTable() As DataTable Dim MyConnection As System.Data.OleDb.OleDbConnection = New System.Data.OleDb.OleDbConnection Dim DtTable As New DataTable Dim strShetname As String Dim DtSet As System.Data.DataSet Dim MyCommand As...
  3. K

    DataGridView Title text

    Hi all, how to get the datagridview column header text in datagridview keydown event? Regards Kasim
  4. K

    using the string variable?

    Dear John, at last i found the solution in the below link Disable ToolStripMenuItem within MenuStrip in VS2005 : toolstripmenuitem, menustrip, disable thanks
  5. K

    using the string variable?

    Dear Jhon, I struggled again, when i work under the file menu its ok. now am moving to next menu like 'Edit'. i can use like below.. Form1.EditToolStripMenuItem.DropDownItems("Paste" ).Enabled = True but at runtime i dont know which toolstipmenuitem am working.. so what can i do for this...
  6. K

    using the string variable?

    Thanks alot john, its working fine
  7. K

    using the string variable?

    Dear John, i done what u say, but it shows "object not set to an instance of an object" my code is Dim menuname As String = "Config" Form1.FileToolStripMenuItem.DropDownItems("menuname").Enabled = True thanks
  8. K

    using the string variable?

    Reg toolstripmenu Hi, here is the procedure MDI(Form1)-->File (under the file menu) || || Config (i assigned "config" name property is menu_101 (not text property) to String variable) Quit ...... ....... Dim str as string="menu_101"...
  9. K

    using the string variable?

    hello robert, i tried as u told like "Dim menuname As String = "Menu_106" Form1.MenuStrip1.Items(menuname).Enabled = True" but it shows the error like "object reference not set to an instance of an object" what should i do for that? thanks
  10. K

    using the string variable?

    hi, i need to call mdi form toolstripmenuitem name using the string variable. for ex, mdi form is Form1. toolstripmenuitem is customer master if i do like that "Form1.customer master.Enabled=True" its working but my issue is i stored customer master in a string variable like mystring="customer...
Back
Top