473,765 Members | 2,159 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Best Practices Questions - Sending objects to/from a class modules/functions, etc?

I keep asking myself this question as I write class modules. What's the
best/smartest/most efficient way to send a large object back and forth to a
class module?

For example, say I have a data access module that creates a large
disconnected dataset from a database. I want to pass that dataset back to
the calling program. And then perhaps I want to send that dataset to another
class module.

At first it seems that the "object oriented" approach would be to create a
dataset property in each class module, then run a method that creates the
dataset, and then read the property from the calling program. (and visa
versa if I want to send a dataset to another class module).

Now admittedly, I am not sure I understand how memory is used, garbage
cleanup issues, etc., but this seems inefficient. Won't a separate copy of
the dataset then exist in memory in each of the class modules and the
calling program until the class objects get disposed of?

It seems to me that it would be more efficent to pass a dataset (or any
large object) ByRef to each class as an argument in the method. For example
in the calling program...

Dim MyDataSet as New DataSet
MyObject.MyMeth od(MyDataSet)
'Do stuff
MyDataSet=Nothi ng

and then in the class...

Public Sub MyMethod (ByRef MyDataSet as DataSet)
'Create or use MyDataSet
End Sub

....so that only one copy of the dataset exists at any point in time. Am I
thinking about this correctly?
In a similar vein, it seems convenient sometimes to write Function Subs that
return an object. But then I wonder whether I have cleanup problems because
you can't dispose of the object inside the Function that creates it, if you
need to return the object. I can dispose of the returned object when I'm
done with it, but do I have a problem with a copy of an object remaining
inside the Function Sub? If so, it seems again that I should pass the
dataset as a ByRef argument.

While on the subject of cleaning up. Can someone explain when/if you need to
use the Dispose method for objects that have them? Again with my dataset,
when I am done with it, is there any advantage to...

MyDataSet.Dispo se()
MyDataSet=Nothi ng

I guess I don't understand what Dispose does that Nothing doesn't already
do.

Thanks in advance,
Chuck

Can anybody set me straight here?

Thanks,
Chuck
Jul 21 '05 #1
4 2156
Hi Chuck:
"Chuck Ritzke" <CHUCK AT MYACTUARY DOT COM> wrote in message
news:OO******** ******@TK2MSFTN GP11.phx.gbl...
I keep asking myself this question as I write class modules. What's the
best/smartest/most efficient way to send a large object back and forth to a class module?
It really depends.. read on.
For example, say I have a data access module that creates a large
disconnected dataset from a database. I want to pass that dataset back to
the calling program. And then perhaps I want to send that dataset to another class module.

At first it seems that the "object oriented" approach would be to create a
dataset property in each class module, then run a method that creates the
dataset, and then read the property from the calling program. (and visa
versa if I want to send a dataset to another class module).
This isn't necessarily so. There is a distinction between instance methods
and shard methods. For instance, you can call MessageBox.Show ("Blah")
without instantiating an instance of a messagebox. There's nothing unOOP
about this. Many other classes behave similarly and if you look at the File
class it has an instance version FileInfo. In this instance, you may want
to create either a singleton class or similar implementation, or just make
the dataset a Shared (in VB.NET ) or static (in C#) property. Then you
don't need to instantiate an object at all to hold it and it can be
rerferenced from anywhere. Shared/Static properties exist as roots (ignore
that for now, it needs a lot of qualification and if you don't understand
Garbage Collection i'll just confuse you)so they are handled differently
from other objects
Now admittedly, I am not sure I understand how memory is used, garbage
cleanup issues, etc., but this seems inefficient. Won't a separate copy of
the dataset then exist in memory in each of the class modules and the
calling program until the class objects get disposed of? It's really worth reading up on. Memory management is much different in
..NET than other environments, and it's really something you need to know
about
It seems to me that it would be more efficent to pass a dataset (or any
large object) ByRef to each class as an argument in the method. For example in the calling program...
I think you are confusing passing By Ref/By Val w2ith Value Types and
Reference Types. Two totally different issues. Passing a Reference Type by
Val passes a reference to it, you aren't passing a copy. DataSets are
Reference Types, so you gain nothing by passing them by Reference (and in
almost every instance, you'll want to avoid this).

Just as a test, create a method that takes a DataTable as a Parameter. In
the first case, fill your datatable so it has rows, then pass it to your
function. IN your function, call datatable.Clear (maybe it's Rows.Clear)
but you want to clear all of the rows. Pass it in ByVal. The next line
after the call to the function, use
MessageBox.Show (MyDataTable.Ro ws.Count.ToStri ng()); //Make sure it had
rows before so you see the distinction. You'll get 0 as the value.

Passing a Reference Type by Val passes a reference to the object, so
whatever you do to it is done to the actual object. This is a critical
point here and it's not the same as VB6 or old VC++ where passing it by Val
passed a Copy. The type (reference vs. value) is critical here and passing
a reference type byVal will yield Totally different results than passing a
Value type by val.
Dim MyDataSet as New DataSet
MyObject.MyMeth od(MyDataSet)
'Do stuff
MyDataSet=Nothi ng

and then in the class...

Public Sub MyMethod (ByRef MyDataSet as DataSet)
'Create or use MyDataSet
End Sub

...so that only one copy of the dataset exists at any point in time. Am I
thinking about this correctly?
I think in this instace, creating it as a Shared Property (since you appear
to be using VB.NET) will solve your problem. You can then reference it from
anywhere and you will only need to reference the shared property. You won't
even need to instantiate a class. You may also want to create it as a
singleton object (google on Singleton VB.NET to get an implementation if you
want to ensure that you only ever have one instance.


In a similar vein, it seems convenient sometimes to write Function Subs that return an object. But then I wonder whether I have cleanup problems because you can't dispose of the object inside the Function that creates it, if you need to return the object. I can dispose of the returned object when I'm
done with it, but do I have a problem with a copy of an object remaining
inside the Function Sub? If so, it seems again that I should pass the
dataset as a ByRef argument.
Once again, DataSets are reference types
While on the subject of cleaning up. Can someone explain when/if you need to use the Dispose method for objects that have them? Again with my dataset,
when I am done with it, is there any advantage to...
In general, you don't need to call dispose on managed resource. Calling
dispose doesn't mean it's dead. It's only dead after it's been garbage
collected and unless you call GC Manually (which should be avoided unless
you Really know what you are doing and darned sure you want to do this) then
you don't know when or if GC will happen.
MyDataSet.Dispo se()
MyDataSet=Nothi ng

I guess I don't understand what Dispose does that Nothing doesn't already
do.
In this instance, not much. Dispose can do a bunch of cleanup so it depends
on the object's implementation. You can define IDisposable in your own
objects (whether you should and when is another subject). Technically,
Dispose could create 50 new objects although that would be silly. Setting
it to nothing means there are no strong references to it anymore and if you
try, you'll get a null reference exception.

You are asking a lot of good questions, but while I can give you a cursory
answer to them, this isn't a trivial subject. Entire chapters of books and
numerous articles are written on the subject.... Jeffery Richter has a bunch
of great articles on MSDN about it. It'd probably be best if you looked
them over first.

check out Reference Type vs. Value Type
WeakReference
GarbageCollecti on
IDisposable, Finalize Pattern
MSDn has a ton of articles on this,

http://www.programming-x.com/program...-magazine.html
http://msdn.microsoft.com/msdnmag/is...2/default.aspx
http://www.aleksys.com/aleksys/BookD...ubject_ID=7099

Thanks in advance,
Chuck

Can anybody set me straight here?

Thanks,
Chuck

Jul 21 '05 #2
Hi Chuck:
"Chuck Ritzke" <CHUCK AT MYACTUARY DOT COM> wrote in message
news:OO******** ******@TK2MSFTN GP11.phx.gbl...
I keep asking myself this question as I write class modules. What's the
best/smartest/most efficient way to send a large object back and forth to a class module?
It really depends.. read on.
For example, say I have a data access module that creates a large
disconnected dataset from a database. I want to pass that dataset back to
the calling program. And then perhaps I want to send that dataset to another class module.

At first it seems that the "object oriented" approach would be to create a
dataset property in each class module, then run a method that creates the
dataset, and then read the property from the calling program. (and visa
versa if I want to send a dataset to another class module).
This isn't necessarily so. There is a distinction between instance methods
and shard methods. For instance, you can call MessageBox.Show ("Blah")
without instantiating an instance of a messagebox. There's nothing unOOP
about this. Many other classes behave similarly and if you look at the File
class it has an instance version FileInfo. In this instance, you may want
to create either a singleton class or similar implementation, or just make
the dataset a Shared (in VB.NET ) or static (in C#) property. Then you
don't need to instantiate an object at all to hold it and it can be
rerferenced from anywhere. Shared/Static properties exist as roots (ignore
that for now, it needs a lot of qualification and if you don't understand
Garbage Collection i'll just confuse you)so they are handled differently
from other objects
Now admittedly, I am not sure I understand how memory is used, garbage
cleanup issues, etc., but this seems inefficient. Won't a separate copy of
the dataset then exist in memory in each of the class modules and the
calling program until the class objects get disposed of? It's really worth reading up on. Memory management is much different in
..NET than other environments, and it's really something you need to know
about
It seems to me that it would be more efficent to pass a dataset (or any
large object) ByRef to each class as an argument in the method. For example in the calling program...
I think you are confusing passing By Ref/By Val w2ith Value Types and
Reference Types. Two totally different issues. Passing a Reference Type by
Val passes a reference to it, you aren't passing a copy. DataSets are
Reference Types, so you gain nothing by passing them by Reference (and in
almost every instance, you'll want to avoid this).

Just as a test, create a method that takes a DataTable as a Parameter. In
the first case, fill your datatable so it has rows, then pass it to your
function. IN your function, call datatable.Clear (maybe it's Rows.Clear)
but you want to clear all of the rows. Pass it in ByVal. The next line
after the call to the function, use
MessageBox.Show (MyDataTable.Ro ws.Count.ToStri ng()); //Make sure it had
rows before so you see the distinction. You'll get 0 as the value.

Passing a Reference Type by Val passes a reference to the object, so
whatever you do to it is done to the actual object. This is a critical
point here and it's not the same as VB6 or old VC++ where passing it by Val
passed a Copy. The type (reference vs. value) is critical here and passing
a reference type byVal will yield Totally different results than passing a
Value type by val.
Dim MyDataSet as New DataSet
MyObject.MyMeth od(MyDataSet)
'Do stuff
MyDataSet=Nothi ng

and then in the class...

Public Sub MyMethod (ByRef MyDataSet as DataSet)
'Create or use MyDataSet
End Sub

...so that only one copy of the dataset exists at any point in time. Am I
thinking about this correctly?
I think in this instace, creating it as a Shared Property (since you appear
to be using VB.NET) will solve your problem. You can then reference it from
anywhere and you will only need to reference the shared property. You won't
even need to instantiate a class. You may also want to create it as a
singleton object (google on Singleton VB.NET to get an implementation if you
want to ensure that you only ever have one instance.


In a similar vein, it seems convenient sometimes to write Function Subs that return an object. But then I wonder whether I have cleanup problems because you can't dispose of the object inside the Function that creates it, if you need to return the object. I can dispose of the returned object when I'm
done with it, but do I have a problem with a copy of an object remaining
inside the Function Sub? If so, it seems again that I should pass the
dataset as a ByRef argument.
Once again, DataSets are reference types
While on the subject of cleaning up. Can someone explain when/if you need to use the Dispose method for objects that have them? Again with my dataset,
when I am done with it, is there any advantage to...
In general, you don't need to call dispose on managed resource. Calling
dispose doesn't mean it's dead. It's only dead after it's been garbage
collected and unless you call GC Manually (which should be avoided unless
you Really know what you are doing and darned sure you want to do this) then
you don't know when or if GC will happen.
MyDataSet.Dispo se()
MyDataSet=Nothi ng

I guess I don't understand what Dispose does that Nothing doesn't already
do.
In this instance, not much. Dispose can do a bunch of cleanup so it depends
on the object's implementation. You can define IDisposable in your own
objects (whether you should and when is another subject). Technically,
Dispose could create 50 new objects although that would be silly. Setting
it to nothing means there are no strong references to it anymore and if you
try, you'll get a null reference exception.

You are asking a lot of good questions, but while I can give you a cursory
answer to them, this isn't a trivial subject. Entire chapters of books and
numerous articles are written on the subject.... Jeffery Richter has a bunch
of great articles on MSDN about it. It'd probably be best if you looked
them over first.

check out Reference Type vs. Value Type
WeakReference
GarbageCollecti on
IDisposable, Finalize Pattern
MSDn has a ton of articles on this,

http://www.programming-x.com/program...-magazine.html
http://msdn.microsoft.com/msdnmag/is...2/default.aspx
http://www.aleksys.com/aleksys/BookD...ubject_ID=7099

Thanks in advance,
Chuck

Can anybody set me straight here?

Thanks,
Chuck

Jul 21 '05 #3
Thanks very much Bill for the detailed response. That definitely points out
some misconceptions I had and points me to some things to look

Thanks again,
Chuck
"William Ryan eMVP" <bi**@NoSp4m.de vbuzz.com> wrote in message
news:ub******** ******@TK2MSFTN GP09.phx.gbl...
Hi Chuck:
"Chuck Ritzke" <CHUCK AT MYACTUARY DOT COM> wrote in message
news:OO******** ******@TK2MSFTN GP11.phx.gbl...
I keep asking myself this question as I write class modules. What's the
best/smartest/most efficient way to send a large object back and forth to
a
class module?
It really depends.. read on.

For example, say I have a data access module that creates a large
disconnected dataset from a database. I want to pass that dataset back

to the calling program. And then perhaps I want to send that dataset to

another
class module.

At first it seems that the "object oriented" approach would be to create a dataset property in each class module, then run a method that creates the dataset, and then read the property from the calling program. (and visa
versa if I want to send a dataset to another class module).


This isn't necessarily so. There is a distinction between instance

methods and shard methods. For instance, you can call MessageBox.Show ("Blah")
without instantiating an instance of a messagebox. There's nothing unOOP
about this. Many other classes behave similarly and if you look at the File class it has an instance version FileInfo. In this instance, you may want
to create either a singleton class or similar implementation, or just make
the dataset a Shared (in VB.NET ) or static (in C#) property. Then you
don't need to instantiate an object at all to hold it and it can be
rerferenced from anywhere. Shared/Static properties exist as roots (ignore that for now, it needs a lot of qualification and if you don't understand
Garbage Collection i'll just confuse you)so they are handled differently
from other objects

Now admittedly, I am not sure I understand how memory is used, garbage
cleanup issues, etc., but this seems inefficient. Won't a separate copy of the dataset then exist in memory in each of the class modules and the
calling program until the class objects get disposed of? It's really worth reading up on. Memory management is much different in
.NET than other environments, and it's really something you need to know
about

It seems to me that it would be more efficent to pass a dataset (or any
large object) ByRef to each class as an argument in the method. For

example
in the calling program...


I think you are confusing passing By Ref/By Val w2ith Value Types and
Reference Types. Two totally different issues. Passing a Reference Type

by Val passes a reference to it, you aren't passing a copy. DataSets are
Reference Types, so you gain nothing by passing them by Reference (and in
almost every instance, you'll want to avoid this).

Just as a test, create a method that takes a DataTable as a Parameter. In
the first case, fill your datatable so it has rows, then pass it to your
function. IN your function, call datatable.Clear (maybe it's Rows.Clear)
but you want to clear all of the rows. Pass it in ByVal. The next line
after the call to the function, use
MessageBox.Show (MyDataTable.Ro ws.Count.ToStri ng()); //Make sure it had
rows before so you see the distinction. You'll get 0 as the value.

Passing a Reference Type by Val passes a reference to the object, so
whatever you do to it is done to the actual object. This is a critical
point here and it's not the same as VB6 or old VC++ where passing it by Val passed a Copy. The type (reference vs. value) is critical here and passing a reference type byVal will yield Totally different results than passing a
Value type by val.

Dim MyDataSet as New DataSet
MyObject.MyMeth od(MyDataSet)
'Do stuff
MyDataSet=Nothi ng

and then in the class...

Public Sub MyMethod (ByRef MyDataSet as DataSet)
'Create or use MyDataSet
End Sub

...so that only one copy of the dataset exists at any point in time. Am I thinking about this correctly?
I think in this instace, creating it as a Shared Property (since you

appear to be using VB.NET) will solve your problem. You can then reference it from anywhere and you will only need to reference the shared property. You won't even need to instantiate a class. You may also want to create it as a
singleton object (google on Singleton VB.NET to get an implementation if you want to ensure that you only ever have one instance.


In a similar vein, it seems convenient sometimes to write Function Subs that
return an object. But then I wonder whether I have cleanup problems

because
you can't dispose of the object inside the Function that creates it, if

you
need to return the object. I can dispose of the returned object when I'm
done with it, but do I have a problem with a copy of an object remaining
inside the Function Sub? If so, it seems again that I should pass the
dataset as a ByRef argument.


Once again, DataSets are reference types

While on the subject of cleaning up. Can someone explain when/if you need to
use the Dispose method for objects that have them? Again with my
dataset, when I am done with it, is there any advantage to...


In general, you don't need to call dispose on managed resource. Calling
dispose doesn't mean it's dead. It's only dead after it's been garbage
collected and unless you call GC Manually (which should be avoided unless
you Really know what you are doing and darned sure you want to do this)

then you don't know when or if GC will happen.

MyDataSet.Dispo se()
MyDataSet=Nothi ng

I guess I don't understand what Dispose does that Nothing doesn't already do.
In this instance, not much. Dispose can do a bunch of cleanup so it

depends on the object's implementation. You can define IDisposable in your own
objects (whether you should and when is another subject). Technically,
Dispose could create 50 new objects although that would be silly. Setting
it to nothing means there are no strong references to it anymore and if you try, you'll get a null reference exception.

You are asking a lot of good questions, but while I can give you a cursory
answer to them, this isn't a trivial subject. Entire chapters of books and numerous articles are written on the subject.... Jeffery Richter has a bunch of great articles on MSDN about it. It'd probably be best if you looked
them over first.

check out Reference Type vs. Value Type
WeakReference
GarbageCollecti on
IDisposable, Finalize Pattern
MSDn has a ton of articles on this,

http://www.programming-x.com/program...-magazine.html
http://msdn.microsoft.com/msdnmag/is...2/default.aspx
http://www.aleksys.com/aleksys/BookD...ubject_ID=7099

Thanks in advance,
Chuck

Can anybody set me straight here?

Thanks,
Chuck


Jul 21 '05 #4
Thanks very much Bill for the detailed response. That definitely points out
some misconceptions I had and points me to some things to look

Thanks again,
Chuck
"William Ryan eMVP" <bi**@NoSp4m.de vbuzz.com> wrote in message
news:ub******** ******@TK2MSFTN GP09.phx.gbl...
Hi Chuck:
"Chuck Ritzke" <CHUCK AT MYACTUARY DOT COM> wrote in message
news:OO******** ******@TK2MSFTN GP11.phx.gbl...
I keep asking myself this question as I write class modules. What's the
best/smartest/most efficient way to send a large object back and forth to
a
class module?
It really depends.. read on.

For example, say I have a data access module that creates a large
disconnected dataset from a database. I want to pass that dataset back

to the calling program. And then perhaps I want to send that dataset to

another
class module.

At first it seems that the "object oriented" approach would be to create a dataset property in each class module, then run a method that creates the dataset, and then read the property from the calling program. (and visa
versa if I want to send a dataset to another class module).


This isn't necessarily so. There is a distinction between instance

methods and shard methods. For instance, you can call MessageBox.Show ("Blah")
without instantiating an instance of a messagebox. There's nothing unOOP
about this. Many other classes behave similarly and if you look at the File class it has an instance version FileInfo. In this instance, you may want
to create either a singleton class or similar implementation, or just make
the dataset a Shared (in VB.NET ) or static (in C#) property. Then you
don't need to instantiate an object at all to hold it and it can be
rerferenced from anywhere. Shared/Static properties exist as roots (ignore that for now, it needs a lot of qualification and if you don't understand
Garbage Collection i'll just confuse you)so they are handled differently
from other objects

Now admittedly, I am not sure I understand how memory is used, garbage
cleanup issues, etc., but this seems inefficient. Won't a separate copy of the dataset then exist in memory in each of the class modules and the
calling program until the class objects get disposed of? It's really worth reading up on. Memory management is much different in
.NET than other environments, and it's really something you need to know
about

It seems to me that it would be more efficent to pass a dataset (or any
large object) ByRef to each class as an argument in the method. For

example
in the calling program...


I think you are confusing passing By Ref/By Val w2ith Value Types and
Reference Types. Two totally different issues. Passing a Reference Type

by Val passes a reference to it, you aren't passing a copy. DataSets are
Reference Types, so you gain nothing by passing them by Reference (and in
almost every instance, you'll want to avoid this).

Just as a test, create a method that takes a DataTable as a Parameter. In
the first case, fill your datatable so it has rows, then pass it to your
function. IN your function, call datatable.Clear (maybe it's Rows.Clear)
but you want to clear all of the rows. Pass it in ByVal. The next line
after the call to the function, use
MessageBox.Show (MyDataTable.Ro ws.Count.ToStri ng()); //Make sure it had
rows before so you see the distinction. You'll get 0 as the value.

Passing a Reference Type by Val passes a reference to the object, so
whatever you do to it is done to the actual object. This is a critical
point here and it's not the same as VB6 or old VC++ where passing it by Val passed a Copy. The type (reference vs. value) is critical here and passing a reference type byVal will yield Totally different results than passing a
Value type by val.

Dim MyDataSet as New DataSet
MyObject.MyMeth od(MyDataSet)
'Do stuff
MyDataSet=Nothi ng

and then in the class...

Public Sub MyMethod (ByRef MyDataSet as DataSet)
'Create or use MyDataSet
End Sub

...so that only one copy of the dataset exists at any point in time. Am I thinking about this correctly?
I think in this instace, creating it as a Shared Property (since you

appear to be using VB.NET) will solve your problem. You can then reference it from anywhere and you will only need to reference the shared property. You won't even need to instantiate a class. You may also want to create it as a
singleton object (google on Singleton VB.NET to get an implementation if you want to ensure that you only ever have one instance.


In a similar vein, it seems convenient sometimes to write Function Subs that
return an object. But then I wonder whether I have cleanup problems

because
you can't dispose of the object inside the Function that creates it, if

you
need to return the object. I can dispose of the returned object when I'm
done with it, but do I have a problem with a copy of an object remaining
inside the Function Sub? If so, it seems again that I should pass the
dataset as a ByRef argument.


Once again, DataSets are reference types

While on the subject of cleaning up. Can someone explain when/if you need to
use the Dispose method for objects that have them? Again with my
dataset, when I am done with it, is there any advantage to...


In general, you don't need to call dispose on managed resource. Calling
dispose doesn't mean it's dead. It's only dead after it's been garbage
collected and unless you call GC Manually (which should be avoided unless
you Really know what you are doing and darned sure you want to do this)

then you don't know when or if GC will happen.

MyDataSet.Dispo se()
MyDataSet=Nothi ng

I guess I don't understand what Dispose does that Nothing doesn't already do.
In this instance, not much. Dispose can do a bunch of cleanup so it

depends on the object's implementation. You can define IDisposable in your own
objects (whether you should and when is another subject). Technically,
Dispose could create 50 new objects although that would be silly. Setting
it to nothing means there are no strong references to it anymore and if you try, you'll get a null reference exception.

You are asking a lot of good questions, but while I can give you a cursory
answer to them, this isn't a trivial subject. Entire chapters of books and numerous articles are written on the subject.... Jeffery Richter has a bunch of great articles on MSDN about it. It'd probably be best if you looked
them over first.

check out Reference Type vs. Value Type
WeakReference
GarbageCollecti on
IDisposable, Finalize Pattern
MSDn has a ton of articles on this,

http://www.programming-x.com/program...-magazine.html
http://msdn.microsoft.com/msdnmag/is...2/default.aspx
http://www.aleksys.com/aleksys/BookD...ubject_ID=7099

Thanks in advance,
Chuck

Can anybody set me straight here?

Thanks,
Chuck


Jul 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
9269
by: DrUg13 | last post by:
In java, this seems so easy. You need a new object Object test = new Object() gives me exactly what I want. could someone please help me understand the different ways to do the same thing in C++. I find my self sometimes, trying Object app = Object(); Object *app = Object(); Object app = new Object();
5
3196
by: wrecker | last post by:
Hi all, I have a few common methods that I need to use at different points in my web application. I'm wondering where the best place would be to put these? I think that I have three options. 1. I can create a common module like common.vb in my project and put all the functions in there. 2. Create a utility class and create the common functions as shared
10
3482
by: jojobar | last post by:
Hello, I am trying to use vs.net 2005 to migrate a project originally in vs.net 2003. I started with creation of a "web site", and then created folders for each component of the site. I read somewhere that each folder under the "web site" is compiled in separate assembly. I however, did not find that the "web site" creation in vs.net 2005 created any AssemblyInfo.cs file.
0
793
by: David Helgason | last post by:
I think those best practices threads are a treat to follow (might even consider archiving some of them in a sort of best-practices faq), so here's one more. In coding an game asset server I want to keep a large number of file revisions of varying sizes (1Kb-50Mb) inside the database. Naturally I want to avoid having to allocate whole buffers of 50Mb too often.
4
330
by: Chuck Ritzke | last post by:
I keep asking myself this question as I write class modules. What's the best/smartest/most efficient way to send a large object back and forth to a class module? For example, say I have a data access module that creates a large disconnected dataset from a database. I want to pass that dataset back to the calling program. And then perhaps I want to send that dataset to another class module. At first it seems that the "object oriented"...
16
2815
by: Rex | last post by:
Hi All - I have a question that I think MIGHT be of interest to a number of us developers. I am somewhat new to VIsual Studio 2005 but not new to VB. I am looking for ideas about quick and efficient navigating within Visual Studio 2005. Let's say your project (or solution) has dozens of forms and hundreds or even thousands of routines. Two Questions: 1) BUILT-IN to Visual Studio 2005. What ideas do you have to quickly
17
3044
by: 2005 | last post by:
Hi In C++, are the following considered best practices or not? - passing aguments to functions (ie functions do not take any arguments ) - returning values using return statement Anything else? The reason for this question is that I had an assignment in which I was
14
4112
by: shamirza | last post by:
Question Do ActiveX DLLs made in VB still need the VB runtimes on the machine? ________________________________________ Answer In a word, Yes. Visual Basic does not support what is known as "Static
41
2885
by: Jim | last post by:
Hi guys, I have an object which represents an "item" in a CMS "component" where an "item" in the most basic form just a field, and a "component" is effectively a table. "item" objects can be created and then added to "component" objects to build up the component definition. My dilemma comes in deciding how to read/write data to the "item"
0
9568
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9398
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10156
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10007
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9951
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9832
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6649
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3924
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2805
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.