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 Chriss Miller 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: BobbaFet
  • Content: Threads
  • Order by date
  1. BobbaFet

    It's been 10+ years and I need a little help with SQL

    Hi all, I want to make a report based on a variable SQL query but I can't for the life of me remember how to do that :( Here's the thing, the database is a simple address table with a bunch of addresses in it which have route numbers. Now what I want on my form is a button that when clicked...
  2. BobbaFet

    Character set compare problems

    Hi all, Thanks for reading my question! First of all some basic stats: I am using Delphi 7 Enterprise along with the Indy 9 component set. (The version of 10 you can download from the Indy website seems glitchy hence I've switched back to version 9). My program uses idHTTP to collect data...
  3. BobbaFet

    Space in between table cells

    Hello all, I have attached a picture to this post which displays my problem, my question is how can I get rid of those lines? CSS bg-img + stuff I've tried to get rid of them: /* the background-image is set for the table row </tr> */ #tr1 { background-image:url(liteBG.png)...
  4. BobbaFet

    HTML Frames

    Hey all, I want to make a webpage for the software that I create and years ago I actually got some training in it in school. Thing is, I've always liked frames because it gives such nice structure to a webpage but I was reading that HTML 5 will probably not support it. Here is what I am...
  5. BobbaFet

    Show and hide table from a single element click

    Hey all, For me it's been a long time since I worked with JavaScript and I managed to get this bit of code to work in IE, but not in FF. Can anyone clue me in where I'm going wrong or what I should change to get it to work FF as well? It is supposed to show or hide the table when the user...
  6. BobbaFet

    Relative URLs - question from a software programmer

    Hi guys, thanks for reading my question! So there is a software project that I am working on that requires me to resolve relative URLs and I thought I had it down pat until the client contacted me saying that it doesn't work for some sites. The client sent along one of the webaddresses where...
  7. BobbaFet

    Delphi's with..do block in C?

    Is there an equivalent for Delphi's with..do block in C? [bobafett] BobbaFet [bobafett] if not Programming = 'Severe Migraine' then ShowMessage('Eureka!');
  8. BobbaFet

    Got a weird access violation

    I am working on my own MSN client/bot and when someone contacts me or i contact them I make a new TabSheet that contains 2 labels, a listbox and a button. Code that I use: // Make a new tabsheet // procedure TForm1.MakeNewTabSheetForNewUser(MSNUser: TMSNUser); var mySheet: TTabSheet; var...
  9. BobbaFet

    This can be done better right? (Local drive or inter/intranet address)

    Hi all, still busy with my little project for replacing the shortcuts littering my desktop. Got a question for you guys, I've added a new form to my project to allow inter/intranet addresses and local paths to be added in the same fashion as the programs. But here's the thing: I've got two...
  10. BobbaFet

    Drawing Form Background Problem

    Hi all! Thank you for reading my question! I'm using a simple bit of code to draw a background on the form canvas. This is what I use (ok, a bit more complex than this due to supporting jpegs, resizing, etc as well but anyway): ... private myBackground: TBitmap; ... function GetDesktopBG...
  11. BobbaFet

    Extract Icon, Resize it and Save to file?

    I've written a program that allows me to launch other applications from it by having it dynamically generate buttons based on information in inifiles. I wrote it to get rid of the gazzillion shortcuts on my desktop. This all works just fine. But now I've gotten it in my head that I want to...
  12. BobbaFet

    Suggestions wanted: online database

    Ok, here is what I want to do: Here is what I want to do: - Check the processlist for all processes running and get their memory block MD5 checksum. Simple enough and already made. - Next I want to submit the checksum to an online database: here is how I think I am going to do that: I'll use a...
  13. BobbaFet

    Copy a screenshot from clipboard to TJPEGImage

    Hi all, What I am trying to do (and failing miserably at) is to develop a utility that will automatically take screenshot at semi-random intervals (aka between 15 and 45 seconds). I found this thread > thread102-392160 but it doesnt seem to work for me. Here is my code: procedure...
  14. BobbaFet

    Two questions about drawing on a TCanvas.

    Hi all, thanks for reading this. Here's the deal: I'm making an application that draws random figures on a random form using random styles sizes and everything. Just for the fun of it. Big fan of pretty colors hahaha. Here's my first question, I'm using the RGB format to generate the colors by...
  15. BobbaFet

    Center align the text of a TEdit?

    How would I achieve this? (I would explain more carefully then just the subject, but that's really all I want) Thanks a lot, BobbaFet [bobafett] BobbaFet [bobafett] if not Programming = 'Severe Migraine' then ShowMessage('Eureka!');
  16. BobbaFet

    Writing Error Handling Component

    Hey all, Here's what I want to do: I always get the same information from the error handling procedures I make for my applications. So what I want to do is make it into an component and be able to just drop it on the form and be done with it. Now I've tried to see how the ApplicationEvents...
  17. BobbaFet

    Getting an applications own version number

    Thanks for reading my question! Currently I'm writing the error handling code of my application. I've added things that interest me such as the time and date, error message, the error classname etc etc. But what I also want to add is the applications version number. The only thing I could...
  18. BobbaFet

    File types...

    Can someone please list for me all the file type extensions for webpages that can be read by notepad. I've done some research and have found the following: .htm .html .js .css .asp Are there any more that can be added to this list? I need this for a program that I am designing. Thanks a lot...
  19. BobbaFet

    Removing Duplicate Entries

    Hey all, Ok so what is going on is this: I've made a file processing utility and that in itself works fine. But here's something I've been wanting to add: I want to remove duplicate entries, sometimes there is duplicate data in the listbox that I am using. And here lies my problem: I can...
  20. BobbaFet

    Sort files in TListBox by file extension

    As above, how would I do this? I have one idea but it isn't very clean. 1. Turn Sorted off. 2. Loop through all files in the listbox getting their extension and put it infront of the same file 3. Turn it on and off again. 4. Loop through to remove all extensions again. It'll work but it's...

Part and Inventory Search

Back
Top