- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Simple lang pero rock! :P
14 Posted Topics
Re: Try this.. In Menu Bar click "Build" then Clean your solution and rebuild it after. | |
Hi, I just need a little help here. I have no experience in syncronization of databases of any type and I think I need it in my project now. I developed a CATV (Cable TV) Billing Software in VB.Net for all cable system branches of our company and I use … | |
Hi, I just need some help in aligning 2 barcodes in just 1 line in receipt using epson standard (ESC/POS). I manage to print barcodes in all kinds of symbology but I can't align 2 barcodes in just 1 line. Please check my codings below. Thank you in advance. Friend … | |
Does anyone knows how to print 2 or more pages in Reportmax rpm file? I already tried playing with possible codes in reportmax preview but I can't get the right output.. It always display the 1st page. Thanx a lot in advance. | |
Re: Click your form and set your background image in properties. Simple as that, no need for codes :) | |
Re: Using conn as New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source= .\BD.mdb") conn.Open Dim command As New OleDbCommand("Insert into table_Name (field1, field2, field3) values (@field1, @field2, @field3)", conn) With command.Parameters .AddWithValue("@field1", datagridview1.rows(0).Item(0).Value) .AddWithValue("@field2", datagridview1.rows(0).Item(1).Value) .AddWithValue("@field3", datagridview1.rows(0).Item(2).Value) End With command.ExecuteNonQuery() command.Dispose() conn.Close() End Using I hope you get the Idea :) | |
Hi, I just need some help on how will I retrieve the last row ID(auto-increment) value of my database(ms acccess) and display into a textbox? thanx in advance | |
Hello, I ajust need a help here. I have 2 tables in my database (ms access) table1 = employees table2 = eID In employees table I have a column name "myimage" in "OLE Object" data type I just want to copy the cell value in table "employees" at column "myimage" … | |
Hi, I just wanna ask what's the problem with my code in retrieving image from database into a picturebox. Private Sub ShowDetails() Try Dim cn As New OleDb.OleDbConnection Dim cmd As OleDb.OleDbCommand Dim dr As OleDb.OleDbDataReader cn.ConnectionString = mstrConnection cn.Open() cmd = cn.CreateCommand() cmd.CommandText = "SELECT myimage FROM employees WHERE … | |
Hello! I need a help from my code in filtering the male/female regular/contractual employees. Scenario: I have 4 checkboxes the 'cbox' for contractual, 'rbox' for regular, 'mbox' for male and 'fbox' for female. What I wanted to happen is when I check 'mbox' it will display male employees in as … | |
I just wanna ask what's wrong with my code it says syntax error on INSERT STATEMENT but I can't find the error @.@ Try Using conn As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & System.Environment.CurrentDirectory & "\employeedb.mdb;") conn.Open() Dim command As New OleDbCommand("INSERT INTO employees (first_name, last_name, MI, address, age, contact, status, department, … | |
I'm trying to search on how to store the image in a local folder and save its path and filename in ms access using vb.net but a lot of topic makes it more confusing for me. I'm just a student and working on my baby thesis. I'm currently building an … | |
Hi, I need a little help here. I'm Using vs 2005 with ms access 2003 database and finding myself how to get rid of this error "Syntax Error on UPDATE Statement" can you take a look at my codes below and tell me what's wrong? Thank you. Public Class Transactions … | |
Hello, Cab I ask some help for my project? I'm using datagridview to add, edit and search items in ms access table. I already fixed the search button to work and it displays the selected row when I enter the ID value on textbox. My problem now is how will … |
The End.