Search results for query: *

  • Users: cc96ai
  • Content: Threads
  • Order by date
  1. C

    Windows Application suggestion

    Hello, I want to build a window form application which have several forms e.g. Products , Inventory, report, user manager , etc. my question is whats the best architecture to build them together - MDI (I dont want to user to resize the child window, can I disable them ?) - SDI with tab...
  2. C

    Any free/open source UI component?

    Hi I m looking a UI compoment like "Klik! EntryLib.Net" (advance user interface) anyone know have similar product for free / open source ? Thanks
  3. C

    MDI child call parent variable/object

    Can MDI child call back parent variable or any object? e.g. - frmParent -String conn = "abc.mdb"; - frmChild - String test = "demo"; - frmChildTest - how can we frmParent.conn ? - and can we call frmChild.test , too ? the issue i would like to call parent variable, It would like to...
  4. C

    MSAccess Parent/Child AutoNumber

    I have 2 tables [Orders] & [OrderDetails] [Orders] - orderid (autoNumber, pk) - ... [OrderDetails] - orderid (FK) - ... How could I retieve the orderid and insert into OrderDetials ?
  5. C

    DropDown / Dataset inset blank in top

    I would like to inset blank or "select" in the top the dropdown, cbxStoreCategory.DataSource = categoriesBindingSource2; cbxStoreCategory.DisplayMember = "CategoryCode"; //cbxStoreCategory.Items.Insert(0, "--Select--"); however I cannot do this...
  6. C

    Resource file for form's label name?

    is that possible to put all the label name into resource file? i think it relates to locale issue ?
  7. C

    Data cannot be saved into DB

    i m new in vb.net i just try to do simple insert record. I am using MSAccess for database and I follow msdn sample code ' Visual Basic Dim anyRow as DataRow = DatasetName.ExistingTable.NewRow anyRow.FirstName = "Jay" anyRow.LastName = "Stevens" ExistingTable.Rows.Add(anyRow) however the data...
Back
Top