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

    How can I populate records in datagridview1?

    hahahaha I Got IT!!!!!!!!! fool am i.... I just need to put the "%" after my textbox1.text.... sorry.... :(
  2. Oliver76

    How can I populate records in datagridview1?

    hello again, it work at last.... but my "%" doesnt work huhuhu, for example, I want to display all my records beginning in letter M, like "mark, moore, matthew..." when i type "M" in my textbox1.text, it doesnt display the names beginning in "M".... i tried this.... but gives me same output...
  3. Oliver76

    How can I populate records in datagridview1?

    thank you very much jenbenson....
  4. Oliver76

    How can I populate records in datagridview1?

    I am using Mysql 5.0, and i'm having a hard time populating my records in my grid, this is supposed to be a search wherein i'm going to display the filtered records in my DataGridView1 object. here is my unfinished code: Dim connString As String = "Database=mydb;Data...
  5. Oliver76

    How to install vb6 to windows Vista

    Good day... I have an application written in VB6, but since I reformatted my PC and change my OS to Vista, I could not install my program(written in VB6). Is there any way to do it? Please help.... tnx oliver
  6. Oliver76

    How can i disable ctrl key to avoid Task Manager?

    How can I disable CTRL key in my program.... I'm trying to avoid ctrl+alt+del to stop an application. I'm working on a program for our computer laboratory wherein the students will logIn to a PC before he/she can use one... But what's happening is that, they just press ctrl+alt+del and stops...
  7. Oliver76

    How can I make my form1 in VB6 always on top....?

    tnx ousoonerjoe you've got my idea.... I found it here: http://support.microsoft.com/kb/184297/EN-US/ tnx a lot.......:)
  8. Oliver76

    How can I make my form1 in VB6 always on top....?

    hello... I have a logIn form in VB6 project, I want this LogIn.frm always on top of other applications whenever the program is in run time.... How can I do this? tnx
  9. Oliver76

    cant show my applet in WinXP

    good day... how can i show my applet in IE browser with WinXP OS? Whenever i try to run it, IE always says that it is blocked. And if i click on the message, and choose allow, my applet doesnt display at all. i tried to check all checkboxes in the browser folder option with regards to java but...
  10. Oliver76

    how to format a date using java

    tnx a lot
  11. Oliver76

    how to format a date using java

    i tried to use this line of code with mine above, but it gives me error when i compile my source file... is "SimpleDateFormat" a build-in class or included in java.util.*??? formatter = new SimpleDateFormat("dd-MMM-yy"); s = formatter.format(date); // 29-Jan-02 pls help me fix...
  12. Oliver76

    how to format a date using java

    tnx Miros...
  13. Oliver76

    how to format a date using java

    gud day... i've been having problem on how to format my date to mmm-dd-yyyy. in vb6 i do it like this........... txt1.text = format(txt1,"mmm-dd-yyyy") (i will put this in my applet) heres my code in java: public void paint(Graphics g) { g.setFont(theFont); // theFont my var setup...
  14. Oliver76

    Java Beans and NetBeans...Difference?

    gud day to all... i just started to read about java few days ago... and i cant get of thinking what is the difference between java beans and netbeans.... pls provide me easy to understand answers... tnx a lot in advance.... oliver
  15. Oliver76

    how to get rid of setup error msg....

    johnwm, yes, the app was created in win98. When i install in winxp it gives me the error msg.... 'C:/WINDOWS/TEMP/msftqws.pdw/(DLLSelfRegisterEx)' could not be registered because it was not found. thanx....thanx....thanx.... oliver
  16. Oliver76

    how to get rid of setup error msg....

    Good day, I created the setup package using package and deployment by Visual Studio, my program was created using Vbasic6. But when i install it in my computer (win98 OS) I always receive this msg. The file 'C:/WINDOWS/TEMP/msftqws.pdw/(DLLSelfRegisterEx)' could not be registered because it...
  17. Oliver76

    Where to download Barcode.ocx

    Dear Experts Am trying to create a program that will use barcode reader to search item with barcode, I've tried one but whenever i fire my barcode reader to the item, what appears in my textbox is the first number of the item barcode. It doesnt give me the whole barcode number. I need this...
  18. Oliver76

    how can i convert dbase file(file1.dbf) to text file (file1.txt)?

    Tnx CCLINT, I coded it like this but the output doesnt fit what I want. Is there something wrong? Please Help. here's my code: Private Sub Command1_Click() Dim i As Integer Open "C:\windows\Desktop\Export.txt" For Output As #1 For i = 1 To Data1.Recordset.RecordCount Print...

Part and Inventory Search

Back
Top