Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by thangnguyen

  1. thangnguyen

    awt.TextArea does not return correct Greek character ?

    Hi, I'm developing an applet which enable user to type Greek text. awt.textArea can display well Greek texts which were typed by user. But the problem is I can not get the correct content of the TextArea, the method getText() returns non-Greek text. This only happens if I enable Java plugin...
  2. thangnguyen

    Load external GIF or PNG image to Flash ???

    thanks, I just found a free tool, which can convert a GIF file to a SWF. It works great. The rest of my work is converting my files (in transparent PNG) into GIF format - not using LZW compression-'cause I don't have money to pay for Unisys :).. Thang.
  3. thangnguyen

    Load external GIF or PNG image to Flash ???

    Hi, I heard that Flash can not load external image except image in JPG format. Is that correct ? a work-around solution is putting the image ( in GIF ) into another flash, then the main Flash will load the GIF files from that swf. But I still wonder if theres another solution for that ! if you...
  4. thangnguyen

    C++ amatuer needs help with arrays!

    Just modify your code like this : void doit(char* &msg) Thang.
  5. thangnguyen

    Yes/No problem

    Just set the language of your app's resource to English. If it does not work, I suggest that you should build your own message box dialog :) Hope this helped !!! Thang.
  6. thangnguyen

    Does anyone know about taskbar ? please HELP !

    Hi, I want to make my program works as : from my window app, I hold down and move my mouse cursor over the taskbar, if I keep the cursor more than a specific time, the program will activate the button icon on the task bar and show out that window. The problem here is I don't know the handle of...
  7. thangnguyen

    Show an window which was minimized on taskbar

    Hi, I want to make my program works as : from my window app, I hold down and move my mouse cursor over the taskbar, if I keep the cursor more than a specific time, the program will activate the button icon on the task bar and show out that window. The problem here is I don't know the handle of...
  8. thangnguyen

    Disable Ctrl key , an hook question ?

    I don't understand exactly what you mean, all I have is from hook, I don't know what app A does with those messages, the only thing I could do is within my hookproc : prevent from sending to app A any message may include the state of Ctrl key : WM_LBUTTONDOWN with Ctrl key down, WM_KEYDOWN with...
  9. thangnguyen

    Disable Ctrl key , an hook question ?

    thanks for the info, I have tried it but it doens't work. Is seems that at the moment app A is getting the message WM_LBUTTONDOWN, it gets the state of Ctrl key ( from function like GetAsyncKeyState ). So even if I have prevent message indicating the pressed state of Ctrl key, app A still...
  10. thangnguyen

    Disable Ctrl key , an hook question ?

    Hi, I use hook to receive message sent to application A.when user holds Ctrl down and left-clicks on application A, I can receive this action with hook, but I don't know how to modify the message so that only left-click action was notified to app A. I have tried to modify the wParam =...
  11. thangnguyen

    E-dictionary and autolook up !

    Hi , I want to develop a e-dictionary with VC++ and it has a autolook feature, for example : when I ctrl+click on some text in window screen ( in Microsoft OS ) , the program will detect texts at that click point position, so I could look up for the meaning of the detected text in my...

Part and Inventory Search

Back
Top