Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #3K
~11.0K People Reached
About Me

"success will come if you have the confidence"

PC Specs
Inter(R) Core(TM) i5-3210M CPU @ 2.50GHZ
Favorite Tags

44 Posted Topics

Member Avatar for arezz09

hello.. i have problem load two data from different table and column.. for example, each data from product table into product combobox and brand table to brand combobox..i succussfully load data to combobox but got multiple same data into combobox.. Dim conn As New OleDbConnection("Provider=Microsoft.Jet.OleDb.4.0;Data Source=" & Application.StartupPath & "\mydatabase.mdb;Jet …

Member Avatar for ryanjayson
0
2K
Member Avatar for arezz09

i has 500gb hitachi external drive...i have divide to 4 partition...Whenever i plug in my external hard drive in computer, it detect but when i open "my computer", the window explorer just freezes and the green ribbon shows up, moves very slowly, and eventually stops at some point. i can …

Member Avatar for sheikhali449
0
176
Member Avatar for arezz09

i need to build wedding card webased system...so i need to create a gallary for wedding card with card information. How to upload that picture into gallary and next time i can delete it back or update information about that picture information..

Member Avatar for seslie
0
96
Member Avatar for rotten69

i think, u should delete all partition n create all partition again...

Member Avatar for rotten69
0
313
Member Avatar for Dean_Grobler
Member Avatar for razamughal67

try this.... [Link Anchor Text](http://www.softpedia.com/get/System/Hard-Disk-Utils/HP-USB-Disk-Storage-Format-Tool.shtml) ... if doesnt work..try format again and in format process, u cancel it..after that go to computer and formt yr usb...

Member Avatar for razamughal67
0
253
Member Avatar for arezz09

how can I make vb.net application online. Is it possible? so it's can be access from anywhere..

Member Avatar for JorgeM
0
103
Member Avatar for RonKevin
Member Avatar for jhedonghae

try this if u using access database... Dim conAccess As OleDb.OleDbConnection conAccess = New OleDb.OleDbConnection conAccess.ConnectionString = "Provider=Microsoft.Jet.OleDb.4.0;Data Source=" & Application.StartupPath & "\mydatabase.mdb;Jet OLEDB:Databse Password=123456;" // put the password at the end of the connection... it should work

Member Avatar for jhedonghae
0
471
Member Avatar for arezz09

i have 2 form. form 1 have combobox and second form textbox...how to load data form textbox into combobox..if i type hitachi in text box, automatictly "hitachi" will save in dropdownlist combobox...anyone..please help me...

Member Avatar for ananth3125
0
210
Member Avatar for arezz09

how to combine this 2 statment.. [CODE] IsConnected("Select * from manager_table", False) Call Loader() IsConnected("Select * from Clerk_table", False) Call Loader()[/CODE] i hve 2 listview, 2 table from accessdatabase..i put listview in tabcontrol..1 in tab 1 & second in tab 2...

Member Avatar for Jx_Man
0
122
Member Avatar for arezz09

i founds this code to search data in datagrid.. [CODE]Me.BS.Filter = "date = " & DateTimePicker.text "'"[/CODE] what BS mean & are this code true ??

Member Avatar for debasisdas
0
89
Member Avatar for arezz09

i hve crete information application... i using this code to save employee information into accessdatabase [CODE]If _contactIC = 0 Then sql = "insert into employee_table (firstname,lastname,ic,address,gender,phone,status)" & "values ('" & firstname.Text & "','" & lastname.Text & "','" & em_id.Text & "','" & em_address.Text & "','" & em_gender.Text & "','" & …

Member Avatar for debasisdas
0
139
Member Avatar for arezz09

i using this code to load data from accessdatabase to 2 combobox [CODE] Dim cmd As OleDbCommand = New OleDbCommand("SELECT product,model FROM combo_table", conn) conn.Open() Dim sdr As OleDbDataReader = cmd.ExecuteReader While sdr.Read() old_product.Items.Add(sdr.Item("product").ToString) old_model.Items.Add(sdr.Item("model").ToString) End While conn.Close() conn = Nothing[/CODE] [ATTACH]20620[/ATTACH] use can see in this picture hve 2 …

Member Avatar for P.manidas
0
103
Member Avatar for arezz09

i hve 2 form..first for insert dat & second for preview data..i'm using datagrid to preview data from accessdatabase.. how to make datagrid automaticly load data form database after insert new data..data grid only load after i relaunch my application...do i need create refresh button or anything else??

Member Avatar for Jx_Man
0
165
Member Avatar for arezz09

can i make idle system for my application...so when user login system & idle for 30 minutes, system automaticly logoff... i only hve code in c#...anyone help me..

Member Avatar for arezz09
0
86
Member Avatar for arezz09
Member Avatar for eileenc87

mybe u must add new datasource from menu bar,choose Data... urm...u binding data to ??

Member Avatar for eileenc87
0
632
Member Avatar for Saikalyankumar

u mean, when u click choose items in toolbox, yr application form close.. are choose toolbox items not display when u click choose items on right click??

Member Avatar for debasisdas
0
175
Member Avatar for eileenc87
Member Avatar for arezz09

in form hve 1 datagrid, 1 microsoft reportviewer and 1 textbox.. all data in datagrid binding from access database.. i put this code in textbox to search data in datagrid and automaticly data will preview in reportviewer..in data grid hve 2 column, like product & model.. [CODE] Me.Product_listTableAdapter.FillByproduct(Me.MydatabaseDataSet.Product_list, TextBox1.Text) Me.ReportViewer1.RefreshReport()[/CODE] …

Member Avatar for arezz09
0
90
Member Avatar for arezz09

i using datagrid and all contents in datagrid from accessdatabase (using dataset) i hve this in query builder.. SELECT product, model, stockIn, dateIn, allQuantity, stockOut, dateOut FROM Product_list WHERE (model LIKE ? + '%') can i search by multiple column like product & model in 1 texbox & 1 more …

0
84
Member Avatar for arezz09

how to make search button for datagrid that can search by any thing that i hve set..for example smething like this but i use this code for listview [CODE] IsConnected("Select * from manager_table Where firstname like '" & Me.TextBox1.Text & _ "%' or status like '" & Me.TextBox1.Text & "%' …

0
60
Member Avatar for arezz09

i hve create 1 listview and all data from accessdatabase (using oledbconnection) in database hve 4 column, so in listview 4 column.. can i view only 2 column in listview, example only column 1 & 2 only in listview.. i using this code [CODE] ListView.Items.Clear() While (myDR.Read()) With ListView.Items.Add(myDR("column1")) .SubItems.Add(myDR("column2")) …

Member Avatar for debasisdas
0
135
Member Avatar for arezz09

i hve create 1 listview & checkbox inside listview...how to print check item in listview..

Member Avatar for dxider
0
109
Member Avatar for arezz09

i has create system registration that use vb.net 2008 & accessdatabase (oledb connection) i set ID as primary key,when i insert new ID but if ID already in database i will get error cz data duplicates..so anyone know any code that will promp mesej like this "Data already in data …

Member Avatar for Jx_Man
0
569
Member Avatar for arezz09

i hve build 1 system inventory using vb.net 2008...can i run execute file from browser...maybe like in asp.net..

Member Avatar for debasisdas
0
88
Member Avatar for arezz09

i hve create crystal report in vb.net 1 accessdatabase with password..using oledb connection when i wont to print data using crystal report, it will ask a password cz i have set database with password.. do i set password in crystal report or anywhere cz i dont know, so nexttime i …

Member Avatar for debasisdas
0
113
Member Avatar for arezz09

1. i hve create school system...so when register new student i want to upload their picture in folder,not database...when upload, all student picture will be in same folder like student picture.. 2. i'm using listview to view all student information,so i want picture display in listview column..

Member Avatar for codeorder
0
162
Member Avatar for arezz09
Member Avatar for arezz09

i create 2 combobox in form, comboproduct & combomodel. i using accessdatabase and using oledbconnection..database in debug folder... i create 1 table, i name it"stock" & 2 column.. first column is product,second model.. i wont load data in product column into comboproduct and model to combomodel..like binding data.. anyone help …

Member Avatar for arezz09
0
330
Member Avatar for arezz09

anybody knw how to build system inventory that multiuser..1 server and 1 more is client using lan connection..i dont no keyword to search in google..

Member Avatar for debasisdas
0
90
Member Avatar for arezz09

i hve create checkbox in listview.. how to export check item in list view to crystal report, so i can print item that i hve check.....anyone..

Member Avatar for arezz09
0
101
Member Avatar for arezz09

i have create a checkbox in listview...so i wanna know how to check it and export only check item to crystal report so i can print item that i have check... please anyone help me..

Member Avatar for codeorder
0
295
Member Avatar for arezz09

i have create 2 form , 1 database 1 textbox and 1 button reset in form 1 = "fill current username" = textbox1, button = reset.... 3 text and 1 button on form 2...new username = textbox 3,new password = textbox4,confirmpass = textbox5 and 1 button "sign up"..i just wondering, …

Member Avatar for arezz09
0
346
Member Avatar for arezz09

first.. i hve create combobox & text box and add database source to my project... i know how to binding data or load data to combobox using SELECT query.. but can i change SELECT to INSERT query cz i wont when i type data into textbox,data will be in database... …

Member Avatar for Jx_Man
0
107
Member Avatar for arezz09

i get this error when add database source...anyone help me...[ATTACH]19437[/ATTACH]

Member Avatar for arezz09
0
87
Member Avatar for arezz09
Member Avatar for arezz09
0
185
Member Avatar for arezz09

first i create 1 form, 1 picture box and 1 button.. i name button like upload...when i click upload button, i can browse picture..so after i click a picture,automaticly picture will set in picture box and 1 folder like mypicture will be create on C:// and that picture will be …

Member Avatar for Jx_Man
0
1K
Member Avatar for arezz09

can i chnge all button font color on every form that i hve create. .i just want to click 1 button and it show menu choose color..

Member Avatar for codeorder
0
287
Member Avatar for arezz09

anybody know how to upload or set piture into windows form using code..i want create a button like browse that can chnge background and every i relaunch application,bckground is still there..please anybody..

Member Avatar for codeorder
0
295
Member Avatar for arezz09

anybody know how to load 1 column data from accessdatabase into combobox item...i mean, i have 1 table " info_table and 1 column "product..so in product column have data like nokia and sony"..i want nokia and sony to be load into combobox item or dropdownlist...anybody help me...

Member Avatar for cyberdaemon
0
68
Member Avatar for arezz09
Member Avatar for codeorder
0
128
Member Avatar for arezz09
0
77

The End.