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 #4K
~4K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

14 Posted Topics

Member Avatar for dwayned

I find that combobox.SelectedValue doesnt work very well with database updates. I personaly use combobox.SelectedItem. Which sub are you having trouble with? paste just that one sub :) When you say updating your DB, I assume you mean adding new records? This is how i would do it; [code] Imports …

Member Avatar for InsitizrT
0
2K
Member Avatar for Member 784653
Member Avatar for raul15791
0
82
Member Avatar for detoxx

I'm currently in the process of creating a Windows application much like "Steam". The problem I'm having is that I need to be able to add new games to the list which auto generates a button and the code behind it. I have no idea how to do this. Can …

Member Avatar for detoxx
0
149
Member Avatar for OnlyDanny

the combo box in the SQL statement is wrong. it should read: [code]sql = "Select Unit_Price from Inventory_Price where ITem_Code = '" & combobox.SelectedItem & "' And Ending_Date is null" [/code] I hope this helps

Member Avatar for kvprajapati
0
122
Member Avatar for Ms.passion

That can be solved through the Access database itself. Look in the design view of the table and in the field properties you can set a primary key or set that particular field to allow null values

Member Avatar for Ms.passion
0
208
Member Avatar for naresh9876

[code]Imports System.Data.OleDb Public Class Form1 Private objconnect As OleDbConnection Private objcommand As OleDbCommand Private objreader As OleDbDataReader Private Sub BtnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnOK.Click objconnect = New OleDbConnection objconnect.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0; " & _ "Data Source = YOUR_DB.mdb" objcommand = New OleDbCommand objcommand.CommandText = "INSERT …

Member Avatar for kvprajapati
0
135
Member Avatar for Danny_501

for one, using the connection wizards are always harder than actually coding it yourself. It creates more problems than the worth of it, you will learn this in time. One thing I found when I used to use the connection wizards were that when I'd use the SQL query builder, …

Member Avatar for detoxx
0
97
Member Avatar for detoxx

Here is my problem. I'm creating a program for my workplace which stores hours worked, calculates pay and all that stuff. Problem being, the database will be accessed through the network and i want to be able to select the database from an openfile dialog on first use to locate …

Member Avatar for detoxx
0
149
Member Avatar for Aldius

steveneaster: Datatable is a function to do with the database controls not a table. Aldius: Its a bit long winded, but one way you could do this is through comma delimited view in a text box. You can read from the field names and input them into variables and use …

Member Avatar for detoxx
0
131
Member Avatar for TheSaboteur13
Member Avatar for detoxx

I hope you can help me. I'm working on a program that will open any Access database that might be on the system. The problem I'm having is that I cant get get the SQL statement to show all the tables within the database. The code im using is as …

Member Avatar for detoxx
0
115
Member Avatar for detoxx

Hi there. My problem is that when i click play to resume a paused song it starts the song from the beginning. I added an IF statement to the play button to say basically ... IF PAUSED THEN PLAY (RESUME) ELSE PLAY FROM IMPORT LIST. The problem with the IF …

0
65
Member Avatar for detoxx

Can anyone help me please? i need to create a program in which you enter a distance and the program will tell you how long it will take to get there in hours minutes and seconds. My trouble is that they all display independently and not seperately ... for example …

Member Avatar for sillyboy
0
273
Member Avatar for detoxx

Hi, im new to this forum, and searched for everything to do with 2D array, but found nothing to no real avail. My problem is that i have to write a 2D array in pascal that stores 15 student ID's and 5 marks for each student. I've managed to write …

Member Avatar for Clive29
0
158

The End.