Click here to Skip to main content
15,921,837 members
Home / Discussions / Database
   

Database

 
QuestionSearching through multiple fields Pin
monrobot1313-Sep-06 17:47
monrobot1313-Sep-06 17:47 
AnswerRe: Searching through multiple fields Pin
Dinuj Nath13-Sep-06 18:23
Dinuj Nath13-Sep-06 18:23 
GeneralRe: Searching through multiple fields Pin
monrobot1314-Sep-06 16:22
monrobot1314-Sep-06 16:22 
GeneralRe: Searching through multiple fields Pin
Dinuj Nath14-Sep-06 19:23
Dinuj Nath14-Sep-06 19:23 
GeneralRe: Searching through multiple fields Pin
monrobot1315-Sep-06 10:55
monrobot1315-Sep-06 10:55 
GeneralRe: Searching through multiple fields Pin
Dinuj Nath17-Sep-06 18:35
Dinuj Nath17-Sep-06 18:35 
QuestionProblems in using single dataset in different VB FORMS Pin
Zafar Ayub13-Sep-06 5:55
Zafar Ayub13-Sep-06 5:55 
AnswerRe: Problems in using single dataset in different VB FORMS Pin
Stephen McGuire13-Sep-06 12:23
Stephen McGuire13-Sep-06 12:23 
One should be DisplayMember (the column that you want displayed in your combo), the other should be ValueMember (the column that represents the data you want to store).

For example, if you have a table with columns ID and Description, you could set your DisplayMember to 'ID' and your ValueMember to 'Description'.
On your form, you will see the value in the Description displayed in your combo but you will actually store the corresponding ID when updating your DataSet.

CobmoBox1.DisplayMember = "ID"
CobmoBox1.ValueMember = "Description"

Steve
QuestionRe: Problems in using single dataset in different VB FORMS Pin
Zafar Ayub13-Sep-06 23:12
Zafar Ayub13-Sep-06 23:12 
AnswerRe: Problems in using single dataset in different VB FORMS Pin
Stephen McGuire14-Sep-06 1:22
Stephen McGuire14-Sep-06 1:22 
QuestionAccess misunderstanding - MAYDAY!!! Pin
eMtek13-Sep-06 5:48
eMtek13-Sep-06 5:48 
AnswerRe: Access misunderstanding - MAYDAY!!! Pin
Rob Graham13-Sep-06 10:55
Rob Graham13-Sep-06 10:55 
GeneralRe: Access misunderstanding - MAYDAY!!! Pin
eMtek13-Sep-06 11:04
eMtek13-Sep-06 11:04 
GeneralRe: Access misunderstanding - MAYDAY!!! Pin
Eric Dahlvang13-Sep-06 12:14
Eric Dahlvang13-Sep-06 12:14 
GeneralRe: Access misunderstanding - MAYDAY!!! Pin
eMtek13-Sep-06 20:56
eMtek13-Sep-06 20:56 
QuestionWhere Clause with Result from a Stored Procedure [modified] Pin
Naidooy13-Sep-06 2:37
Naidooy13-Sep-06 2:37 
AnswerRe: Where Clause with Result from a Stored Procedure Pin
Not Active13-Sep-06 3:15
mentorNot Active13-Sep-06 3:15 
GeneralRe: Where Clause with Result from a Stored Procedure Pin
Naidooy13-Sep-06 3:44
Naidooy13-Sep-06 3:44 
AnswerRe: Where Clause with Result from a Stored Procedure Pin
Eric Dahlvang13-Sep-06 3:48
Eric Dahlvang13-Sep-06 3:48 
QuestionSQL Trigger not working on update statement Pin
BSRK13-Sep-06 1:22
BSRK13-Sep-06 1:22 
AnswerRe: SQL Trigger not working on update statement Pin
differenceengine17-Sep-06 2:43
differenceengine17-Sep-06 2:43 
QuestionSQL Trigger not working on update statement Pin
BSRK13-Sep-06 1:21
BSRK13-Sep-06 1:21 
AnswerRe: SQL Trigger not working on update statement Pin
Eric Dahlvang13-Sep-06 3:42
Eric Dahlvang13-Sep-06 3:42 
AnswerRe: SQL Trigger not working on update statement Pin
Chris Meech13-Sep-06 10:01
Chris Meech13-Sep-06 10:01 
GeneralRe: SQL Trigger not working on update statement Pin
Eric Dahlvang13-Sep-06 11:38
Eric Dahlvang13-Sep-06 11:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.