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: Ante0
  • Order by date
  1. Ante0

    Which hosting provider do you use for PHP?

    I'm using Hosting24.com, I like it. People have complained about having downtime alot, but I haven't noticed anything like that... I'm using the Gold plan, which is ~$10 a month with unlimited bandwidth (up and down) unlimited space... Well, it's good for smaller companies. If you have a big...
  2. Ante0

    Invalid property value

    Copy and Paste the source of Form1.pas in here. It will help us alot. :)
  3. Ante0

    ShowMessage issues (chaning window focus)

    You'd have to add Form2.Focus(); before the message dialog, otherwise it waits for you to click "OK" before the code continues. Also, how are you showing the other forms? Formx.Show; or Formx.ShowModal;? Or any other way?
  4. Ante0

    Asus M2N-MX stuck at Post screen

    After just opening the case and checking all cables (Which were all connected as they should) the pc boots alright. The last message was "Auto Assign 4th Master:", so that might be why it wouldn't boot... I'll check out that HDD and see if it's faulty. Thanks guys
  5. Ante0

    Asus M2N-MX stuck at Post screen

    Something is wrong with my computer, again... About a year ago it would start to randomly hang/reboot, that was because I had put the "reset button" cable incorrectly on the mb. So I simply just removed it and problem was solved. Now it's starting again, but this time it wont even boot. It just...
  6. Ante0

    Can't run Delphi App in WinXP

    You could try rightclicking the program you're trying to run, then select Properties. In the window that pops up: click on the Compability tab, Check the "Run this program in Combability mode for:" and select Windows 98 in the dropdown list. If that does not solve it you should recompile the...
  7. Ante0

    open form based on user selection

    Could the TForm(cbCitationType.Items.Objects[cbCitationType.ItemIndex]).Show; be wrong? Usually you only use, for example, Form1.Show; or Form2.Show; Not TForm1.Show; Atleast what I know :)
  8. Ante0

    System Requirements test.

    On a fresh install for me it uses 858mb ram according to the task manager. So I'd say 1gb is probably recommended, 512 min. But ofc, minimum doesn't always mean minimum. It will run choppy but still doable :P
  9. Ante0

    Windows 7 in a virtual machine

    I would really recommend installing Win7 on a second partition, makes it run alot smoother in my tests. I guess this would only be for testing, but to enjoy it fully you'd need to install it physically :) Mainly because it would run faster than in a VM.
  10. Ante0

    Weird very weird

    Did you install GRUB on the mbr of the 30gig or 6gig?
  11. Ante0

    Merry Christmas Everyone ...

    One could always wish :P Happy new year!
  12. Ante0

    PHPMAILER

    try adding the red var $Host = 'ssl://smtp.gmail.com';
  13. Ante0

    Drawing in a game using DirectDraw

    Thanks, I remember using the original version which is now ancient. I'll look into this tonight, a few beers and delphi will make my evening. Got any other pointers?` I've been googling, but not much about this subject really. I found a few VB docs about DirectDraw, but they didn't really help...
  14. Ante0

    Drawing in a game using DirectDraw

    Hi, I'm trying to figure out how to use DirectDraw (Maybe using Delphi X) to Draw text inside a game. Like the program Fraps does when it displays your FPS ingame. I would like to make a Clock, as the game I play doesn't have any ingame Clock and it's a pain to Alt+Tab each time :) Also, I would...
  15. Ante0

    Php upload: Return Code 6

    Thank you feherke, it must've just disappeared for no reason... I will look into this :)
  16. Ante0

    Php upload: Return Code 6

    What does this mean? I have this upload page where I can upload files of all sorts to my server, but all of a sudden it just says Return Code: 6. Here's my code: <?php if ($_FILES["file"]["error"] > 0) { echo "Return Code: " . $_FILES["file"]["error"] . "<br />"; } else {...
  17. Ante0

    How to get PHP output to Excel file which is emailed as attachment

    Google: Php mail attachment. I will investigate if this works as it should: <?php function mail_attachment($filename, $path, $mailto, $from_mail, $from_name, $replyto, $subject, $message) { $file = $path.$filename; $file_size = filesize($file); $handle = fopen($file, "r")...
  18. Ante0

    Borland C++ IDE

    Before Borland hosted Borland C++ Builder 6.0 Personal for free on CodeGear, so I'm sure you could just google it and download it for free in English. I'm not sure what the difference between Pro and Personal is, in Delphi 6 I haven't seen a big difference in the Pro and Personal (Which was...
  19. Ante0

    Bring back deleted files

    There is no sure way to get them back when you use Shift+Del. Since that deletes them directly instead of going to the Recycle bin. You should however try UnEraser as twiSSt stated above, I have used it before and it worked amazingly good with Text files, haven't tried with music. But sometimes...
  20. Ante0

    Formatting question

    Try using doublequotes and see what happens. <?=_p("No, our wireless site is always 100% free to you.")?> I'm guessing it's the % sign.

Part and Inventory Search

Back
Top