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

Search:

Type: Posts; User: kishk91

Page 1 of 72 1 2 3 4

Search: Search took 0.25 seconds.

  1. Replies
    1
    Views
    608

    Paste into rich edit

    Hi all.
    i have two simple Q's.

    1. How can i prevent pasting objects other then text into my rich edit.

    2. When pasting text into my rich edit, how can scan it before it is been displayed, and...
  2. Replies
    1
    Views
    577

    Hi i dont know about a book, but try this site:...

    Hi
    i dont know about a book,
    but try this site:
    http://www.gamedev.net/


    Good luck
    kishk
  3. Replies
    4
    Views
    1,881

    Hi, If this is dlg based app and you added your...

    Hi,
    If this is dlg based app and you added your control via the template editor WM_CREATE wont be called.

    If you need to change window style or someting else that you would do in OnCreate, then...
  4. Thread: Is user logon?

    by kishk91
    Replies
    2
    Views
    646

    But is GetUseName will work under XP?? when you...

    But is GetUseName will work under XP?? when you can change users?
  5. Thread: CTreeCtrl

    by kishk91
    Replies
    1
    Views
    630

    Just use MyTreeCtrl.SetFont(.... ) that's allyou...

    Just use MyTreeCtrl.SetFont(.... )
    that's allyou need to do...
    and you may want to do it in the OnInitDialog..

    HTH
    kishk
  6. Replies
    3
    Views
    833

    Need point to the right direction

    Hi all

    I dont know if this is the right place to write this.

    I need some help about how to build web base mail server.
    My guess i need IIS.

    I dont have a cluse where to start.

    thanks in...
  7. Replies
    1
    Views
    3,278

    CreateFileMapping with SEC_RESERVE

    Hi all !

    I have tried to use CreateFileMapping with SEC_RESERVE flag,
    allocating memory after that by VirtualAlloc with MEM_COMMIT.
    But subsequent call to VirtualFree (after UnmapViewOfFile )...
  8. Replies
    3
    Views
    959

    Everything is been added in OnInitialUpdate()

    Everything is been added in OnInitialUpdate()
  9. Replies
    8
    Views
    1,030

    Hi... i have another idea: consider this code...

    Hi...
    i have another idea:
    consider this code snipet:

    // this called when i ACCEPT new connection NOT in my thread
    void CSomeClass::Function()
    {
    // Class derived from win thread...
    ...
  10. Replies
    8
    Views
    1,030

    Hi... i have another idea: consider this code...

    Hi...
    i have another idea:
    consider this code snipet:

    // this called when i ACCEPT new connection NOT in my thread
    void CSomeClass::Function()
    {

    CSocket so;
    ...
  11. Replies
    8
    Views
    1,030

    Hi... i have another idea: consider this code...

    Hi...
    i have another idea:
    consider this code snipet:

    // this called when i ACCEPT new connection NOT in my thread
    void CSomeClass::Function()
    {

    m_MyListenSocket.Accept( sock );
    }
  12. Replies
    3
    Views
    959

    Weird problem woth list view...

    Hi all..
    i have never seen this before....
    very weird..
    I have this simple list view ( SDI app splitters )
    that one in a while got stack in infinite loop when trying to resize the cloumns.
    it...
  13. Thread: MFC : Dialogs

    by kishk91
    Replies
    1
    Views
    606

    Mybe this will help:...

    Mybe this will help:
    http://www.codeguru.com/dialog/ViewOnDlg.html

    Good luck
  14. Can you give us some more details: Is this...

    Can you give us some more details:
    Is this "video device" is some web cam conneted to USB
    Or is it something else that has special frame grabber card.
    etc...

    Kishk
  15. Hmmm... But mybe you can use SubClassDlgItem or...

    Hmmm...
    But mybe you can use SubClassDlgItem or SubcCassWindow.
    I cannot tell you if it will work, due to the fact that i never done it before.
    Worth trying....


    Good luck,
    kishk
  16. If you have created the control with the wizard...

    If you have created the control with the wizard then it should
    appear in the list where you add member variables ( using class wiz )
    If it is an edit control ( for example ) instead of value...
  17. Thread: multithread

    by kishk91
    Replies
    5
    Views
    1,053

    Try going to your project settings (...

    Try going to your project settings ( menu->setttings )
    go to C/C++ tab
    in the category combo select Code Generation

    And in the Use Run-time library combo
    select Debug mulithreaded.

    that...
  18. Thread: COMM ports

    by kishk91
    Replies
    5
    Views
    4,419

    Hi... Thanks for your help... Great solution....

    Hi...
    Thanks for your help...
    Great solution.
    But what i finaly did.. is to enumarate the values in the registry under the key:
    HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\SERIALCOMM

    I dont know if...
  19. int ** Arr ; arr = new int*[ size ] ; for(...

    int ** Arr ;

    arr = new int*[ size ] ;

    for( i = 0 ; i < size ; i++)
    arr[i] = new int[ size1 ]
  20. Thread: COMM ports

    by kishk91
    Replies
    5
    Views
    4,419

    COMM ports

    Howdy...

    This questions is bothering me from quite a while...
    for some reason i didnt find any answer to this:

    How can i enumarete comm ports???
    i meen how do i know which pors are installed...
  21. I dont see any problems doing that...

    I dont see any problems doing that...
  22. Replies
    12
    Views
    1,250

    :) Yap... a year and a half ( a bit less ) ...

    :) Yap... a year and a half ( a bit less )

    Pretty much to work on such project...

    Thanks again for your help ( all of you )
    Kishk
  23. Replies
    12
    Views
    1,250

    Thanks guys for your help.. So what you are...

    Thanks guys for your help..
    So what you are actualy saing that i should go for emulation only ?
    I am looking for a challenge... something not that easy but in the other hand not something that is...
  24. Replies
    12
    Views
    1,250

    Thanks for your reply. Im doing my final year...

    Thanks for your reply.

    Im doing my final year project now.
    Im building some sort of Visual editor ( I choose ASM )
    The challenge here is to ability to walk step by step
    and emulate ( or realy...
  25. Replies
    12
    Views
    1,250

    VC And ASM ( command excecution )

    Hi there...
    Is there any way to exceute somehow an ASM command??
    Imagine i have simple edit box

    user types

    MOV AX,BX

    then clicks "Exceute" btn.
Results 1 to 25 of 1793
Page 1 of 72 1 2 3 4





Click Here to Expand Forum to Full Width

Featured