Search results for query: *

  1. J

    Type 'CheckIn.CheckInBidderItemsDataSet' is not defined.

    Need help on how to solve this dataset problem. Every time i add datagridview on my webform this error message always showup. Me.CheckInBidderItemsDataSet = New CheckIn.CheckInBidderItemsDataSet() <---- always suggesting to choose the global.checkin.CheckInBidderItemsDataset()...
  2. J

    Sending data/textbox value to thermal printer

    Yes! i will sir ian. I am actually curious about the use of "e" variable. I will study and go deeper on this so i could relay the knowledge too to my co-programmer. Thank you again for your continued guidance and support to all the newbies in vb.net programming especially me.
  3. J

    Sending data/textbox value to thermal printer

    Sir Ian, Good afternoon! Your script works! its awesome! I will study the other printing option especially in working with multiple data rows. excited to move forward! Thank you again sir ian!
  4. J

    Sending data/textbox value to thermal printer

    Thank you sir Ian for your help. I will incorporate this script and will update you if it solve my problem. Being new to vb.net programming is really difficult but i find it so interesting now. Thanks again!
  5. J

    Sending data/textbox value to thermal printer

    This is my first Printing of data experience in vb.net: I need help on how to send DATA/TEXTBOX value to thermal printer. I am sending the following to thermal printer with 2 font size. -- Company logo -- Queuing Number -- font size 55 -- Date and Time -- font size 8 I need an output that...
  6. J

    Question OleDbException was unhandled. Could not use "checkin.mdb". File already in use...

    Now it works fine... thank you so much for your advise. procedure i made: 1st: I change the connection string to "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\checkin.mdb;Persist Security Info=false;Jet OLEDB:Database Password=;" 2nd: I copy the mdb file to DataDirectory...
  7. J

    Question OleDbException was unhandled. Could not use "checkin.mdb". File already in use...

    Thank you so much JuggaloBrotha for your reply. I will apply the code you suggested and post soon the result.
  8. J

    Question OleDbException was unhandled. Could not use "checkin.mdb". File already in use...

    OleDbException was unhandled. Could not use "checkin.mdb". File already in use... Need help on how to avoid this error message. The database i am using is an MS Access 2003 mdb file. I develop the system in VS 2010 with 6 users for this database. every time the second user open's the system it...
  9. J

    Question select data in Listbox through Textbox TextChange value?

    guys, thank you so much for your reply. i already solve my problem. this is the script i made. With BiddersList .DataSource = Me.AIA052004_beDataSet.BiddersFullNameQry.Select("Fullname like '%" & Me.txtSearchBidder.Text & "%'") End With
  10. J

    Question select data in Listbox through Textbox TextChange value?

    Yeah your right, specific search in listbox should perform every time i enter a character in the textbox. Is there any way to perform this event? thanks Dunfiddlin.
  11. J

    Question select data in Listbox through Textbox TextChange value?

    I am trying to create a webform that List down all the Customers Fullname, and through textbox input i should find name in listbox. ListBox has a DataSource, and DisplayMember ---------------------- DataSource: BiddersFullnameQuery DisplayMember: Fullname ---------------------- this is code...
Back
Top