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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: tid
  • Order by date
  1. tid

    need help wit webbrowser

    Hi, i wonder if someone has found a code sample to that or know how to to this : Im building a tool like a webbrowser and using for that the activeX webbrowser componenet. Everything is ok with that but i can't find the next thing - i like to be able to drag a link and relese it ON the same...
  2. tid

    convert mfc to c++ builder

    #include <windows.h> #pragma comment( lib, "urlmon.lib" ) bool DownloadFile(char *URL,char * LocalFilename) { long lngRetVal; lngRetVal = URLDownloadToFile(0, URL, LocalFilename, 0, NULL); if (lngRetVal == 0) return true; else return false; } int main() {...
  3. tid

    convert mfc to c++ builder

    hi, There are a lot of code and tutorials on the internet but the problem is that there are written on mfc. i tried to convert one of them to c++ builder but there are a lot of feature that doesn't work (builder doesn't support them). i didn't find a good tutorilas on what do i need to do in...
  4. tid

    search TreeView

    Thanks.
  5. tid

    search TreeView

    Hi, does anyone know of a simple way to search on treeview. i tried to find the function for this but i couldn't find it. do i have to write my own (and then go all over the nodes etc... ?)...this is not a problem but is there a simpler way ? Thanks.
  6. tid

    trying to build an editor

    Hi, im trying to build an editor (simple one...). as part of it i need to do this : when the user write down an instance of a class and then press the "." all of the class public or private method will appear (like on .net or visual 6 and so..) im stuck for now on thinking of a way on how to...
  7. tid

    kernel32 error

    o.k. i found the answer and i think it important to all users... The problem is with the manifest file i used to make my application use the windows XP look. it seem (i found this on delphi site) that listview has some problems with the manifest and it make the kernel32 error. if somebody...
  8. tid

    kernel32 error

    Hi, im writing an application with some forms. on one of the forms i have a listview component. when i show that form and pass with the mouse on the header section of the Listview the programs exit and give an error on kernel32.dll. does somebody know what can be the problem ? Thanks. using...
  9. tid

    Best way to make a Schedule/Agenda (Trigger events)?

    HI, if i hope i got what you tring to do. i did an Schedule application. insted of reading the an event file every time i read it once on start up and setup system timers (not a TTimer) for each of them. it doesn't load the system to much. there is a callback function for the timers. each of...
  10. tid

    messenger like popup notify

    hey, wings, don't take it so hard. didn't ment to annoy you. its just sometimes there are bad answers that doesn't take you anywhere. Anyway, if I hurt you I take my words back. I Do appreciate your help and replys.... Tid.
  11. tid

    messenger like popup notify

    o.k. if you don't know so don't answer... anyway, if so, how to intigrate an active x ? 10x
  12. tid

    How to access IE address

    Hi, I need a way to insert something into the popup window on IE. it should be somthing like "add this page to xyz program". 1. how do i add an entry to that menu ? 2. if so, how to tell my program what instance of IE called it and... 3. how do i get the web address from that page ? if you...
  13. tid

    messenger like popup notify

    Hi, im looking for a way (or a componenet) to make popup notify on tray like the one msn messenger use. this popups can use html code inside and have all kind of designs.... there is one for visual basic: http://www.teebo.com/PopupNotify.htm it called PopupNotify i need something like the one...
  14. tid

    Task bar Messages ?

    Hi, if you just need something like the yellow ballon that popup in the tray.... goto this link and check this out..the installtion is a little bit tricker but ots worked on builder 5 (i cheked it my self :) http://subsimple.com/delphi.asp have fun...
  15. tid

    Smaller apps

    the program is getting bigger becouse the run time. this will be the case if you build in msvc (and set options to relese...). you can cut down size by writing with api function or you can use UPX - exe file compression tool. you can get it at : http://upx.sourceforge.net have fun
  16. tid

    borland gui for graphical interface available for MSVC ?

    kate in msvc 6.0 you have all of this when you start a new mfc project. BUT...after you crated the interface it's not east to go around, mfc is hard to understand. anyway the option are much less on builder, you don't have all the componet kust the basic ones....
  17. tid

    how to use right mouse botton on other componets

    What is that butthead ? can you do it more detailed ? Or, can somebody tell me how to override the onmoudeup event ? Thanks. :)
  18. tid

    whay i need to re-build application ?

    so, there is nothing to do ? i have to include them , and its just logic that some forms have conection with other. is there something to do to prevent all re-building of all project files ? i only change ONE unit !.
  19. tid

    whay i need to re-build application ?

    Hi, im creating application with some forms and i wonder if somebody know why sometime when i make change to one of the forms sorce code (the cpp unit's) i HAVE to re-build all the application (what take &quot;some&quot; time....). when i just make the application it seems that the cahnge don't...
  20. tid

    how to use right mouse botton on other componets

    o.k. you CAN select the Onmouseup in the Object Inspector. BUT when you write down the function the program don't call it when the mouse is presed. the componet is part of TMS (3rd party componet) - its a calendar componet. when you press down the left click you change day on the calnedar. but...

Part and Inventory Search

Back
Top