Click here to Skip to main content
15,922,145 members
Home / Discussions / C#
   

C#

 
GeneralAxWebBrowser - IHTMLSelectElement problem Pin
Romb16-Aug-05 7:18
Romb16-Aug-05 7:18 
Generallogin authentication Help needed Pin
ashkitt16-Aug-05 7:09
ashkitt16-Aug-05 7:09 
GeneralRe: login authentication Help needed Pin
Mohamad Al Husseiny16-Aug-05 9:46
Mohamad Al Husseiny16-Aug-05 9:46 
GeneralRe: login authentication Help needed Pin
ashkitt16-Aug-05 19:30
ashkitt16-Aug-05 19:30 
Questionplease help! this is urgent> how to retrieve data to my tabpage without using data form wizard? Pin
nidhelp16-Aug-05 6:59
nidhelp16-Aug-05 6:59 
AnswerRe: please help! this is urgent> how to retrieve data to my tabpage without using data form wizard? Pin
Mohamad Al Husseiny16-Aug-05 7:19
Mohamad Al Husseiny16-Aug-05 7:19 
GeneralRe: please help! this is urgent> how to retrieve data to my tabpage without using data form wizard? Pin
nidhelp16-Aug-05 7:41
nidhelp16-Aug-05 7:41 
GeneralRe: please help! this is urgent> how to retrieve data to my tabpage without using data form wizard? Pin
Mohamad Al Husseiny16-Aug-05 9:26
Mohamad Al Husseiny16-Aug-05 9:26 
I hope i understood what you need correctly
You want to display the data for the user which have Specific ID Is this OK?
if yes
if you got all the data of customer table for example into DataSet to filter the data by customer ID
Dataset DefaultView have Filter Property which you can set
And it will be filter the data
some thing like that
DataSet.Customers.DefaultView.RowFilter="CustomerID='XYZ'" ;

This will display onley the data of customer who have customerID='xyz'
So modify this code to work in your case
The other thing get the data you need only dont return all table and you really need few records to do this dont use some thing like
SELECT CustomeID,CustomerName,.. FROM Customers
You can get the data you only need by add Where Clause
like SELECT CustomeID,CustomerName,.. FROM Customers Where CustomerID='xyz'

MCAD
GeneralRe: please help! this is urgent> how to retrieve data to my tabpage without using data form wizard? Pin
nidhelp16-Aug-05 17:43
nidhelp16-Aug-05 17:43 
GeneralDataSet Pin
samoore16-Aug-05 5:37
samoore16-Aug-05 5:37 
GeneralRe: DataSet Pin
Alomgir Miah16-Aug-05 6:11
Alomgir Miah16-Aug-05 6:11 
GeneralRe: DataSet Pin
Mohamad Al Husseiny16-Aug-05 7:06
Mohamad Al Husseiny16-Aug-05 7:06 
GeneralSerialization Help Pin
comingsoon16-Aug-05 5:21
comingsoon16-Aug-05 5:21 
GeneralWinXP Events Pin
Member 217623716-Aug-05 5:07
Member 217623716-Aug-05 5:07 
GeneralRe: WinXP Events Pin
snouto16-Aug-05 7:58
snouto16-Aug-05 7:58 
GeneralRe: WinXP Events Pin
Mohamad Al Husseiny16-Aug-05 8:01
Mohamad Al Husseiny16-Aug-05 8:01 
GeneralPointers in C# Pin
praveenpreky16-Aug-05 4:18
praveenpreky16-Aug-05 4:18 
GeneralRe: Pointers in C# Pin
S. Senthil Kumar16-Aug-05 4:32
S. Senthil Kumar16-Aug-05 4:32 
GeneralRe: Pointers in C# Pin
praveenpreky16-Aug-05 4:38
praveenpreky16-Aug-05 4:38 
GeneralRe: Pointers in C# Pin
S. Senthil Kumar16-Aug-05 7:31
S. Senthil Kumar16-Aug-05 7:31 
GeneralRe: Pointers in C# -IntPtr Pin
praveenpreky16-Aug-05 18:39
praveenpreky16-Aug-05 18:39 
GeneralRe: Pointers in C# -IntPtr Pin
S. Senthil Kumar16-Aug-05 19:36
S. Senthil Kumar16-Aug-05 19:36 
GeneralRe: Pointers in C# -IntPtr Pin
praveenpreky16-Aug-05 20:14
praveenpreky16-Aug-05 20:14 
GeneralRe: Pointers in C# -IntPtr Pin
S. Senthil Kumar17-Aug-05 0:53
S. Senthil Kumar17-Aug-05 0:53 
GeneralRe: Pointers in C# -IntPtr Pin
praveenpreky17-Aug-05 3:53
praveenpreky17-Aug-05 3:53 

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.