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

Search:

Type: Posts; User: Laurio

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    1,028

    Alternatives to PEAR DB

    As title really, what are the main alternatives and pros and cons of using them? Ive found ADOdb but cant really find any others :/
  2. Replies
    5
    Views
    894

    Re: Using a database

    Yep using MFC, so i am aware of the CRecordset and associated classes
  3. Replies
    5
    Views
    894

    Re: Using a database

    local database
  4. Replies
    5
    Views
    894

    Using a database

    Ok, so i need to create an application which can read and write from a database, so for this app the database is like a phonebook with names and numbers etc.

    What i want to know is, out of your...
  5. Replies
    1
    Views
    756

    Sending SMS - Which GSM Modem

    I need to create an app which is capable of sending sms from a PC so i have decided to use a gsm modem, but was wondering which modem you would recommend for doing this? Ideally im looking for a usb...
  6. Replies
    2
    Views
    1,217

    Re: "Create new folder" on CFileDialog

    no i want to do 2 seperate things, the edt1 and toolbar have nothing to do with each other! so when the user clicks on the toolbar button, i would like to be able to handle that action. Then if they...
  7. Replies
    2
    Views
    1,217

    [RESOLVED] "Create new folder" on CFileDialog

    I have a customised CFileDialog, to which i have derived my own class from, but i do not use a hook.
    I want to know, how can i tell if a user has pressed the "Create new folder" on the toolbar? is...
  8. Replies
    5
    Views
    2,700

    Re: SetWindowPos in CDialog

    If i set a min size rect, how do i go about repositioning the controls then? this is what i need help with!
  9. Replies
    5
    Views
    2,700

    Re: SetWindowPos in CDialog

    How will this help? i simply need to maintain a gap around all controls
  10. Replies
    5
    Views
    2,700

    SetWindowPos in CDialog

    I have a modeless CDialog and im using WM_SIZING and overriding OnSizing(UINT, LPRECT) and SetWindowPos to resize it.
    On my dialog there are about 20 buttons, which are also resized, using...
  11. Replies
    10
    Views
    1,054

    Re: Calculating a value that is stored as a string

    I understand what you are saying, and i had previously tried the atof function to convert to a double but this doesnt not give me the answer i want, it simply converts the first number in the string...
  12. Replies
    10
    Views
    1,054

    Re: Calculating a value that is stored as a string

    Not whilst your visual C++ it doesnt! access violations arise
  13. Replies
    10
    Views
    1,054

    Re: Calculating a value that is stored as a string

    Is there a function that i can use within C++ as sscanf is only valid within C?
  14. Replies
    10
    Views
    1,054

    Calculating a value that is stored as a string

    I have a class which is used for calculating mathematical expressions, but im having difficulties calculating the value, because the expression is stored as a string. I need the expression in a...
  15. Replies
    16
    Views
    14,176

    cant add a new file to the project

    I seem to be having problems with visual C++ 6.0. The problem is that i cannot add a new file to the project, everytime i try, the program just crashes and comes up with "Unhandled exception in...
  16. Replies
    3
    Views
    2,067

    Re: _CrtSetReportHook problem

    This made no difference either. Is it impossible to use these hooks if your creating a method that is a member function?
  17. Replies
    3
    Views
    2,067

    _CrtSetReportHook problem

    I have created my own memory management class which basically detects where there are memory leaks in the program. To improve this further i wanted to create my own report hook, so ive constructed...
  18. Re: What can I be doing wrong (Unresolved Externals)

    uncomment the line //using namespace std;
  19. Thread: LNK2001 error

    by Laurio
    Replies
    4
    Views
    832

    Re: LNK2001 error

    http://www.codeguru.com/cpp/i-n/internet/email/article.php/c6177/ this is the original project i was trying to add to my own dialog class project. Where the winmain method is, ive created a class...
  20. Thread: LNK2001 error

    by Laurio
    Replies
    4
    Views
    832

    Re: LNK2001 error

    i have included the header, and the cpp file with the implementation is included within the project source files so what is wrong?
  21. Thread: LNK2001 error

    by Laurio
    Replies
    4
    Views
    832

    LNK2001 error

    I have an existing simple exe project coded in MFC, and i have just added a new project to the workspace. It compiles fine when i include the header of one of the files in the newly added project,...
  22. Replies
    1
    Views
    2,369

    550 SMTP AUTH needed

    Does anyone know how to add smtp authentication to this code? it is required on my server and i dont know how to add it. Any help is greatly appreciated!!
    note: m_csServerName, from, to, message...
  23. Replies
    5
    Views
    1,033

    Re: PlaySound() problem

    using the mciSendString will work
    mciSendString("open filename.wav type waveaudio as alias mywav");
    mciSendString("play mywav wait");
  24. Replies
    0
    Views
    607

    smtp authentication needed

    I was wanting to know how to send an email from within a program without having a UI, so i found this link which was recommended in another thread similar to this. Upon using it, i found that i can...
  25. Replies
    2
    Views
    996

    Re: Playing an avi file with mciSendString

    This has not made any difference, its still behaving the same way as it was originally, any other thoughts?
Results 1 to 25 of 28
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured