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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jesal27

  1. jesal27

    Copying DataColumns from one DataTable to another

    hi, thnks for the reply.. unfortunately that wont work either, the same error will pop up the moment u say .add(somewNewColumn) if u write someNewColumn=someDataTable.Columns(0) but i figured a way out yesterday.. just in case u wanna know..heres what i did.. i made a newColumn i then...
  2. jesal27

    Copying DataColumns from one DataTable to another

    hi, can anyone tell me how to do the following e.g. code datatable dt1,dt2 dt1.columns.add(dt2.columns.item(0)) basically how do i copy a datacolumn from one datatable to another. when i use the above code..it throws an error that the column already belongs to another datatable i...
  3. jesal27

    pass records to existing ms word mailmerge document

    hi..this is pretty easy write a routine to export the data items u want with header descriptions to a regular txt file.. for e.g. MyFieldA,MyFieldB 1,2 in a file a.csv open some a.doc and make it a mail merge document.. ull choose a.csv as its source..and u can actually drop the 2 fields...
  4. jesal27

    Datagrid row/column value selection

    just get the current row/col cell instead..
  5. jesal27

    new to VB.NET but I know C#

    hi.. actually in VB.net dim and private could mean the same thing inside a class or module.. but anyhow heres a comprehensive list of declarations and assignments.. dim inside a proc means a local var dim in class/module menas the same dim inside a structure menas a private public is...
  6. jesal27

    Help needed for adding Columns to a DataGrid

    hi, i need to add a DataColumn at a specific location.. thers an addat method supposedly in asp.net..not too sure if its supported in vb.net heres my code. --myDt some dataTable --myCol some dataColumn myDt.columns.add(myCol) this always add the new column at the end. how do i get to add...
  7. jesal27

    Column.AddAt method in Vb.Net for DataGrids

    hi, i need to add a DataColumn at a specific location.. thers an addat method supposedly in asp.net..not too sure if its supported in vb.net heres my code. --myDt some dataTable --myCol some dataColumn myDt.columns.add(myCol) this always add the new column at the end. how do i get to add...

Part and Inventory Search

Back
Top