Click here to Skip to main content
15,886,919 members
Home / Discussions / C#
   

C#

 
GeneralRe: Help Streaming Video Pin
amaankhan6-Oct-09 23:03
amaankhan6-Oct-09 23:03 
GeneralRe: Help Streaming Video Pin
Christian Graus6-Oct-09 23:36
protectorChristian Graus6-Oct-09 23:36 
GeneralRe: Help Streaming Video Pin
OriginalGriff7-Oct-09 3:01
mveOriginalGriff7-Oct-09 3:01 
QuestionDataBinding between a DataTable and a TextBox Pin
Kit Fisto6-Oct-09 22:29
Kit Fisto6-Oct-09 22:29 
AnswerRe: DataBinding between a DataTable and a TextBox Pin
Henry Minute7-Oct-09 2:45
Henry Minute7-Oct-09 2:45 
AnswerRe: DataBinding between a DataTable and a TextBox [modified] Pin
Kevin Marois7-Oct-09 5:22
professionalKevin Marois7-Oct-09 5:22 
GeneralRe: DataBinding between a DataTable and a TextBox Pin
Kit Fisto9-Oct-09 1:32
Kit Fisto9-Oct-09 1:32 
Questionplease help me : How to call Pl sql function return record type in C# Pin
sampath_dr6-Oct-09 22:16
sampath_dr6-Oct-09 22:16 
Hi all..
========================================
TYPE Public_Rec IS RECORD
(user_id SETUP_TAB.user_id%TYPE,
tool SETUP_TAB.tool%TYPE,
database SETUP_TAB.database%TYPE);
========================================
FUNCTION Get (
id_ IN VARCHAR2 ) RETURN Public_Rec
IS
temp_ Public_Rec;
CURSOR get_attr IS
SELECT user_id, tool, database
FROM SETUP_TAB
WHERE id = id_;
BEGIN
OPEN get_attr;
FETCH get_attr INTO temp_;
CLOSE get_attr;
RETURN temp_;
END Get;
========================================

can any one tell me how to this function and set return value to dataset.Confused | :confused: Confused | :confused:
AnswerRe: please help me : How to call Pl sql function return record type in C# Pin
Christian Graus6-Oct-09 22:18
protectorChristian Graus6-Oct-09 22:18 
GeneralRe: please help me : How to call Pl sql function return record type in C# Pin
sampath_dr6-Oct-09 22:37
sampath_dr6-Oct-09 22:37 
GeneralRe: please help me : How to call Pl sql function return record type in C# Pin
Christian Graus6-Oct-09 23:37
protectorChristian Graus6-Oct-09 23:37 
GeneralRe: please help me : How to call Pl sql function return record type in C# Pin
sampath_dr6-Oct-09 23:58
sampath_dr6-Oct-09 23:58 
QuestionGet screenshots Pin
yogeshdew6-Oct-09 22:13
yogeshdew6-Oct-09 22:13 
AnswerRe: Get screenshots Pin
Christian Graus6-Oct-09 22:18
protectorChristian Graus6-Oct-09 22:18 
GeneralRe: Get screenshots Pin
yogeshdew6-Oct-09 22:57
yogeshdew6-Oct-09 22:57 
AnswerRe: Get screenshots Pin
PIEBALDconsult7-Oct-09 4:39
mvePIEBALDconsult7-Oct-09 4:39 
GeneralRe: Get screenshots Pin
yogeshdew7-Oct-09 5:13
yogeshdew7-Oct-09 5:13 
QuestionHow to set an item in a object's property(of array type) using Reflection Pin
here2learn6-Oct-09 22:12
here2learn6-Oct-09 22:12 
AnswerRe: How to set an item in a object's property(of array type) using Reflection Pin
Nissim Salomon6-Oct-09 22:41
Nissim Salomon6-Oct-09 22:41 
GeneralRe: How to set an item in a object's property(of array type) using Reflection Pin
here2learn6-Oct-09 22:46
here2learn6-Oct-09 22:46 
AnswerRe: How to set an item in a object's property(of array type) using Reflection Pin
Mirko19806-Oct-09 23:47
Mirko19806-Oct-09 23:47 
GeneralRe: How to set an item in a object's property(of array type) using Reflection Pin
here2learn7-Oct-09 2:08
here2learn7-Oct-09 2:08 
GeneralRe: How to set an item in a object's property(of array type) using Reflection Pin
Mirko19807-Oct-09 2:48
Mirko19807-Oct-09 2:48 
QuestionHow to get item clicked event for ContextMenus Dropdown item clicked Pin
AhmedMasum6-Oct-09 21:50
AhmedMasum6-Oct-09 21:50 
AnswerRe: How to get item clicked event for ContextMenus Dropdown item clicked Pin
Saksida Bojan6-Oct-09 22:10
Saksida Bojan6-Oct-09 22:10 

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.