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 Mike Lewis 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: *

  1. samibami

    help!!!! listView insertion problem

    hi there, i'm using listView to show what the windows task manager shows,however,when i insert the information,the first column seems to be empty!!! i tried many tutorials and code exaples but none helped!!! this is my code: //********************************************* string[] myItems =...
  2. samibami

    how to use Msn Messnger Dll to write add-ins

    hi there, i'm trying to learn how to write an "Auto Message Response" for MSN Messenger 6.2.up until now i couldn't get anything to work on MSN Messenger! all the codes i've seen only work on Windows Messenger.i found many tutorials and links such as...
  3. samibami

    help,runtime TLabel component Doesn't show

    o.k, i found the answer! in order to create a TLabel component on runtime use the following code : TLable *MyLabel=new TLabel(this); if you want it to show on your form , you must set the "parent" property according to whom is the parent. int my case the parent was a groupBox1 so the code was...
  4. samibami

    help,runtime TLabel component Doesn't show

    it's me again... i forgot to mention that the code i wrote before only deals with one TLabel! that's because i couldn't find a way to create an array of TLabels* (is it even possible?)and initialize them with a loop. so ,do you know any other way to do that? 10x again
  5. samibami

    help,runtime TLabel component Doesn't show

    hi there, i need to create a TLAbel component at runtime on onButtonClick event (actually a few TLables). when a button is pressed you would see between 4 to 5 TLAbels on the form. i tried the following code: for(some condition ) { TLabel *MyLabel = new TLabel(this)...
  6. samibami

    running my Application as system service

    hi there, i noticed that programs can be executed as a system service. for example i have a dynamic dns updater (www.no-ip.com) that has an option to run as system service. the result would be that when pressing alt+ctrl+del and opening the task manager i would see my App running under system...
  7. samibami

    using system user to execute a file

    hi there, i'm not sure if this is the right forum for this question. i need to execute a file on win xp's system user. i noticed that it can be done by adding a schedule task to the xp's task scheduler.but how can i do it without adding a schedule task ? if i'm not clear enough here's another...
  8. samibami

    hiding the project's taskbar icon, but leaving...

    the popup message will rise above the tray for 5 seconds and then would slide down exactly like the messenger's notify window (and i mean exactly!) i don't want that in those 5 seconds a taskbar icon will appear. you see now, i can't solve it the way use suggested. a friend of mine (10x...
  9. samibami

    hiding the project's taskbar icon, but leaving...

    hi there, o.k, i got a program with a single form that acts like a popup notify(like messenger).what i need is a way to hide the project from the taskbar and still be able to see the popup message.the result would be a popup notifier with no taskbar trace. reminder 1:the single form itself is...
  10. samibami

    how do i write a "formless" application

    hi, it's kinda wierd, but i'm trying to write a program on borland that doesn't need a form. using "console wizard" and other project types gave only errors (something about a missing package called "CaptionButtonCB5"). note:i don't want to make an invisible form!! i already know how to do...
  11. samibami

    spliting files into many parts

    hi there! how can i split a video file into 2 parts? can i just read half of it and copy it to a new file and then do the same with the other half? would it work or the files wont be playable? what reading format should i use ? (binary i guess) 10x
  12. samibami

    how do i find a specific proccess on task manager?

    hi again!! i have a problem.every time i make a voice conversation on msn messenger i must disable my firewall (msn: you suck!!). what i need is a program, which when started it kills my firewall proccess from the task manager and alerts me every 5 minutes or so that my firewall is disabled, so...
  13. samibami

    how to add a schedule task to the task scheduler

    hi! does anybody know how to write a program that would add a specific schedule task to the task scheduler on xp pro?
  14. samibami

    how to read/write binary data from/to files

    hi there! i'm looking for the easyest way to read and write binary data to a file.i don't mean the usual "fopen" commands but something else.maybe borland has special commands formats. thanks a lot!!
  15. samibami

    parallel sort - complexity calculating challange

    hi there, i'm programming an algorythm that sorts p sorted arrays into one array of size n. this is done on parallel with p processors. each processor gets an array of size n/p . the algorythm: 1)each little array has a pointer to its first item which is the smallest (the little arrays are...
  16. samibami

    socket programming problem

    hi there, i made a little client/server project without using any components!!!! (yes,i had to write all the socket crap..). the thing is i don't know how to pre set the packets size on the client side and how to get the TTL parameter (the same parameter you get when you ping to some ip...
  17. samibami

    scan

    can u b more specific? however,here's what i thought i should answer... char string[100]; scanf("%s",string); what's with the spaces? they are considered as chars too.
  18. samibami

    how to send files through tcp/ip chat program

    hi there, i made a tcp/ip chat program and i want to add a "send file" option .i use bcb5 with fastnet's NMMsg and NMMsgSrv components.this components have sendfile function. but how do i use them?
  19. samibami

    how to run my program on startup

    thanks, that worked greate. where can i find a reference to functions like GetModuleFileName and other?
  20. samibami

    TCP/IP chat program...

    i'm working on the same project as well. i use NMMsg and NMMsgServ components .you can find them in "fastnet" section on component platte. NMMsg is for sending a text msg to remote computer. NMMsgSrev is for recieving messages sent with NMMsg. you can use bcb5 help if you don't...

Part and Inventory Search

Back
Top