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 TouchToneTommy 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: samibami
  • Content: Threads
  • Order by date
  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

    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)...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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
  9. 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...
  10. 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?
  11. 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!!
  12. 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...
  13. 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...
  14. 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?
  15. samibami

    how to run my program on startup

    i want to add to my program the option to run on startup. i know i can use the registry to do that.the problem is i don't know where the user will put the executable file.i don't use install shield at all. on borland c++ builder5: how can the executable know its own location,so it can update...
  16. samibami

    error when sending mail with NMSmtp component

    hi there ... i'm using bcb5 to create a mail program.i use "fast net" component called "NMSmtp".i configured host name to b "mail" .the problem accures when i try to send mail between 2 diffrent mail accounts. i.e : NMSMTP1->PostMessage->FromName="my...
  17. samibami

    problem with NMMsg and tcp/ip chat program

    i'm using NMMsg and NMMsgSrv for a little tcp/ip chat program.most of the time it works great.sometimes i get error messages like "already conected" or "hostlookup time out" .i checked the code many times and can't figure out what seems to be the problem.i'm using bcb5. the...
  18. samibami

    working with listview component

    i use a listview component on my form (vreport-meaning, a table).i add data into it,say, ip addresses.i want to access a specific data entry in the list.how do i do that? i know i have to declare " TListItem *ListIt" to add strings,but how do i access them afterwards? 10x very much...
  19. samibami

    how to refresh after changing registry

    hi, i made a little tweak that changes windows hidden attribute. however,i don't see changes right away ,only after refresh (with F5 or right click). how do i refresh from within my application? i'm using bcb5.

Part and Inventory Search

Back
Top