Search:

Type: Posts; User: bman1176

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Thread: AXIS and C++

    by bman1176
    Replies
    0
    Views
    3,205

    AXIS and C++

    Apache running on Win XP.

    1) I have the Apache HTTP server running and it is configured for Axis.
    Added the following to Apache2\conf\httpd.conf :

    #### Added By SMB for AXIS Support
    #...
  2. Replies
    2
    Views
    2,100

    App or DLL Load address

    Is there way to find the address of memry where an application or dll is stored when loaded? Also is there a means to extract this data at the begining of the application or dll. I am looking to...
  3. Replies
    2
    Views
    1,272

    Bloodshed DEV-C++ Question

    If this in the wrong area I apologize. I did not see a compilier area, and the question is related to windows programming. I have done a lot of win32 and MFC programming with MS VC++ and got...
  4. Replies
    1
    Views
    1,349

    Setting Fonts for all of the window object

    I am trying to set the faunt for the buttons and labels on the scrren. I am using CreateWindow and using CreateWindow for buttons.

    SelectObject(GetDC(hwnd),(HFONT) GetStockObject(ANSI_VAR_FONT));...
  5. Replies
    4
    Views
    1,696

    Font Battle

    I tried the way you had described with doing the following "I tried functions like (?) CreateFont(), ChooseFont(), SelectObject(), but as documentation says, it only works for functions like...
  6. I don't see any gains. It does floating-point...

    I don't see any gains. It does floating-point arithmetic and then the return type is a float.

    What is the overhead of type casting?
  7. Replies
    5
    Views
    1,280

    What I am wanting is how the Constructer is used...

    What I am wanting is how the Constructer is used with the two diffrent declartions. Does the Constructer react diffrent when used in the contex of MyClass mc(val) vs when the Constructer is used in...
  8. Replies
    5
    Views
    1,280

    Another question, Will the two diffrent...

    Another question, Will the two diffrent declarations have an effect on Constructer use? Will one way allow for diffrent things. For example if I had several types of Constricters for that class...
  9. Replies
    5
    Views
    1,280

    class constructer question

    First what is the difference when using

    MyClass mc(val); vs using
    MyClass *mc = new MyClass(val);


    2nd question.

    If I put the declartion of the classes in a loop the "MyClass mc(val)"...
  10. Replies
    4
    Views
    1,191

    I was able to get it to work using namespace std...

    I was able to get it to work using namespace std and passing it the correct size value of the templete, the problem lies is that we are not allowed to use namespace std and want to use the class by...
  11. Replies
    4
    Views
    1,191

    bitset class and operations???

    #include<iostream.h>
    #include<bitset.h>

    int main()
    {
    bitset bt;

    bt.set(0);

    cout<<bt.to_string()<<endl;
  12. Replies
    2
    Views
    1,026

    const on a function???

    I was looking at some C++ code and I notice that a function had const at the end of it. I have ask and ried to research, but haven't gotten a good answer for why you would use const that way. ...
  13. Replies
    2
    Views
    1,011

    I know the sample code is not following any...

    I know the sample code is not following any standard, please forgive me.
  14. Replies
    2
    Views
    1,011

    Passing 2D arrays?

    #include "theworld"

    Why is this illegal and what is the appropriate way to do this?

    void try1(char test[][])
    {
    char c[10][10];
    for(int i = 0; i < 10; i++)
    strcpy(c[i],...
  15. Launching a threaded Dialog but it doesn't allow me access to the parent window

    using: Microsoft VC++ and MFC

    I am trying to thread off a Dialog when I click on a button, that way I launch several dialogs from a particular Dialog.

    example:


    void...
  16. Replies
    5
    Views
    1,209

    what if I had a constructor that need a variable...

    what if I had a constructor that need a variable passed to it?
  17. Thread: inline??

    by bman1176
    Replies
    2
    Views
    1,215

    inline??

    I used inline on some methods in my header file, will the be inline from that point or do I have to put inline in my .cpp file.


    example:

    class fff
    {

    inline int func();
    }
  18. Replies
    5
    Views
    1,209

    Class Constructor question

    for example:
    .h file
    class myClass
    {

    public:
    myClass();
    int getmydata();
    void setmydata(int);
    ~myClass();
  19. Replies
    13
    Views
    2,465

    Step 0 - IDEA Step 1 - specification or...

    Step 0 - IDEA

    Step 1 - specification or requirments
    Level C - very high and general of what you want the software to do.
    Level B - more specific
    Level...
  20. Replies
    24
    Views
    4,434

    Poll: Gaming Console - in Japan the PS2 has a Linux OS,...

    Gaming Console - in Japan the PS2 has a Linux OS, thus allowing you to develope software using C or C++.

    I voted for PC, but use MAC, Laptops, MAINFRAME, and Computer not out on the Market. Just...
  21. Replies
    24
    Views
    4,265

    More that I think about and recalling my days of...

    More that I think about and recalling my days of having to dig through Dr. Knuth's books and listing to my profs, most first computer scientist were Physicist and Mathematicians. They had to choose...
  22. Replies
    24
    Views
    4,265

    Set Theory is another ball game for computer...

    Set Theory is another ball game for computer science. If you dig through database theory you see its building blocks are set theory.
  23. Thread: Communist

    by bman1176
    Replies
    31
    Views
    6,219

    Poll: The Cold War is Over, The US is no longer againt...

    The Cold War is Over, The US is no longer againt communist, we are againt goverments that treats it people inhumanly and are aggressers to greater evil. I would like to add that no goverment is...
  24. Replies
    14
    Views
    14,558

    I know I had to write fast, boss was on his way...

    I know I had to write fast, boss was on his way down the hall.
  25. Replies
    14
    Views
    14,558

    Made a few changes that may help

    Made a few changes that may help
Results 1 to 25 of 53
Page 1 of 3 1 2 3