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 Wanet Telecoms Ltd 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: lordhuh
  • Content: Threads
  • Order by date
  1. lordhuh

    Table Contents borders

    I really need the cell borders to show up in ie when there is no cell contents. HTML 4.0 says <table rules=all> should work but of course ie dosnt support it. http://cred.nvps.net/template.html (it looks a little buggy cause there is php in it. view source for a better look) one of my...
  2. lordhuh

    socket programing

    Hello i am trying to write a php script to monitor some tcp services running on our network. I use this code to get all the data off the port in one block. while(!feof($sock)){ $indata.=fgets($sock,256); } the code is roughly like this connect read all data off port send a...
  3. lordhuh

    Dreaded xp system tray.....

    Hello i am trying to get the xp system tray bubble popup to work :) i have this code but when i run it nothing happens (but the api function returns true!) any one got any ideas or working bubble code? Private Sub Command1_Click() Me.Show Me.Refresh With nid .cbSize =...
  4. lordhuh

    win xp system tray popup bubble thingy....

    Any one know of any info about the xp popup bubbles... it would be really usefull for my digital camera management app that resides entirly in the system tray for dishing out info. im looking to implement those instead of message boxes to inform user of events happening. thanks. -karl Karl...
  5. lordhuh

    sending keyboard events

    is there an api that will alow me to emulate keyboard presses at the windows level. i am going to be reading from a serial device and when i get a certain condition i want to be able to have my program type something to what ever window has focus (outside my program too). let me know if any...
  6. lordhuh

    config guide for ica win32 client. where is it?

    Hi i am trying to set up a citrix server to test it out with. i have the server all set up now im trying to do the clients. In the pdf file ICA_WINT32_guide it says for a detailed explination of the files that you configure go to there web site and find &quot;Configuration Guide for the ICA...
  7. lordhuh

    drive mapings

    Hi i am setting up citrix metaframe xpe trial version here and am wondering if there is a way to make it so that it does NOT map the client c drive and the server c, cdrom1, cdrom2 drives (or at least not make them show up). I know i saw something about this during setup but i was wondering if...
  8. lordhuh

    inserting a new record and getting its id

    i have my primary key a autoincriment integer field called ID. in another table i have them under a field to basically link a user with up to 2 fields. my problem is when i add a new record to table2 how would i get the ID value that it just got so i can stick it in a field in table 1. Karl...
  9. lordhuh

    All about if's

    I had this if decision structure in my code if blah=blah then if something=2 then end if elseif blah=blah2 then if something=2 then end if elseif blah=blah3 then else endif for some strange reason my code kept breaking with expected end if at the end. so thinking i missed somthing...
  10. lordhuh

    Good Beginer tutorial

    i need a good simple tutorial or faq or just a documentation of the commands and syntax to get going. i really hope this db program works. both access and mssql have refused to work for me. Please help. Thanks in advanded Karl Pietri http://www.crantorland.com
  11. lordhuh

    Database Howto

    Hi does anyone out there know a good beginers howto (including how to make a NEW sql database) The best thing would be basically like the msdn library of vb functions where it says what you put and what it does. Thnak you in advance. Karl Pietri http://www.crantorland.com
  12. lordhuh

    Access db connection falure

    using the connection string with {microsoft acesss.....} in it i get [Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0xda8 Thread 0x49c DBC 0x254d024 Jet'. i have read several articles and have found this string is...
  13. lordhuh

    access 2k database connection

    i have tryed every possible way i can find to connect with my database. i either get something about cannot open registry key or some permision thing. please can someone show me a corectly formed dsnless connection to a 2k database Karl Pietri http://www.crantorland.com
  14. lordhuh

    Need a good how to

    I am trying to be able to utalize clases in my programs. i have a very larg need for them in my next project and since i am new to c++ it would take forever in that. so i want to be able to make classes in vb. i know it can be done. does any one know of a good tutorial on making classes...
  15. lordhuh

    How do I read and write integers to a file from an array?

    me again with my c++ final project. i figured out the rand number thing (thank you planet source code). now im stumed again. i have a file that store info for an arrayed structure. some is int some is chararcter strings. my c++ class only covered fileio with strings not with integers. how...
  16. lordhuh

    random number between x and y

    i have been trying to get a way to get a psudorandom number between 2 numbers. rand() returns an integer between 1 and 0x7fff i have no idea what that converts to so its is really difficult to get a number from it. this is for my final project in c++ class and its due today. PLEASE HELP...
  17. lordhuh

    IE install problem

    i have encounter a small problem. when a program updates a sys file during the install it puts it somewhere in the registry and the makes u reboot. it then does the work during startup. Ocassionally this information is not removed. not really affecting the performance of the computer, but MS...
  18. lordhuh

    Not actually about c++ but mabey you fellas know

    i have encounter a small problem. when a program updates a sys file during the install it puts it somewhere in the registry and the makes u reboot. it then does the work during startup. Ocassionally this information is not removed. not really affecting the performance of the computer, but MS...
  19. lordhuh

    Not Actually about vb but mabey you fellas know

    i have encounter a small problem. when a program updates a sys file during the install it puts it somewhere in the registry and the makes u reboot. it then does the work during startup. Ocassionally this information is not removed. not really affecting the performance of the computer, but MS...
  20. lordhuh

    a qestion about functions (2 sets of parameters)

    i know in a class u can do this class clsAttack {public: void attack(clsPlayer* player, clsMonster* monster) { } void attack(clsMonster* monster, clsPlayer* player); { } } it will do 2 different things based on what parameters you pass it. how can i do that outside of a class. do i...

Part and Inventory Search

Back
Top