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

Search:

Type: Posts; User: inmar32

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    1,343

    Re: OCX registration problem

    MIDL did solved the issue!
    Thanks!
  2. Replies
    2
    Views
    1,343

    OCX registration problem

    Hi
    I have a very old OCX project.
    I need to compile the RC file alone with the RC compiler. The problem is that the RC compiler fails with error "file not found: logsX.tlb"
    I removed the line : 1...
  3. Replies
    1
    Views
    1,215

    Problem with registration of DLL

    Hey
    I am trying to run in the command line the regisration of a DLL :

    C:\regsvr32 c:\Release\MyProg.dll

    Since we converted the solution from vs2008 to vs2010 we are getting the...
  4. Replies
    3
    Views
    1,177

    Re: Localize big number mask

    Thanks a lot!!

    By the way I needed the flag LOCALE_STHOUSAND.
  5. Replies
    3
    Views
    1,177

    Localize big number mask

    Hey
    I have some strings that shows big number.
    I need to add commas to the big numer so for example 9999999 become 9,999,999
    I need it to be localized and I know that some languages uses the char...
  6. Replies
    3
    Views
    3,298

    Re: Combobox mousedown

    Hey

    How does it help me to distinguish whether the user clicked with the mouse on the text box or the list?
  7. Thread: Static members

    by inmar32
    Replies
    2
    Views
    665

    Static members

    Hey
    I have a class ,and have static string member in it.
    can i use the static string even if the class insnanse was dispose ?
  8. Replies
    3
    Views
    3,298

    Combobox mousedown

    Hey
    I have a combobox that i definded as simple.
    I need to know if the user clicked with the mouse on the combobox text box (not on the items list).
    I catch the event MouseDown, and i thought that...
  9. Replies
    1
    Views
    588

    Keeping focus in parent dialog

    Hey
    I have parent dialog that fills inside another dialog with CEdit (Popup dialog ,not child).
    When i put the cursor in the CEdit ,i loose focus in the parent dialog (the title bar become from...
  10. Replies
    4
    Views
    781

    Re: Calling functions of an abstract class.

    Hey
    My advice to you is to read the error message...
    It would make things a lot easier.
  11. Replies
    4
    Views
    781

    Re: Calling functions of an abstract class.

    Hey
    Members of classes declared with the keyword class are private by default.
    You tring to access a private member.

    You have to use public as follow if you want to access from outside...
  12. Replies
    13
    Views
    2,541

    Re: how to get starting with C++

    Hey
    In what folder is your cpp file in the project ?
  13. Replies
    13
    Views
    2,541

    Re: how to get starting with C++

    Hey
    You still didnt provied any information to your problem.
    Can you show us your code ?
    Is the file compile with no warnings?
    Can you run other programs ?
    Is the debug folder created ?
  14. Replies
    13
    Views
    2,541

    Re: how to get starting with C++

    Hey
    Welcome to the forum .

    Yoy have to share more details on your problem .

    Where do you get this error?
  15. Re: How can handle double click event in listctrl of checkbox style?

    I think what @Vanaj ment to say is : LVHT_ONITEMSTATEICON
  16. Re: WM_MOUSEMOVE or equivalent when cursor is outside window?

    When the cursor lives your dialog you stop getting messages. You can see yourself in Spy++.

    Maybe there is another way : creates another thread that his job is to use GetCursorPos() and send...
  17. Re: How can handle double click event in listctrl of checkbox style?

    Can you post your code that capture the dbl click on the list ?

    what do you mean popup ? like message box ?
  18. Re: C++ simple syntax problem, but it's stumping me

    After the "return" statment the program will exit the method ,put the "cout " before the "return".
    All this of course after you put the if statement in some method,like Chris_F told you.
  19. Replies
    2
    Views
    1,238

    Re: CMD echo for gui-less programs?

    I didnt get somthing.. or maybe a lot of things...
    Do you have the source code of the server ?





    What about this server...???

    Anyhow if you cant debug, you can add TRACE to each function...
  20. Re: Put Check Box in CListCtrl in row other than the first column

    Yes there is a way.
    You can use the class CXListCtrl that provides all the manipulates on the CListCtrl .
    You can see a sample project here :

    http://www.codeproject.com/KB/list/xlistctrl.aspx
  21. Replies
    4
    Views
    11,958

    Re: How to multiply two integer arrays in C++?

    Hey
    I didnt see in you program the matrix that holds the temporary result.
    for example if you want to calc : 23*45

    23
    45...
  22. Replies
    3
    Views
    5,806

    Re: Hw start guidance

    My advice to you is to perform a DR(design review) with your other teamates.
    In the DR after you all understand perfectly the requirments of the project ,wrote down on paper the schema of the...
  23. Replies
    6
    Views
    1,807

    Re: CListView problem

    Maybe this article will help you :

    http://www.codeproject.com/KB/list/selectentirerow.aspx
  24. Replies
    1
    Views
    1,004

    Re: simple tic tac toe

    I dont want to give you the solution but you can do that:
    choose column - lets say 0 ,
    For each index in column 0 (3 items) you check the row and column in the matrix.

    You can check the...
  25. Replies
    2
    Views
    1,194

    Re: Need help with logic for custom filters

    Hey
    This forum is about visual C++ .
    I believe what your looking for is in :
    http://www.codeguru.com/forum/forumdisplay.php?f=4
Results 1 to 25 of 79
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured