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 Westi 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: *

  • Users: aggeliki23
  • Order by date
  1. aggeliki23

    help with fonts in help files

    Now i am looking for html help workshop, i supplied it from msdn web site. I haven't understood something. Are we use rtf documents in html help workshop as we do in help workshop of vb or it is not nessary? Any help will be appreciate. Thank you much.
  2. aggeliki23

    Crystal Reports 9 Grouping through code.

    I hane never used crytal reports. I hope help you. What kind of sort you want? If you mean sort data of a table, you can do this with a sql query. for example dim rs as adodb.recordset dim sql as string sql="select * from table order by field asc/desc" rs.cursorlocation=aduseclient set rs = new...
  3. aggeliki23

    help with fonts in help files

    dear all, i have created an application in vb6 and i created a help file for this application using Microsoft visual studio 6.0 tools -> Help Workshop. I wrote the rtf file in times new roman font and generally the document is in Greek with Greek characters. When i save and compile the project...
  4. aggeliki23

    Selection print help

    I understod both you, Clone is a good idea. What exactly is a PASS (key) in sql statement? What do you mean a PASS (key)? And how can i use it into a sql statement? Do you have any link or whatever about PASS (key) to understand this?
  5. aggeliki23

    Selection print help

    What do you mean to pass a key to the report? A parameter? And how would it get values if you don't use bound controls? I don't understand.
  6. aggeliki23

    Selection print help

    Thank you very much all. Is it possible with this way to pass the current record on a data report and print it?
  7. aggeliki23

    Selection print help

    Thank you SBerthold. What kind of sort you mean? Alphabetical for example? Do you mean to display the results in a listview control? And when the user selects the record pass it into the datareport and print it? Something like this? I don't want to print all results in any case because the...
  8. aggeliki23

    Help with Cancel using ADO Control

    Something else maybe helps you, when you add a new record the record adds after the last record of your table. So either you save this record either not, you don't want to be in the last record but in record you were before adding, except that the record you were before was the last. Well, if...
  9. aggeliki23

    Selection print help

    hello all, i relativelly new in vb6. I have a form that user types values for fields of a table, then another form displays the results if the record/s exist. I also created a data report shows these results and my purpose is to print the datareport. I didn't use data enviroment at all but ado...
  10. aggeliki23

    problem displaying orderDetails in detail sections of datareport

    hello everybody, I am new in vb6 and datareports too. I am using vb6 and i am trying to display a data report based on an ado shape sql query. My query collects fields from table orders and table orderDetails and the 2 tables relates with OrderID. My problem is that when i display the report in...
  11. aggeliki23

    Help with Cancel using ADO Control

    What exactly want to do? Having a form that the user inserts new records or a form that displays records by users criteria and you want the user edit the exist record? If you want a form inserting records and the cansel button not save changes, design a save command button and a addnew command...
  12. aggeliki23

    Error Datafield not found when display datareport

    Hello, i am trying to display a data report assigned on user's criteria. My problem is that when the search_invoiceRep appears, appears a message box too, says ERROR Datafield 'ORDO2' NOT FOUND. I had a look to forum but i didn't found something to help me. I haven't understood what causes this...
  13. aggeliki23

    runtime error 214721900 (80040e14)

    I found why the statement i refered occured me this error. The reason was that i hadn't set the provider in MSDataShape.1 in the connection string. Now it works all right. I have a question to do. Can i use ado shape command with data provider set to MSDASQL.1 ? Or i have to use it only with...
  14. aggeliki23

    runtime error 214721900 (80040e14)

    Hi all, I am getting a runtime error Invalid Sql Statement, expected 'DELETE','INSERT','PROCEDURE','SELECT' OR 'UPDATE' sql= "Select * from Orders " & _ "where OrderID like " & 'ORD02%' & _ " and ShipName like " & '%' sqlOrdDet = "Select * from OrderDetails " & _ "where OrderID='" &...
  15. aggeliki23

    how can i save a sql query from code into my database.

    This is a good idea. In the form i display the results of sql query i have a command button named PrintPreviewCmd to connect the data report with the query i have tried this: Private Sub PrintPreviewCmd_Click() Dim rsClone As ADODB.Recordset Dim cmd As New ADODB.Command 'rsord is the...
  16. aggeliki23

    how can i save a sql query from code into my database.

    Thank you again. I understood you. I have another question to do. How can i define more than one filters? For example if my sql query is like this: "select * from orders where " & _ "OrderID like '" & FuncTxt(0).Text & "%'" & _ " and " & _ "ShipName like '" & functxt(1).text & "%'" In this...
  17. aggeliki23

    how can i save a sql query from code into my database.

    thank you for replying me. My problem is that the recordset you call rsSomething is created in form code, not in dataEnviroment so i dont think i can access to this with this statement: Set rsClone = MyDataEnvironment.rsSomething.Clone So what can i do for this? What do you mean to save the sql...
  18. aggeliki23

    how can i save a sql query from code into my database.

    hello all. I have created my database with Visual Data Manager -> Microsoft Access -> Version 7.0 MDB I am using VB6. i am using a sql query in code of my application with where clauses. My query is like this: "select * from orders where OrderID " & _ "like '" & FuncTxt.Text & "%'" The...
  19. aggeliki23

    Application Backgroud screen

    just go to vb toolobox select the image control and set it to the form, select the image properties from properties window, in picture property, push the ... button and set the image you want from the filepath in you computer. it will appers in the image control you can specify its dimensions...
  20. aggeliki23

    how display a record by page in data report?

    hello everybody. I am using vb6, I created a data report with data enviroment and the what i want to do, is to display a record by page. I mean in the first page the first record, in the second page the second record etc. Does anyone know about this? Thank you very much.

Part and Inventory Search

Back
Top