Search results for query: *

  1. S

    Question How to move folders from my localsystem to n/w system

    Hi, How to move folders from my localsystem to n/w system i am using Code: Dim sourceDirName As String = "F:\Images" Dim destDirName As String = "\\adil\Test" Try If Not sourceDirName = String.Empty Then...
  2. S

    How we use Menu control

    How we use Menu control in vb.net i want to display menu options when i right click the Mouse options are 1) Create products 2)Create categories in my app.
  3. S

    How to know how many checkboxes are checked in gridview

    How to know how many checkboxes are checked in gridview
  4. S

    how i bind bindingsource control

    add, update,deete new recrds using bindingsource can u give some code examples theat i can understand well
  5. S

    how i bind bindingsource control

    datasource how i use datasource t add new record , and update delete when i bounding datasource like dtSaveXml = dsLoad.Tables(0) bind2.DataSource = dtSaveXml ' bind the datatable to BindingSource dgridviewBind.DataSource = bind2 ' i am binding boundingsource to datagrid after displying...
  6. S

    how i bind bindingsource control

    bindingsource add ,edit delete dtSaveXml = dsLoad.Tables(0)' datatable loaded from dataset bind2.DataSource = dtSaveXml 'bind2 is datasource control next how i do add new records , update , delete back to datatable
  7. S

    combobbox

    combobox hi i am binding combobx with a class Public Class DataItem Private _Text As String Private _Value As Integer Public Sub New(ByVal value As Integer, ByVal text As String) _Text = text _Value = value End Sub Public ReadOnly Property value() As String...
  8. S

    how i bind bindingsource control

    bindingsource control hi how i use binding source contrl with dataset to add, delte,update a record . if my datasourse is xml file bind2.DataSource =dataset i am binding my datasource bind2 with a dataset . and binding to form controls(textboxes) like Me.txtDelaytime.DataBindings.Clear()...
  9. S

    datagridview

    Hi thanks for information
  10. S

    datagridview

    i displaying some records i datagridview using dataset how to check if a cell value or record i mean row in datagrid changed or not
  11. S

    combobbox

    i have two comboboxes i loaded comboboxes with a a xml file <domains> <domain name="Billing"> <field>clsname1</field> </domain> <domain name="classdomain"> <field>clsname2</field> </domain> </domains> Dim streamRead As New System.IO.FileStream("..\..\services.xml", _...
  12. S

    how i bind bindingsource control

    Binding source control i have a form and bind2 is my bindingsource control Private Sub gridviewBind_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles gridviewBind.DoubleClick Try currentId = gridviewBind.CurrentRow.Index ' store the selected...
  13. S

    how i bind bindingsource control

    bindingsource Dim streamRead As New System.IO.FileStream("..\..\services.xml", _ System.IO.FileMode.Open) dsAppNames.ReadXml(streamRead) 'Dataset can read content from FileStream. bind1.DataSource = dsAppNames 'bndSource.DataMember =...
  14. S

    how i bind bindingsource control

    hi i am giving bindingsource control like this bind1.DataSource = dsAppNames ' dataset name this dataset was made using a xml file and i want to bind this bind1 bindingsource control to my form contrl like textboxes
  15. S

    What are the Com ,Comcomponents

    Hi, i am new in programming languages what are the com and components where we use this ,
  16. S

    how to retreive only directory path from openfiledialog control

    how i display selcted folder path using folderborwser contrl THnaks but how i display selcted folder path using folderborwser contrl i want the path in textbox
  17. S

    how to retreive only directory path from openfiledialog control

    Hi i only retreive only directory path of any file in vb.net what control i can use, will i use openfiledialog
Back
Top