Click here to Skip to main content
15,915,850 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: typed datset, refilling problem Pin
steve_rm8-Mar-07 16:20
steve_rm8-Mar-07 16:20 
QuestionSave As Pin
Anybloodyid1-Mar-07 11:39
Anybloodyid1-Mar-07 11:39 
AnswerRe: Save As Pin
Dave Kreskowiak1-Mar-07 14:32
mveDave Kreskowiak1-Mar-07 14:32 
GeneralRe: Save As Pin
Anybloodyid1-Mar-07 21:22
Anybloodyid1-Mar-07 21:22 
GeneralRe: Save As Pin
Dave Kreskowiak2-Mar-07 4:34
mveDave Kreskowiak2-Mar-07 4:34 
GeneralRe: Save As Pin
Anybloodyid2-Mar-07 10:35
Anybloodyid2-Mar-07 10:35 
GeneralRe: Save As Pin
Dave Kreskowiak2-Mar-07 14:37
mveDave Kreskowiak2-Mar-07 14:37 
GeneralRe: Save As Pin
Anybloodyid2-Mar-07 21:44
Anybloodyid2-Mar-07 21:44 
GeneralRe: Save As Pin
Dave Kreskowiak3-Mar-07 5:58
mveDave Kreskowiak3-Mar-07 5:58 
GeneralRe: Save As Pin
Anybloodyid3-Mar-07 9:30
Anybloodyid3-Mar-07 9:30 
Questioninheriting text file Pin
manni_n1-Mar-07 10:29
manni_n1-Mar-07 10:29 
AnswerRe: inheriting text file Pin
Colin Angus Mackay1-Mar-07 11:28
Colin Angus Mackay1-Mar-07 11:28 
AnswerRe: inheriting text file Pin
Christian Graus1-Mar-07 12:51
protectorChristian Graus1-Mar-07 12:51 
GeneralRe: inheriting text file Pin
Colin Angus Mackay1-Mar-07 13:04
Colin Angus Mackay1-Mar-07 13:04 
GeneralRe: inheriting text file Pin
Christian Graus1-Mar-07 13:23
protectorChristian Graus1-Mar-07 13:23 
GeneralRe: inheriting text file Pin
manni_n1-Mar-07 20:04
manni_n1-Mar-07 20:04 
GeneralRe: inheriting text file Pin
Colin Angus Mackay1-Mar-07 21:18
Colin Angus Mackay1-Mar-07 21:18 
GeneralRe: inheriting text file Pin
manni_n2-Mar-07 2:25
manni_n2-Mar-07 2:25 
AnswerRe: inheriting text file Pin
playout1-Mar-07 20:14
playout1-Mar-07 20:14 
QuestionStructured programming question Pin
cstrader2321-Mar-07 10:18
cstrader2321-Mar-07 10:18 
AnswerRe: Structured programming question Pin
Colin Angus Mackay1-Mar-07 11:32
Colin Angus Mackay1-Mar-07 11:32 
cstrader232 wrote:
Is it appropriate for Class C (.dll) to then call back up to Class B in the .exe?


If it does you have a circular reference between assemblies. This indicates that you have either not put the classes in the correct assemblies, or that your design is incorrect.


cstrader232 wrote:
Or is it only appropriate to put Class B in its own assembly where Class C can call it .dll to .dll?


It all really depends on the relationship between the classes. If A, B and C represent different tiers of the application (e.g. A is the presentation layer, C is the business layer and B is the data layer) then they should go in different assemblies. But if B and C both represent different parts of, say, the business layer then they should be in the same assembly.


AnswerRe: Structured programming question Pin
cstrader2321-Mar-07 11:32
cstrader2321-Mar-07 11:32 
GeneralRe: Structured programming question Pin
cstrader2321-Mar-07 11:41
cstrader2321-Mar-07 11:41 
GeneralRe: Structured programming question Pin
Colin Angus Mackay1-Mar-07 12:35
Colin Angus Mackay1-Mar-07 12:35 
GeneralRe: Structured programming question Pin
cstrader2321-Mar-07 12:56
cstrader2321-Mar-07 12:56 

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.