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

Search:

Type: Posts; User: siawos

Page 1 of 6 1 2 3 4

Search: Search took 0.47 seconds.

  1. Replies
    40
    Views
    7,426

    this was from a forum.....

    this was from a forum.....
  2. Replies
    1
    Views
    584

    am about to land on this airport !! over and out

    am about to land on this airport !!
    over and out
  3. Replies
    6
    Views
    1,021

    you can also subclass it..... but that wud be...

    you can also subclass it..... but that wud be like sending forces to Iraq, a **** to manage....
    like y do it the other way when there are simple and easy ways for that..
    this is given as an option...
  4. check this...

    check this and the references in this article this will give you a more clear picture.
    hope this helps
  5. when u get the mouse over a control, grab its...

    when u get the mouse over a control, grab its handle by WindowFromPoint()
    take its rect by using GetWindowRect()
    draw a rectangle in that area with any color for a while, remove the rect, and...
  6. in your DoDataExchange(CDataExchange* pDX) ...

    in your DoDataExchange(CDataExchange* pDX)

    there will be lines like this that determine the linking and subclassing behind the scenes.

    DDX_Control(pDX, IDC_BUTTON1, m_Btn);
  7. using sendmessage across process can cause...

    using sendmessage across process can cause blocking, for that u can either use PostMessage() or sendmessageTimeOut(), they dont cause blocking, and of these two SendMessageTimeOut() is a better...
  8. yes with these calls or the calls behind these...

    yes with these calls or the calls behind these calls, i mean the messages that are sent behind these calls.
    the only thing u need to cater are the process boundries for which there are several ways.
  9. its not impossible if its in another process...

    its not impossible if its in another process there are ways for that.
  10. i saw Mercury's WinRunner 5 not recognising that...

    i saw Mercury's WinRunner 5 not recognising that text either, its explicitely written in winrunner manuals that the text on VB applications cannot be recognised.

    At my time My requirements were...
  11. u can also use sendmessage() or...

    u can also use sendmessage() or sendmessageTimeOut() but still i cant imagine how a handle can be lost within the application when posted, is this the pool of posted messages that has a leak...
  12. check TN001...

    check TN001 in MSDN for what i mean here, and your point is also a valid one.
    note the class name of a simple MDI or SDI generated by MFC wizard in two different instances u'll see the difference...
  13. if u can launch the target application from ur...

    if u can launch the target application from ur process then u can easily get the top parent handle n then enumerate them.



    am sure this works for VB but others i dont know exactly, that depends...
  14. you would have to devise a combination of things...

    you would have to devise a combination of things to determine that, no single property/value will do the job there.
    possibilities cab be...


    window class name (vulnerable)
    ID(vulnerable)
    ...
  15. the static control on vb applications cannot be...

    the static control on vb applications cannot be grabbed like this, i wonder how did u do that...

    when u run any spying utility like handle pickers on a VB Application the static texts are not...
  16. Thread: Set Caption

    by siawos
    Replies
    4
    Views
    822

    The question is rather unclear here, from things...

    The question is rather unclear here, from things it seems that you donot have a pointer to your dialog instance.... is it so??
    if yes ...
    I doubt the use of GetDlgItem for finding something in a...
  17. Replies
    12
    Views
    1,311

    the decision is all yours, it depends on your...

    the decision is all yours, it depends on your strategy and design.
    to say "we should not" is a heavy statement cos its there to use. again i wud say the decision is on you that how do u want your...
  18. Replies
    12
    Views
    1,311

    using WM_APP range is a bit safer, but it may...

    using WM_APP range is a bit safer, but it may happen that someother application might also be sending messages of the same ID as yours,
    who knows u are using WM_APP+100
    someone else is using the...
  19. Replies
    12
    Views
    1,311

    WM_USER is obsolete now, either use WM_APP as the...

    WM_USER is obsolete now, either use WM_APP as the limit or use RegisterWindowMessage() in MSDN for a safe processing of ur msg in the wndProc(), or use that GUID appproach if you want "only your...
  20. Replies
    1
    Views
    514

    rotation of controls

    hi
    i was wondering can a control be rotated , for example a tree be displayed in a horizontal direction, or rotated to 45 or 90 degrees, etc.

    or an edit box in vertical direction anything like...
  21. Thread: Dialog controls

    by siawos
    Replies
    3
    Views
    578

    Once i had a chance to look into an application...

    Once i had a chance to look into an application that had a grid control in it, it appeared a spin control in its grids whenever a mouseclick was posted at that particular row coloumn, the user would...
  22. Replies
    12
    Views
    1,311

    which sdk are you talking about, are you...

    which sdk are you talking about, are you developing your own SDK and want to include this message???
    if so then anywhere where this message is used
    just #define MYMSG WM_APP+ 1000

    also see...
  23. Replies
    1
    Views
    704

    i repharse my post here... the idea is to show...

    i repharse my post here...
    the idea is to show the color boxes as they show in the standard color dialog, but the need here is of a control that cud include vertical scrolling as well. the control...
  24. Replies
    1
    Views
    704

    vertical scrolls in multi column listbox

    hi
    how do i put a vertical scrollbar in a multicolum listbox?
    Thanks.
  25. Thread: Resource IDS

    by siawos
    Replies
    3
    Views
    587

    see in msdnTN035...

    see in msdnTN035
Results 1 to 25 of 143
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured