Click here to Skip to main content
15,896,329 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to save a webpage to a jpeg Pin
Nuri Ismail13-Jan-10 20:58
Nuri Ismail13-Jan-10 20:58 
Questionthird party components Pin
djsproject13-Jan-10 3:33
djsproject13-Jan-10 3:33 
AnswerRe: third party components Pin
Richard MacCutchan13-Jan-10 3:38
mveRichard MacCutchan13-Jan-10 3:38 
QuestionRe: third party components Pin
djsproject13-Jan-10 3:42
djsproject13-Jan-10 3:42 
AnswerRe: third party components Pin
Richard MacCutchan13-Jan-10 4:26
mveRichard MacCutchan13-Jan-10 4:26 
AnswerRe: third party components Pin
Ashfield13-Jan-10 5:07
Ashfield13-Jan-10 5:07 
AnswerRe: third party components Pin
Mirko198013-Jan-10 22:31
Mirko198013-Jan-10 22:31 
Questionneed suggestion for the code Pin
abcurl13-Jan-10 3:25
abcurl13-Jan-10 3:25 
Project 1

I have four classes

class1
this contains the variables, properties and constructors
suppose
private string abc;


Interface2
This contains interfaces
void a1();



class3
this will have function definitions. basically this will contains functions to do the
database interactions

public void a1()
{
 // code.....
}


class4
this will inherit Interface 2 and will override the definition.
public void a1()
{
 class3 a = new class3();
 a.a1();
}



Project 2

class5
this will have function
public static Interface2 Getclass4_Details()
{
    return new class4();
}



Project 3

In the form button click

i am doing

Interface2 Obj = null;
Obj = project2.class5.Getclass4_Details();
obj.a1();



I am approaching in the above way to do database interaction. Am I approaching i the right direction ?
AnswerRe: need suggestion for the code Pin
Richard MacCutchan13-Jan-10 3:41
mveRichard MacCutchan13-Jan-10 3:41 
GeneralRe: need suggestion for the code Pin
abcurl13-Jan-10 3:43
abcurl13-Jan-10 3:43 
GeneralRe: need suggestion for the code Pin
Richard MacCutchan13-Jan-10 4:29
mveRichard MacCutchan13-Jan-10 4:29 
AnswerRe: need suggestion for the code Pin
David Skelly13-Jan-10 4:23
David Skelly13-Jan-10 4:23 
GeneralRe: need suggestion for the code Pin
abcurl13-Jan-10 4:27
abcurl13-Jan-10 4:27 
GeneralRe: need suggestion for the code Pin
darkelv13-Jan-10 5:06
darkelv13-Jan-10 5:06 
QuestionC# VS 2008 3.5 Controlling volume with TrackBar Pin
Wheels01213-Jan-10 3:24
Wheels01213-Jan-10 3:24 
AnswerRe: C# VS 2008 3.5 Controlling volume with TrackBar Pin
Covean13-Jan-10 4:25
Covean13-Jan-10 4:25 
GeneralRe: C# VS 2008 3.5 Controlling volume with TrackBar Pin
Wheels01213-Jan-10 4:50
Wheels01213-Jan-10 4:50 
QuestionI need an ebay program Pin
totolcm13-Jan-10 2:21
totolcm13-Jan-10 2:21 
AnswerRe: I need an ebay program Pin
Luc Pattyn13-Jan-10 2:25
sitebuilderLuc Pattyn13-Jan-10 2:25 
GeneralRe: I need an ebay program Pin
totolcm13-Jan-10 2:35
totolcm13-Jan-10 2:35 
GeneralRe: I need an ebay program Pin
#realJSOP13-Jan-10 2:42
professional#realJSOP13-Jan-10 2:42 
GeneralRe: I need an ebay program Pin
Luc Pattyn13-Jan-10 2:51
sitebuilderLuc Pattyn13-Jan-10 2:51 
GeneralRe: I need an ebay program Pin
The Man from U.N.C.L.E.13-Jan-10 6:19
The Man from U.N.C.L.E.13-Jan-10 6:19 
GeneralRe: I need an ebay program Pin
Dave Kreskowiak13-Jan-10 6:32
mveDave Kreskowiak13-Jan-10 6:32 
AnswerRe: I need an ebay program Pin
0x3c013-Jan-10 2:28
0x3c013-Jan-10 2:28 

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.