CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Leite333

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    24,217

    Re: Problem with query and parameters

    Oh ok how i can post pictures to show you exactly. My field in database (id) is integer, my parameter is integer too but when i run it the user cant put a value there is no box
  2. Replies
    5
    Views
    24,217

    Re: Problem with query and parameters

    goodmorning.
    Yes i got this but how i will write the syntax with numberic. I mean the styntax with query. Also my crystal reports is version 11
  3. Replies
    5
    Views
    24,217

    Problem with query and parameters

    Goodmorning
    I want to ask something. I want to create a crystal report witch will run with a database in sql express 2005.
    so i create to parameter fields for the user to put values, like this:
    ...
  4. Replies
    1
    Views
    7,487

    Simple Calculator

    Goodmorning
    I want to ask how i can make a simple calculator in C++Builder
  5. Replies
    2
    Views
    9,523

    Re: Access field problem with C++Builder Code

    The number as i say before is:

    18-03-0000756-000-00
    or
    18-03-0000999-000-00

    So because is a number with - i create a field on access that is text with length 255. Now my problem is that when...
  6. Replies
    2
    Views
    9,523

    Access field problem with C++Builder Code

    Hi
    I have create a simple program with database in access.But i have a problem.
    I have a field that i put numbers like that 18-03-0000969-000-00. So when the user try to insert a number like that...
  7. Replies
    1
    Views
    5,792

    CRM Program Sales

    Hi
    I want to create crm program for sales and watch my customer. Did anyone make something in C++ so i can take some ideas;
  8. Replies
    4
    Views
    10,099

    Re: Questions Create Databases and Applications

    Ok Thank you. Do you know any good book to suggest me and any site with c++ builder code applications to make some practice;
  9. Replies
    4
    Views
    10,099

    Questions Create Databases and Applications

    Hi
    I am working C++ Builder X2 and i want to ask your opinion wich is the best way to create simple applications

    For example is better to use Access or Sql Server and also wich is the best...
  10. Replies
    1
    Views
    17,934

    Create Groups from database-Crystal Report

    Goodmorning
    I want little help in a crystal report i try to create.

    I wrote the above query
    {Emp016.DatePar} >= {?@CXD@_From Date} AND
    {Emp016.DatePar} <= {?@CXD@_To Date} AND
    ...
  11. Replies
    1
    Views
    1,358

    Create directory with date

    Goodmorning
    I want little help


    AnsiString S=DateToStr(Date());

    char *test=S.c_str();

    CreateDirectory("c:\\Monday"+test, NULL);
  12. Replies
    1
    Views
    1,924

    Create backup database from button

    Goodmorning.
    I have an application and a database in C++ Builder 2007 and Access 2007. I want to create a button in my application that will check if the file of database today exist and will make...
  13. Replies
    1
    Views
    2,123

    StringGrid,delete last row

    Goodmorning
    I have a small problem with my application. I have an Edit1 from where i put values in StringGrid.
    I want to make a button where i will put the above code. with this button the user...
  14. Replies
    3
    Views
    2,295

    Re: StringGrid,Memo

    Hi
    you help little and thank you but still some little problems

    for this:

    int k=0;
    for (int rowint=0;rowint<StringGrid1->RowCount;rowint++)
    {
    for (int...
  15. Replies
    3
    Views
    2,295

    StringGrid,Memo

    Goodmorning
    I want some help. I have a stringgrid with some values inside.

    1 8,2
    2 8,3
    3 8,7
    4 10,1

    So my question is how i can take these fields to a memo component...any...
  16. Replies
    1
    Views
    1,849

    Update a record with ADODataset

    Goodmorning
    I am using a database in access 2007 and c++ builder 2007. I have a problem and i want some help. I have a dbgrid on my simple application and the user find a record and click on it....
  17. Replies
    0
    Views
    1,697

    Rave Report, count records

    Goodmorning.
    I am using C++ builder 2007 and Access 2007. I have made a simple report at rave reports designer.
    I have all my fields corectly but i want a new field to count every row and i dont...
  18. C++ builder 2007,Crystal Report XI, Component ?

    Hi
    I have a database on Access 2007 and i am using C++ Builder 2007. I want to know if someone help me if i have some crystal reports from crystal report XI for my databe is any way to run it from...
  19. Re: C++ builder 2007, scan in edit with barcode scanner

    if(Key == '\n' ||Key == '\r')
    MessageDlg("THANK YOU FOR USE SCANNER",mtInformation,TMsgDlgButtons()<<mbOK,0);

    else
    {
    MessageDlg("TRY SCANNER",mtInformation,TMsgDlgButtons()<<mbOK,0);...
  20. Re: C++ builder 2007, scan in edit with barcode scanner

    Goodmorning
    Here is some code i wrote. No much things. I want the user to use a scanner barcode and scan on edit. If he use scanner everything is ok. but if he use keyboard copy paste letters on...
  21. Replies
    1
    Views
    3,292

    Update a record with ADOTABLE

    Goodmorning

    I have a simpe application with 2 tables in a database in access 2007

    If i use an ADOTable and i want not to post a new record but to change one that already exist. How i move to...
  22. C++ builder 2007, scan in edit with barcode scanner

    Goodmorning

    I have a simple application with one edit inside. So the user in this edit use a barcode scanner and scan. I have the above code

    if(Key == '\n' ||Key == '\r')

    checkCustomer();...
  23. Re: c++ builder 2007, query count record from database

    Hi. Sorry i thought i was clear. On Edit14->Text there is date with function DateToStr(Date());. I have these fields on database table.

    A/A ->Automatic
    Ammount->Float
    Date->Date/Time with...
  24. c++ builder 2007, query count record from database

    Goodmorning

    I have a simple application on C++Builder2007 and access 2007. I want to make a query so when a user hits a button to count the records on a specifiec date. I wrote the above but its...
  25. Replies
    0
    Views
    556

    Code and create a new field

    Hi
    If i have a table with these fields in sql express

    Date Pay
    28/03/2012 100
    30/03/2012 300
    02/04/2012 1500

    Today lets say is...
Results 1 to 25 of 26
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured