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

Search results for query: *

  1. cuterita7

    Export Excel in VCL form for .NET

    Hi I have a VCL Form Delphi for .NET in which there is a TDBGrid.I want to Export it to Excel.I have tried many Methods like Ole Automation and didn't work for Borland Developer Studio 2006,I tried the Ole Automation in Delphi 6 and it worked(I used CreateOleObject). So it seems that Delphi for...
  2. cuterita7

    access ROWID

    what do you mean by recordnum?
  3. cuterita7

    search and navigate through a table

    well I am using VCL Form delphi.net and I want to re-ask my question: I have a table that I want to show its records on a VCL form (Delphi.Net) and I have a toolbar that contains 4 buttons that I will use to navigate through the records of the table.I don't want to use the DBNavigator because i...
  4. cuterita7

    search and navigate through a table

    thanks for your reply but what if I have a toolbar with 4 buttons and I want to navigate through the table using this toolbar,in VCL forms you can not use the databinding nor the currencymanager in order to navigate through the records in a table. do you have any suggestion? thanks
  5. cuterita7

    access ROWID

    I have a tableadapter and this tableadapter fills the dataset.My code is: sqlCn := SqlConnection.Create(c_cnstr); sqlDA := SqlDataAdapter.Create(c_selectgest,sqlCn); dsPersons := DataSet.Create('Persons'); sqlDA.Fill(dsPersons); tblgestion := dsPersons.Tables['Gestion'];
  6. cuterita7

    access ROWID

    tblgestion is the name of the dataset
  7. cuterita7

    access ROWID

    Hi, How can I access DataRow.rowID? I see it in the variable window during debugging, but I'm not allowed to access it in my program. dr := tblgestion.Rows.Find(gestvalue); when debugging I see that dr has a ROWID of 5.How can I access the ROWID property? Thanks.
  8. cuterita7

    search and navigate through a table

    Hi I am newbie in Delphi so I want to ask what should I use for this: I want to make a VCL Form that asks the user(userinput) to enter the RefCode(Refcode is the primary key of the table),if the entered code is valid then the corresponding record is displayed in TEdit controls,Also in my form I...
  9. cuterita7

    Bind a form to a table

    Hi I have a form that contains 3 TEdit,each is bind to a field in a table(this table contains 3 fields and each TEdit is bound to a field).At the top of the form I have First,Previous,Next and Last buttons so that the user can navigate through the records of the table. What is the best technique...
  10. cuterita7

    Toolbar and StatusBar in VCL

    Hi I want to create a VCL form Application-Delphi for .NET and I want to include a toolbar with images at the top(like the toolbar of the internet explorer) of the form and a Status Bar at the bottom of the form But I don't know which Tool Palette should I use to create the toolbar and Status...

Part and Inventory Search

Back
Top