Search results for query: *

  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?

    I mean can we put the Label Text into resource file. for example. we have label text Product Id Product Name, however, some customer, would like to be Item Id, Item name, Then I have to open the form and find the label to edit IF i can put those label text in resource, I just can open...
  7. 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 ?
  8. C

    Data cannot be saved into DB

    I am using Visual Studio 2005
  9. C

    Data cannot be saved into DB

    Thx for all the reply. I think i miss something in here, I try to use "Visual Database Tools" to create [dataset, adapater, bindingsource]. I cannot access the oleDbDataAdapter from my coding and I try to use "update" function No error, but just didnt save into DB [OR] I must write the...
  10. 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