Search:

Type: Posts; User: ski6ski

Page 1 of 6 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    6
    Views
    1,829

    Make sure you set the Release on "Rebuild All" or...

    Make sure you set the Release on "Rebuild All" or "Batch Build". I don't have MSVC6 available at this minute, but it is in one of those 2.
  2. Sorry I was using AppWizard. If you want to do...

    Sorry I was using AppWizard. If you want to do it the hard way (code everything) then you will have to do it the way that Adrian or novacain suggested.
  3. Poll: Hard to say. What about C#? What about VB for...

    Hard to say. What about C#? What about VB for data basses? What about ........

    Guess I will vote I Can't Guess
  4. Thread: COM add-ins

    by ski6ski
    Replies
    0
    Views
    770

    COM add-ins

    From help on Microsoft Outlook.

    About COM add-ins
    COM add-ins are executable files (.exe), or Dynamic Link Library files (.dll) that add extra functionality to Microsoft Outlook.

    Now, anyone...
  5. Well first I would do this on a dialog. Have a...

    Well first I would do this on a dialog. Have a static text called Name: followed by a edit control with a member variable called m_Name. Then on the next line have another static text called First...
  6. Replies
    5
    Views
    14,222

    What about XP Pro, Outlook (from office 2000)? ...

    What about XP Pro, Outlook (from office 2000)? Is the Application Data a hidden folder? I don't remember if i have hidden folders visible or not...
  7. Replies
    1
    Views
    951

    I have only used a few system() commands. Here...

    I have only used a few system() commands. Here is how the system() command should be formatted. You can replace myprog.exe with del or copy I assume. I have only used myprog.exe and cls.
  8. Replies
    8
    Views
    1,101

    Jerman oh my I can not believe I messed that up! ...

    Jerman oh my I can not believe I messed that up! I must have been tired! I usualy work 10.5 hours a night(8:15pm - 6:45am) and then sit at my computer for another hour before I go to bed. My bad. ...
  9. Replies
    3
    Views
    1,517

    With the code provided in your post, you can do...

    With the code provided in your post, you can do what you have done without the fstream. Here let me revise it for you.
    #include <iostream.h>
    #include <stdio.h>

    /*void*/ int main() //do not...
  10. Replies
    8
    Views
    1,101

    Ok Adrian, What does "Med venlig hilsen" mean? I...

    Ok Adrian, What does "Med venlig hilsen" mean? I asume it is Jerman??
  11. Replies
    2
    Views
    1,924

    Go here...

    Go here. I found: Results 1 - 10 of about 219,000. Maybe you could look there. Atlest that is a place to start.
  12. Replies
    1
    Views
    1,227

    Well the spaces are caused by the y variable. y...

    Well the spaces are caused by the y variable. y is always empty therefore always a space. Take out the y and the spaces should be gone.

    As for the double e, I think it has to do with this:
    cout...
  13. Replies
    8
    Views
    1,101

    You could try to store the characters into an...

    You could try to store the characters into an array. That would be the way I would do it.
  14. Replies
    11
    Views
    3,219

    My brother Josephus wrote a program once.

    My brother Josephus wrote a program once.
  15. Thread: Dialog Box

    by ski6ski
    Replies
    1
    Views
    914

    Look up Comon Dialogs in your help, or at MSDN,...

    Look up Comon Dialogs in your help, or at MSDN, or at www.google.com or you might even try the search function at cprogramming.com
  16. Thread: file

    by ski6ski
    Replies
    2
    Views
    861

    Encription is simple, or you can use a multiple...

    Encription is simple, or you can use a multiple matrix to make 128bit encription. (I think that is how it is done) I know useing a matrix is realy good to encript a message, because we did that in...
  17. Replies
    46
    Views
    9,380

    Poll: This was to ensure survival. Back in those days...

    This was to ensure survival. Back in those days small pox, polio and other diseases would kill your children or disfigure them. This was just one way to make your famly name go on.... Atlest mine...
  18. Thread: Ginger

    by ski6ski
    Replies
    13
    Views
    2,882

    I saw it and thought it was kind of useless...

    I saw it and thought it was kind of useless technology. Who in their right mind would buy one of these? As a parent, where do I put my kids??? Has anyone thought of that?
  19. Thread: MasterMind

    by ski6ski
    Replies
    0
    Views
    2,541

    MasterMind

    I am trying to calculate the various combinations that you could have. Matched, Not-Matched, Not-In. I had the function:
    //Local variables
    int w = 0;
    char x[4]; //szMatch is users choice...
  20. Since you are new to CProgramming.com, may I...

    Since you are new to CProgramming.com, may I suggest some things for you? First try to do it on your own, some people get very agrivated with the type of question you asked. Second post some code...
  21. Replies
    3
    Views
    1,136

    Ok that is a different question than what you had...

    Ok that is a different question than what you had posted before.
    To check if a number has a decimal part.......man am I tired...
    I think you will use the '%' symbol. I will get back with you on...
  22. For decimals always use float float number;...

    For decimals always use float

    float number;
    number=21.1234;
    cout<<number;
  23. Replies
    8
    Views
    1,290

    Run time error: fullTime.obj : error LNK2005:...

    Run time error:
    fullTime.obj : error LNK2005: "time: __thiscall me::me(tired)" (??me@@QUITE@ZZZZZ) already defined in sleep.obj
  24. Thread: Missing Output

    by ski6ski
    Replies
    7
    Views
    1,504

    Sometimes people who log in as " Unregistered" or...

    Sometimes people who log in as " Unregistered" or "Guest" do not take the time to look in the FAQ, so instead of ranting on using the FAQ, I just put it there for you. Not saying anything bad about...
  25. Thread: Missing Output

    by ski6ski
    Replies
    7
    Views
    1,504

    I think one way to do CLS is: SYSTEM("cls");You...

    I think one way to do CLS is:
    SYSTEM("cls");You have to include stdlib.h I think....
Results 1 to 25 of 133
Page 1 of 6 1 2 3 4