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 bkrike 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: beginner81
  • Content: Threads
  • Order by date
  1. beginner81

    SaveState() and LoadState() function

    Can anyone tell me what's the uses for these 2 functions ?? Can giving an example of source code thanks..
  2. beginner81

    Can only preview the latest customized report..What's wrong?

    I have 2 button on form1 named "CustomizedReport" and "LoadReport" Button respectively. At first, I click at "CustomizedReport" button to customize a report(report1) and save it to C:\report1.repx. Then i click at "LoadReport" button to load and preview the report1.repx and it's work fine. After...
  3. beginner81

    Error Occured when loading the customized report after QUIT the progra

    When i customize a report(report1.repx) and save it, then click the "Load" button to load the report1.repx to preview it, it's work fine. The problem is after i quit the program and run the program again, then click at the "Load" button to locate the path for report1.repx, an error message promt...
  4. beginner81

    OpenDialog Box

    Is that anyone there know what is the code looks like to Open a Open dialog so users can locate which file they want to open. Help will be appreciated thanks.
  5. beginner81

    loading or preview a customized report

    I have a problem here regarding how the report being loaded .. Here is the case: When users customized a report(let's say report1) and save it in certain place(C:\report1.REPX, then they click at Preview button. All i want to do in the preview button function is to loaded the customized...
  6. beginner81

    Respond only after i click twice at the button(Dialog Box)

    I've created a dialogBox form with 2 button on it, "Yes", and "No". When the user click at button "Yes", message "You click Yes" will prompt out. And "you click No" message will prompt out if the users click at "No" button. Here r the source code. DialogConfirmation confirm = new...
  7. beginner81

    Q & A @ Customize End-User Report, But ....

    Question Can the End-User report designer be customized? Answer It is possible to create a custom End-User Report Designer. You should do the following: A) Create a descendant from the XRDesignForm class and customize it according to your requirements. B) Use the following code to open the...
  8. beginner81

    End user design report problem

    Hi. Im having the problem to design an end-user report . What should i do at first ?? Do i need to pre-designed one and save it as the templates, so the end-users can load the template when they want to design their own report ? IF yes, then how? for ya info, im using the Dev Express...
  9. beginner81

    Add an unit to a project ..

    I'm trying to add an unit to one project. I'd tried at Project -> Add to Project and then locate and choose the file. But still the file isn't exist in my project . Can i know is that any step i miss??
  10. beginner81

    SQL JOINT checking..

    I want to check whether a certain record is exists in database or not using the parameter CustName and Product(which is the value that pass from other form). I'd write the SQL stament as following : function TDataModule.IsExists(CustName: String; Product:String): Boolean; begin with qry do...
  11. beginner81

    Case Insensitive

    How do i ignore the case sensitive while i'm doing the verification for certain field ?? for example .. IF (custNo = EditCustNo.Text) then ..... In this case, i want the system to accept both upper and lower case of EditCustNo.Text .. what should i do then ??
  12. beginner81

    Console Application..

    I need to implement a console application to take a filename parameter to automatically upload one of the text file (which was given by the client)into the database server, this application should generate the status in a log file. During uploading that files Records, we must use the entered...
  13. beginner81

    Checking whether record is existing in database or not

    Can i know what's the code to check whether a record is exist in the database or not ?? The database server that i'm using is MsSQL .. and i had link it wif the following way : TSQLConnection -> TSQLQuery -> TClientdataset I's using TClientdataset to hold the data and update it to the database...
  14. beginner81

    On "Esc" key press

    Can anyone there help me with this problem .. i'm intended to prompt out a msg dialog after the users press the "Escape" key.. so what's the code for it?? thx in advance..
  15. beginner81

    How to do the verification

    I'm havin some problem here in doin verification, hope ya guys can help.. Ok.. i'm currently doin a barcode scanning system.. let's say if the users scan the value A156238954H5.. all i want is just only the 10 digit numbers from the result that they r scanning to be display (this field is...
  16. beginner81

    Connect to MSDE

    Hi ... I'm trying to connect MsSQL to MSDE, but i'm facing some problem here.. Can anyone over there help me to solve this problem ?? here r the msg that prompted out.. "SQL State:42000, SQL Error Code:18452. Login failed for user 'xxx'. Reason: Not Associated with a trusted SQL Server...
  17. beginner81

    Auto generate data for TField

    I'm having the text file as following: CUSTCODE CUSTNAME ADDRESS "Cust001" "John" "AAA" "Cust002" "Smith" "BBB" "Cust003" "Alan" "CCC&quot...
  18. beginner81

    System's time, date for Delphi

    I'm currently doing a project.. and the project consists of 5 form, which is fmUS, fmJapan, fmKorea, fmEngland, fmAustralia ... so now i need to post a value to the Database.. the value is depends on which form is currently shown.. for example, if the form that i'm currently using is fmUS, i'll...
  19. beginner81

    Some simple question (SQL related) ..

    CUSTOMER CustomerID CustomerName Address ----------------------------------------- Cust001 John AAA Cust002 Smith BBB Cust003 Alan CCC PRODUCT ProductID Items CustomerID --------------------------------------------...
  20. beginner81

    Shorter Code for Clear function.. Help..

    Hello forums.. i wonder is that anyway for me to using a single code to clear all the fields in a form after i click at the Clear button?? ... instead of putting the code like TEdit1.Clear; TEdit2.Clear; TEdit3.Clear.. is that anyway for me to do so?? thx ..

Part and Inventory Search

Back
Top