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: *

  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

    sending keyboard events

    Thanks Lucky-Luke i eventually found it. -Karl Karl Pietri http://www.crantorland.com
  3. 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...
  4. 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 =...
  5. 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...
  6. lordhuh

    Can anyone account for these extra bytes?

    If you still havent got it to work i belive this will, cause you are writing it out 1 byte at a time (in binary) and not telling it to write out the whole array. Dim strA As String Dim tmp() As Byte Dim fnum As Long ReDim tmp(3) ' Make dynamic to emulate problem discussed...
  7. 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...
  8. lordhuh

    Where does ICA client store cache items when no profile?

    Im new to citrix. But Loekje i asume when its caching its doing so on the local machine. If u are connecting from a 9x then it will put it in c:\windows\application data\ i think. seems most likely. otherwise i would check \profiles\default\application data Also i would like it if you could...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. 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
  14. 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
  15. 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...
  16. lordhuh

    ASP File Path

    set data2=objfso.opentextfile(datafile2, 8) data2.writeline(&quot;num&quot;) data2.close works perfict which means since its the same as your code yours works perfict. doing opentxtfile(file, 8) tells it to open it as append. meaning its opened and advanced to the bottom of the file Karl...
  17. 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
  18. 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...
  19. lordhuh

    random number between x and y

    ok let me clarify this. i wanted to know how to get a number between x and y. int num=rand(); will return a number between 1 and 0x7fff. msdn says that exact thing in the rand help. but it dosnt matter now i found some code on www.planetsourcecode.com and all i have to do now is...
  20. 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...

Part and Inventory Search

Back
Top