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!

Recent content by ug505

  1. ug505

    Allocate Memory?

    I know in Delphi I would do procedure TForm1.Button1Click(Sender: TObject); var FileData : TStringList; TimeNow : LongInt; begin TimeNow:=timeGetTime; while (TimeNow + 20000) > timeGetTime do FileData:=TStringList.Create; end;
  2. ug505

    Allocate Memory?

    I know this is kind of a weird question, but how do you...allocate physical memory? I know using New will make a new object but it's not allocating what I'm looking for. Here's kind of what I'm looking for: http://www.soft.tahionic.com/download-memalloc/index.html That program allocates memory...
  3. ug505

    Capturing data from multiple web pages at one time

    I don't think you can make it any faster unless you get faster internet. You could try having multiple webbrowser components capturing the data.
  4. ug505

    TCP Server get IP Address?

    Okay I have most of this working but I'm stuck on one problem. I have a TCP Instant Messenger I made in class so me and one friend could send messages to each other. It works flawlessly. Now my other friends want to join in and all message together. So I'm making a TCP Server that will accept...
  5. ug505

    Drag and drop files into console to get their path and filename?

    Oh okay. Thanks for trying to help me. I guess I'll make my application in a standard Windows Application. Thanks. I did not know about Vista dropping Drag & Drop on Consoles. :/
  6. ug505

    Drag and drop files into console to get their path and filename?

    Upon testing your code in a new console application in Visual Basic 2010, I tried to drag a zip file onto the console application. It did not display a file path or file name. When I tried to drag it, it changed my cursor to the "no symbol" or the circle with a diagonal line through it. I'm...
  7. ug505

    Drag and drop files into console to get their path and filename?

    I have a console application that I want to show the path and filename when a file is dropped on it...kind of like the Command Prompt. Open Command Prompt and drag any file onto it and it will display the path and filename where you type. How can I get my console to do that?
  8. ug505

    Instant Messenger Connection Problem.

    I'm trying to make a private chat between two people but I can't get it to connect. I Googled it and found out that I can use TCPListener and TCPClient. I tried it out and it won't work. I'm usually good with making programs that don't require Internet but this one does and it's bugging me. I...
  9. ug505

    Reading configuration from browser?

    I'm trying to get seconds and a URL off my friend's website that is stored in a file. He has it in a PHP file that displays it on the screen as text. I'm not sure if I can rip that off the page and then use it. He said he can change it to an XML file for me to get it off of. Here's my question...
  10. ug505

    Time Running in TTimer?

    I've tried searching Google without any luck for my problem. My program has a label that tells you how long you have been running the program. I can only get it to show in seconds (using a TTimer.) How could I somehow convert those seconds into hours:minutes:seconds format?
  11. ug505

    On "Out of Memory" error, do something else?

    Thanks djjd47130 that really helped me, this forum is full of great people. :)
  12. ug505

    On "Out of Memory" error, do something else?

    Hi again, I've never handled error messages in Delphi so it's new to me. My program uses a lot of RAM. Is there a way to do FreeAndNil() when I receive the "Out of Memory" error? Or if not, is there a way to end the program on this error? Such as Halt() or Close()?
  13. ug505

    Mute TWebBrowser?

    Thanks for the link but that's not what I'm looking for. I'm looking for a way to just mute my program or the web browser. It's not just gonna open YouTube videos. It's going to open other websites too. Some might have sound. I mean one minute you could be watching YouTube in your actual browser...
  14. ug505

    Mute TWebBrowser?

    As in volume. My program opens Youtube videos in a TWebBrowser and I hear the videos, I don't want that. Is there a way to mute my program?
  15. ug505

    Mute TWebBrowser?

    I can't find this anywhere. How do I mute my TWebBrowser or even my whole program? I don't want to mute the whole computer though.

Part and Inventory Search

Back
Top