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

Search:

Type: Posts; User: cypher5783

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    4,076

    pointers and strings

    Hey guys I know this is a very basic question. But i'm following along with a book. Granted the book is not for the most recent version of c++. But i'm unable to find any information on the problem...
  2. Replies
    1
    Views
    1,150

    CSS box not showing

    Still somewhat of a beginning programmer. But having a small issue.

    the box is obviously there as the information that goes within it populates when the link is clicked to populate the area....
  3. Replies
    3
    Views
    1,099

    Re: Issues with new compliler

    Ok I found my own issue. Thanks if you looked anyway. Visual Studio requires an include of
  4. Replies
    3
    Views
    1,099

    Issues with new compliler

    I'm trying out a the new Visual Studio 2012 Express IDE. I've had no issues with previous versions of the Visual Studio IDE. But this one won't even compile simple programs for some reason. Maybe...
  5. Thread: Pointers

    by cypher5783
    Replies
    5
    Views
    594

    Pointers

    Hey all,

    I'm new to C++ but not to programming in general. I've knowledge in VB, PHP, and MySQL. But i've never had to deal with pointers before. This is a very new topic to me and it seems...
  6. Replies
    6
    Views
    2,394

    Re: Minimal Windows Instance

    Thanks. That got it for me. Maybe now i can move forward :) you guys have been alot of help
  7. Replies
    6
    Views
    2,394

    Re: Minimal Windows Instance

    Ok been trying to implement the changes you guys suggested.

    First. I recently purchased VC2008 Pro. So i'm still getting used to the way it's setup. Do you know how to enable unicode on it?
    ...
  8. Replies
    6
    Views
    2,394

    Minimal Windows Instance

    I'm using a book to learn the windows API using C++. This is an example from the book. But it will not compile. I've checked over the code at least 10 times now and can't seem to find any errors. Any...
  9. Replies
    2
    Views
    527

    Re: unable to output string?

    Nevermind i found my issue my compiler doesn't include string in the std namespace. i needed to include <string>
  10. Replies
    2
    Views
    527

    unable to output string?

    void write_on_paper(string words)
    {
    if (InkLevelPercent <=0)
    {
    cout << "Oops! Out of ink!" << endl;
    }
    else
    {
    cout << words << endl;
    InkLevelPercent = InkLevelPercent -...
  11. Replies
    1
    Views
    385

    Bitshift operators

    Hi guys,

    I'm new to c++ programming. Taking this as a college coarse and i guess my instructor just couldn't explain this well enough for me to truely grasp the purpose of this.

    He said that...
  12. Replies
    2
    Views
    2,714

    Status Stack Overflow

    Hey guys just wanted to know if i'm going nuts. Creating a recursive program. (Calling the function from within itself to loop it) How is it possible that calling the recursion causes a status stack...
  13. Thread: Sudoku

    by cypher5783
    Replies
    1
    Views
    794

    Re: Sudoku

    Hey guys I had a friend of mine point out that a random number generator would solve the issues i'm having. However, The professor has dictated that we havn't gone over those yet so not allowed. The...
  14. Thread: Sudoku

    by cypher5783
    Replies
    1
    Views
    794

    Sudoku

    I have a project for my C++ Class to create a program that will sove a sudoku puzzle. I've checked and double checked my code and can't seem to find a problem. So i'm thinking it's a logical error....
  15. Replies
    1
    Views
    486

    Re: No File Output?

    Sorry guys, Right after i asked this question we found the issue. The compiler while it showed termination of the program after running it didn't release it from the system. The .exe still showed up...
  16. Replies
    1
    Views
    486

    [RESOLVED] No File Output?

    My girl has been taking a C++ Programming Class @ Baylor in Waco, TX. I've been trying to help her and I can't seem to see why the file does not output. Everything looks like it should check out....
  17. Replies
    5
    Views
    1,299

    Re: active sessions

    is there a way to destroy session when user leaves site and/or close browser?
  18. Replies
    5
    Views
    1,299

    active sessions

    Hey guys, I've searched the forum and havn't seen anything simular to what i'm asking so here it is.

    Is there a way to find out how many sessions are still active from a server point of view.
    ...
  19. Replies
    3
    Views
    697

    Re: Loop Problem!

    That got it thx bro. Appreciate the help.
  20. Replies
    3
    Views
    697

    [RESOLVED] Loop Problem!

    Trying to code a news section for the first page of of my site. I have it set to loop to retrieve all news articles with section value of 1 from the database.

    ...
  21. Replies
    6
    Views
    2,689

    Re: Looking for free form submit php script?

    Think he's asking for a premade php form for submitting data. Don't think there are any premade 1's out there. And i don't think anyone here will code the form for you.
  22. Replies
    10
    Views
    1,117

    Re: PHP on its own

    yes, please if anybody knows do tell i'm hitting a simular issue
  23. Replies
    1
    Views
    737

    [RESOLVED] parse error

    Parse error: parse error, unexpected $ in /home/microbec/public_html/igl/view_handle.php on line 303


    I'm getting this parse error when the page loads but the line it points too is at the end of...
  24. Replies
    1
    Views
    1,020

    [RESOLVED] No Error but won't display

    php isnt giving me back any parse errors etc... but it will not display the forms i'm sure it's a logic error somewhere but i can't seem to locate it. I knwo it's alot alot of code to look it but the...
  25. Replies
    4
    Views
    994

    Re: Forms and PHP

    Ok i'll try to elaborate a bit more.



    <tr>
    <td width="334">IP 2</td>
    <td width="455"><?php echo $myrow['IP2'];?></td>
    <td width="24"><input type="checkbox" name="IP2"...
Results 1 to 25 of 49
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured