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

    Retreiving data using an SQL string

    An alternative to retrieve the data using SQL. Hope this help. Dim Con as ADODB.Connection Dim RS as ADODB.Recordset Dim SQL as string ConString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=F:\BCT\BCT_be.mdb; Persist Security Info=False" SQL = "SELECT * FROM tblEmployeeInfo" Set Con =...
  2. lykeat

    List View Error - 35600

    Hi mattKnight: thanks for your helpful post. It solves my problem. I did practice to set the option explicit in my coding, but I never know that it can be do it automatically. Although it is less readable in ordinal form, but I feel that the performance is the most important issue. I heard that...
  3. lykeat

    List View Error - 35600

    Thanks, I'll try this out then feedback to u later. :)
  4. lykeat

    List View Error - 35600

    Microsoft Windows Common Controls 6.0(SP6) c:\windows\system32\mscomctl.ocx Hi, I am using the listview from the component category Microsoft Windows Common Controls 6.0(SP6), the ocx is mscomctl.ocx. I had no problem during the design time. After I compiled my code into .EXE, it will shows...
  5. lykeat

    CPU or Harddrive Unique Serial/Hardware Number

    Thanks to everyone. :)
  6. lykeat

    CPU or Harddrive Unique Serial/Hardware Number

    johnwm> Just for your notice, I did read the faq u listed above for many many times, and I also did some keyword search before posting any messages. By the way, the thread you mentioned is created by me. I really appreciate advice from you. :) I do have a suggestion for your consideration too...
  7. lykeat

    CPU or Harddrive Unique Serial/Hardware Number

    Zestman> I'm also trying to include the hardware information into my app. The solution that I found is getting the HDD serial number which can be change everytime the user format his/her computer. So, I'm trying to find out other hardware information. 1. Is the code reading the CPU ID directly...
  8. lykeat

    Serial Port Cash Drawer Control

    Hi there, now i have to connect cash drawer with a pc using serial port. And the technical support give me a code for control the cash drawer, but it is based on Qbasic programming and dos mode. Now i need to convert it to vb. Below is the code Qbasic open "com1:9600,n,8,1" for output as #1...
  9. lykeat

    Session handling

    Hi there. When I try to use the session to keep the user id, I faced some problems. In my script I use session_start(), but it shows me following error message. Warning: session_start() [function.session-start]: open(/tmp\sess_3e45e293685a508e85782a9390b384b6, O_RDWR) failed: No such file or...
  10. lykeat

    How to set Generic/Text Printer Font

    Hi Dan, it is different from the previous thread, my previous thread is how can a web browser print the draft mode font on Dot matrix printer. And after i ask for few person, i found a solution that is create a new generic/text only printer which available on every version of windows. Then on...
  11. lykeat

    How to set Generic/Text Printer Font

    Hi there, i have set a generic/text only printer to print my document with Dot matrix printer using browser. The font printer out is Draft 10 CPI. Now the question is how can i set the font to Draft 12CPI? Because 10CPI font will only have 80 characters per line, i can't print out more...
  12. lykeat

    Can IE print Dot Matrix printer font(Draft 10cpi)?

    Hi there, i just want to ask can IE support Dot Matrix type printer to print Draft mode font, for example Draft 10cpi. I have try to create a testing page using different web programming tools/languages that set the font to Draft 10cpi and the printer is Dot Matrix printer which can use Draft...
  13. lykeat

    Print with Dot Matrix Printer

    I have try this, but the result still the same, it still print the grafic mode text which very slow.
  14. lykeat

    Print with Dot Matrix Printer

    Hi there, now i'm trying to do a printing on dot matrix printer, i just want it to print with font "Draft 10 CPI" because it can print faster. I have try to set the font in my script, but it can't work, it still print the grafic mode which very slow. Can some one can let me know how can i set...
  15. lykeat

    how to backup Netscape 4.7 email

    Hi there, i'm using netscape 4.7 to read and store my email. Now i need to format my pc and reload everything. So, i need to backup my mail that store in Netscape. Can some one let me know which folder or type of file i need to copy. And also let me know how can i transfer this all emails back...
  16. lykeat

    How to capture pc hardware information

    hi there, i just want to ask how to capture the hardware information and then store into a txt file. Just like capture the harddisk, BIOS, Chipset registry or serial number which is unique for each computer. Now i'm trying to do some security function and need to capture this information. Thank...
  17. lykeat

    Simple calculation

    Hi there, just asking some simple calculation. Now i need to create a program that let user to key in a number, after that it will convert the number to an array that store the value start from a. For example, if a user key in 5, then the result will be {a,b,c,d,e}. If the number they key in...
  18. lykeat

    How to change the keyboard function

    Hi there, just want to ask is that any way to change the keyboard function, like when user press enter key, it will act like tab key. So is mean the enter key will become tab key. I need this because i need to change it for faster data entry. Regards, Henry
  19. lykeat

    Re : change screen resolution problem

    Ya, correct but the task bar also will not display out, only the windows can fix. And another thins is i'm running another application which run in full screen, it cannot made it minimize and then maximise again because it's no have any windows, is all in full screen. So, the solution not...
  20. lykeat

    Re : change screen resolution problem

    Hi there, i'm new in vb and now i'm using a script found in this forum, that is change the screen resolution to 800x600. I found that if i change the screen from 1024x768, the task bar will not display out and even the screen resolution alreay change, but the whole screen just like remain as...

Part and Inventory Search

Back
Top