Search results for query: *

  1. K

    Saving Controls' setting/status

    What is the best way of saving the setting of the controls in a form to a file? or How to do it? Example: State of checkbox. state/value of TrackBar .etc
  2. K

    Passing Value to form exe

    thankzz for the help, it's working perfectly now
  3. K

    Passing Value to form exe

    ic...but wat will the whole command line be like? 1) C:\MyForm.exe "key" "dbpath" 2) C:\MyForm.exe \key \dbpath or 3) C:\MyForm.exe "key","dbpath"
  4. K

    Passing Value to form exe

    but where should i put the code?
  5. K

    Passing Value to form exe

    I need to pass a string value into an window form app where the string will be used to validate wheather the form should or should not be shown/loaded base on a hardcode ID. Any kind soul can teach me?
  6. K

    Placement of data in ListView (urgent)

    open.ShowDialog() Dim myObjectsFromFile As New CPersonalList myObjectsFromFile.LoadPersonalObjects(open.FileName) Dim i As Integer For i = 0 To myObjectsFromFile.GetObjectCount - 1 lvwObjects.Items.Add(myObjectsFromFile.getObject(i + 1).First)...
Back
Top