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 wOOdy-Soft 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: klibby
  • Content: Threads
  • Order by date
  1. klibby

    Loading Image Sections of a .tga

    How would I go about opening a specific area of a targa file, also keeping transparency... ie. I want to open the section in some_pic.tga at 30,40... height - 20 pixels, width - 50 pixels.... so it loads only that part of the image, and keeps transparency
  2. klibby

    Need Wireless Ideas...

    This is the first I've used the network forums on this site, im normally on the VB or C++ forums.. but anyway, Im just posting to gather some ideas... I consider myself to be rather good with networks (setup my home network and made some apps to keep everything running in sync.. plus i do most...
  3. klibby

    Sorting a flatfile (Windows)

    OK.. I'm writing kind of a quiz thing and want to display a top ten scores list out of a flatfile database with all the scores... I've seen a bunch of examples of this, though all for Unix.. I want to sort with the first field... from highest to lowest scores so I can pull the first 10 lines...
  4. klibby

    "No Fonts Installed" (Common Dialog)

    I've had this problem before a long time ago... but I forgot how i fixed it... My problem is that when I go to use a common dialog... ----------- With ComDlg .ShowFont Fontname = .FontName End With ----------- When it gets to .ShowFont, it gives me an error saying: "There are...
  5. klibby

    Weird problem with Winsock...

    ok, I've worked with Winsock (6.0) a lot, made a bunch of network games and such and I have never had this problem. I'm making a remote administration tool, using winsock. after working on a start for the server, I made a cheapo client just to test the login part of it i made so far... which...
  6. klibby

    Simple question.. (Returning a value)...

    ok, i know i have some code i made with something like this somewhere but i cant seem to find it..... How do i make a subroutine return a value, like say you send information into it and have it spit out something else without having to take extra memory storing it in an extra variable... for...
  7. klibby

    DNS on XP Pro?

    Is it possible to host a network domain using XP Pro? or do I have to go get Win2k Server? I want the computers on my network to log into my server as a domain.... I know I have to install DNS services and DHCP Server.... but are those included in XP? if not? where can i find them.... and will...
  8. klibby

    Encryption.. Idea...

    I saw the movie "Along Came the Spider" a couple days ago... and I got an idea from it. In the movie they used an encryption technique where information.. text... was stored in an image. I thought I had heard about something like this, but I cant seem to find anything. If this does...
  9. klibby

    Server for Windows\Linux?

    kind of a simple question..... is there a way to make a server application where the socket works on both Windows systems and Unix(Linux) systems? if so, what would I use?
  10. klibby

    Using the Shell Command...

    I'm trying to make a simple program to display results of netstat.... I'm using the following code to run it... Dim lfile As String Private Sub mnuload_Click() Shell "netstat -aenrs >>C:\netstat.txt", vbHide lfile = "C:\netstat.txt" stat.LoadFile lfile End Sub pretty...
  11. klibby

    Execute code before closing with "x"

    Is there a way (most likely with API I would think..) to make it so... when a user exits the program by clicking the "x" at the top right, before closing, it executes a line of code?
  12. klibby

    Ideas needed to push a buddy list

    This should be the last question hehe.... im making an instant messenger app... right now, to push a buddy list, check to see who's online who's offline on the user's buddy list.. I have a timer on the client end which will, every 5 seconds, send a command to the server to check the names on...
  13. klibby

    Treeview - Right click (select?)

    ... probably a simple question with a simple solution but.. ummm... How would you make it so when you right click a node on a treeview list, it would select the item you right clicked on, and bring up a menu for that selected node? (i know how to bring up the menu.. just not how to select the...
  14. klibby

    Active X - Buddy List?

    Hi, I'm currently working on a little client-server instant messanger thing, like a cross between AOL Instant Messanger and ICQ for a gaming group... For now, I'm using a tree view list box as a buddy list (it has the looks and workability for one)... though it's not really optomized for a...
  15. klibby

    Convert Line Break to <BR> (flatfile)

    There's probably a simple solution to this...... I'm writing a script that will leave a multilined textbox like the one im typing this into so users can leave a comment.... the script will write the contents of this box, with some other info into a flatfile database.... though I need all the...
  16. klibby

    See if a system is up and running..

    I'm not sure if this is possible with Perl... but is there any way to take an IP address of a system running a web server and see if it is up or down, then return that to the Perl script so it can do something for whether it is up or down?
  17. klibby

    Simple question (Unix)

    Will a VB program run on Unix or Linux?
  18. klibby

    Online Patch?

    I've been working on an app for a game called EverQuest.... thats not really important to this question.. but anyway.... what I need to know how to do is... make something to compare files and the exe the user is running to files and the exe on my server, and patch the files and or exe as...
  19. klibby

    Exiting JUST a subroutine

    I may have found an answer to my previous question... theres just one thing I need to know in order for it to work... if you have in a perl script... <<CODE HERE>> while 1 = 1 { #just to show the loop continues &somesubhere; <<MORE CODE>> } sub somethinghere{ <<BUNCH OF IF STATEMENTS>> if (1...
  20. klibby

    directing if then statements...

    im writing a program that will look through a directory on a server, find all files in the directory with the extension .chr, open each one indivudually, then output a line on a table from each .chr file (flatfile database)...... I've added a search form on a script you get to before this...

Part and Inventory Search

Back
Top