• Member Avatar for matoo
    matoo

    Edited a Post in vb6 listview

    i used do until loop dim rsStockChk as new adodb.recordset set rsStockChk = new adodb.recordset rsStockChk.open "stocks", gobjconn, adopendynamic, adlockpessimistic do untill rsStockChk.eof = true dim listobj as listitem set …
  • Member Avatar for matoo
    matoo

    Replied To a Post in vb6 listview

    i used do until loop dim rsStockChk as new adodb.recordset set rsStockChk = new adodb.recordset rsStockChk.open "stocks", gobjconn, adopendynamic, adlockpessimistic do untill rsStockChk.eof = true dim listobj as listitem set …
  • Member Avatar for matoo
    matoo

    Began Watching vb6 listview

    How to insert another row value in the listview of vb6? Thanks, - Jeff -
  • Member Avatar for matoo
    matoo

    Marked Solved Status for STRING as button name

    HI everyone i am trying to write POS and Inventory for myself in vb6. I am stuck and gone blank what to do. here is what i want to do. …
  • Member Avatar for matoo
    matoo

    Replied To a Post in STRING as button name

    thank you so much it worked as a charmed. dim y as control for each y in controls if typeof y is commandbutton then if y.name = strbuttonmame then y.caption …
  • Member Avatar for matoo
    matoo

    Replied To a Post in STRING as button name

    let me put it like this i have 10 button ex. b1 b2 b3 ..... b10 we know the names of the buttons for example b1.caption = Coke 250ml when …
  • Member Avatar for matoo
    matoo

    Replied To a Post in STRING as button name

    I am writting in vb6 cause i am little use to it for other ver like .net i will have to go through studies again
  • Member Avatar for matoo
    matoo

    Edited STRING as button name

    HI everyone i am trying to write POS and Inventory for myself in vb6. I am stuck and gone blank what to do. here is what i want to do. …
  • Member Avatar for matoo
    matoo

    Edited a Post in STRING as button name

    HI everyone i am trying to write POS and Inventory for myself in vb6. I am stuck and gone blank what to do. here is what i want to do. …
  • Member Avatar for matoo
    matoo

    Created STRING as button name

    HI everyone i am trying to write POS and Inventory for myself in vb6. I am stuck and gone blank what to do. here is what i want to do. …
  • Member Avatar for matoo
    matoo

    Began Watching STRING as button name

    HI everyone i am trying to write POS and Inventory for myself in vb6. I am stuck and gone blank what to do. here is what i want to do. …
  • Member Avatar for matoo
    matoo

    Created Creat your own .setfocus

    hi there everyone this sounds sily but i am trying to make a calendar which will show attendance on the calander what i want is to stop on the todays …
  • Member Avatar for matoo
    matoo

    Began Watching Creat your own .setfocus

    hi there everyone this sounds sily but i am trying to make a calendar which will show attendance on the calander what i want is to stop on the todays …
  • Member Avatar for matoo
    matoo

    Revoked Solved Status for loading picture according to membership number

    Hi there Everyone I am writting a program POS in which i have employees database. they get a code or we can say employee ID numbers. 100001 100002 100003 now …
  • Member Avatar for matoo
    matoo

    Marked Solved Status for loading picture according to membership number

    Hi there Everyone I am writting a program POS in which i have employees database. they get a code or we can say employee ID numbers. 100001 100002 100003 now …
  • Member Avatar for matoo
    matoo

    Replied To a Post in loading picture according to membership number

    Dim ImageFileName As String Dim ImageFilePath As String ImageFileName = LblEmpCode.Caption ImageFileName = ImageFileName & ".jpg" ImageFilePath = App.Path ImageFilePath = ImageFilePath & "\Images\EmpPic\" ImageFilePath = ImageFilePath & ImageFileName Picture1.Picture …
  • Member Avatar for matoo
    matoo

    Created loading picture according to membership number

    Hi there Everyone I am writting a program POS in which i have employees database. they get a code or we can say employee ID numbers. 100001 100002 100003 now …
  • Member Avatar for matoo
    matoo

    Began Watching loading picture according to membership number

    Hi there Everyone I am writting a program POS in which i have employees database. they get a code or we can say employee ID numbers. 100001 100002 100003 now …
  • Member Avatar for matoo
    matoo

    Replied To a Post in VB yes no problem

    thanks reverend jim my mistake thanks for pointing out i use response in what ever code i write for myself so in the description they were using reply and i …
  • Member Avatar for matoo
    matoo

    Began Watching VB yes no problem

    can you please help me in my code MsgBox "Are you sure you want to Logout?", vbYesNo, "Confirmation" If vbYes Then Unload Me frmAuthentication.Show End If how can i have …
  • Member Avatar for matoo
    matoo

    Replied To a Post in VB yes no problem

    Dim responce As Integer responce = MsgBox("Are you sure you want to Logout?", vbYesNo, "Confirmation") If reply = vbYes Then Unload Me frmAuthentication.Show else exit sub End If
  • Member Avatar for matoo
    matoo

    Began Watching How to Detect Key in VB 4,5,6

    Can any body tell me how can I detect Key press when my focus is not on the Form, Like I've Hidden The Form and I want to make it …
  • Member Avatar for matoo
    matoo

    Replied To a Post in How to Detect Key in VB 4,5,6

    or what you can do is use a timmer in Hidden Form when ever you lose focus of that hidden form the timmer becomes activated and then you can get …
  • Member Avatar for matoo
    matoo

    Marked Solved Status for database search

    I am trying to write program in vb6.0, in which i am using ms access database. i want to search in a table called "customer". the Field is called "Name". …
  • Member Avatar for matoo
    matoo

    Replied To a Post in database search

    rsCSearch.Open "SELECT * FROM Customer WHERE CName LIKE " & "'" & TxtCSearch.Text & "%'", gobjConn, adOpenStatic, adLockOptimistic got it working % was missing thanks for your time
  • Member Avatar for matoo
    matoo

    Replied To a Post in database search

    i tried the links you send but my problem is still there let me tell little more what i want and what i am getting there is table called "Customer" …
  • Member Avatar for matoo
    matoo

    Began Watching How to connect my VB6 to Access Database? And how to update fields?

    I have a problem in updating my textfields in the table I posted in my form. For example for my inventory system, I want the QUANTITY of my products to …
  • Member Avatar for matoo
    matoo

    Replied To a Post in How to connect my VB6 to Access Database? And how to update fields?

    Dim gobjConn As ADODB.Connection Set gobjConn = New ADODB.Connection gobjConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" _ & "Data Source=" _ & GetAppPath _ & "path and filename.mdb" Dim rAdd As ADODB.Recordset Set rAdd = …
  • Member Avatar for matoo
    matoo

    Began Watching visual basic 6 adodc multiple record with the same key

    Well i'm trying to create a form in VB6 to control my database that was created by access, i did everything and everything went perfect,until i notice that if you …
  • Member Avatar for matoo
    matoo

    Replied To a Post in visual basic 6 adodc multiple record with the same key

    you can write a code in the lostfocus of that textbox to search that number which you entered in the database if found it give you message box telling you …
  • Member Avatar for matoo
    matoo

    Began Watching Auto Number in Textbox

    My project have invoice no.I want to run the invoice no.in Auto Number.please help with the right code.
  • Member Avatar for matoo
    matoo

    Replied To a Post in Auto Number in Textbox

    i use my own auto number by this method first of all load the last entery then adding 1 in that entery eg Dim DBConn As ADODB.Connection Set DBConn = …
  • Member Avatar for matoo
    matoo

    Created database search

    I am trying to write program in vb6.0, in which i am using ms access database. i want to search in a table called "customer". the Field is called "Name". …
  • Member Avatar for matoo
    matoo

    Began Watching database search

    I am trying to write program in vb6.0, in which i am using ms access database. i want to search in a table called "customer". the Field is called "Name". …

The End.