472,348 Members | 1,604 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,348 software developers and data experts.

class design question

Hey all,

I'm trying to understand Master/Detail concepts in VB.NET. If I do a data
adapter fill for both customer and orders from Northwind where should that
dataset live?

What client is responsible for instantiating the orders class? Would it be
the ui layer or the master class in the business layer?

thanks,
rodchar
Nov 18 '05 #1
6 1987
Your question seems to mix business and interface logic in a way that makes
it impossible to easily answer. For example, the phrase "Master/Detail" is
referring to User Interface design, not business class design. but your
first question is actually about using a DataSet, which is a business class.

Your second question ("What client is responsible for instantiating the
order class?") makes even less sense to me. What kind of "client" are you
referring to? That is, what sense or definition of the word "client" are you
trying to apply? You seem to define "client" as being a "layer" of an
application, but that's a new one on me. And what is this "master class" you
refer to? For that matter, what is the "orders class?"

I will take a stab at helping you out, although I can't understand or
therefore answer your questions. First of all, forget about VB.Net. In
Mexico I would ask where "el bano" is. In the U.S., where we speak English,
I would ask where the bathroom is. However, regardless of the language, I
would be asking the same thing. This isn't a VB.Net issue, it's a
design/architecture issue.

The Master/Detail concept is a UI concept, in which a set of data is
displayed, and details about individual members of that set of data are
displayed separately, but in a connected way. For example, clicking a row in
a DataGrid might display the details about the record selected in another
DataGrid or UI object of some kind. The data might be from the same data
source, or different. All that is required is that the data sources are
related, such as orders that are grouped by customer. There can be a single
data source for both interfaces, or 2 related data sources.

Note that the talk so far has all been about UI, not business. The UI should
be loosely coupled with the business objects it works with. Loose coupling
is one of the key elements of n-tiered architecture. How you structure your
business objects is pretty much up to you, and dependent upon the
circumstances/requirements of your app. You just need to keep your mind on
the principles, and the rest should fall into place.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"rodchar" <ro*****@discussions.microsoft.com> wrote in message
news:82**********************************@microsof t.com...
Hey all,

I'm trying to understand Master/Detail concepts in VB.NET. If I do a data
adapter fill for both customer and orders from Northwind where should that
dataset live?

What client is responsible for instantiating the orders class? Would it be
the ui layer or the master class in the business layer?

thanks,
rodchar

Nov 18 '05 #2
I apologize for the confusion, I'm just taking the Northwind database to help
relay my questions, so I'm using the Customers and Orders table as my
master/detail relationship.

Regarding instantiating the Orders class I was wondering where does "Dim o
as new Orders" occur. Will it occur in a method in the Customers class or
would it occur in WebForm1.aspx.

Regarding the dataset, where should "Dim ds as NEW dataset" occur?
My dataset has the Customers and Orders table in it. I want to load both
tables at the start of the application. What happens when the Orders class
gets instantiated, how would it get to the data in the dataset? If I
instantiate the dataset in the Customers class then I guess I need to make
the dataset public so the Orders object can get to it? Or is there another
way?

Sorry if I'm being confusing again,
rodchar

"Kevin Spencer" wrote:
Your question seems to mix business and interface logic in a way that makes
it impossible to easily answer. For example, the phrase "Master/Detail" is
referring to User Interface design, not business class design. but your
first question is actually about using a DataSet, which is a business class.

Your second question ("What client is responsible for instantiating the
order class?") makes even less sense to me. What kind of "client" are you
referring to? That is, what sense or definition of the word "client" are you
trying to apply? You seem to define "client" as being a "layer" of an
application, but that's a new one on me. And what is this "master class" you
refer to? For that matter, what is the "orders class?"

I will take a stab at helping you out, although I can't understand or
therefore answer your questions. First of all, forget about VB.Net. In
Mexico I would ask where "el bano" is. In the U.S., where we speak English,
I would ask where the bathroom is. However, regardless of the language, I
would be asking the same thing. This isn't a VB.Net issue, it's a
design/architecture issue.

The Master/Detail concept is a UI concept, in which a set of data is
displayed, and details about individual members of that set of data are
displayed separately, but in a connected way. For example, clicking a row in
a DataGrid might display the details about the record selected in another
DataGrid or UI object of some kind. The data might be from the same data
source, or different. All that is required is that the data sources are
related, such as orders that are grouped by customer. There can be a single
data source for both interfaces, or 2 related data sources.

Note that the talk so far has all been about UI, not business. The UI should
be loosely coupled with the business objects it works with. Loose coupling
is one of the key elements of n-tiered architecture. How you structure your
business objects is pretty much up to you, and dependent upon the
circumstances/requirements of your app. You just need to keep your mind on
the principles, and the rest should fall into place.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"rodchar" <ro*****@discussions.microsoft.com> wrote in message
news:82**********************************@microsof t.com...
Hey all,

I'm trying to understand Master/Detail concepts in VB.NET. If I do a data
adapter fill for both customer and orders from Northwind where should that
dataset live?

What client is responsible for instantiating the orders class? Would it be
the ui layer or the master class in the business layer?

thanks,
rodchar


Nov 18 '05 #3
It's okay, rodchar. I'm just having a hard time figuring out what you're
asying, and how to help.

For example:
Regarding instantiating the Orders class I was wondering where does "Dim o
as new Orders" occur. Will it occur in a method in the Customers class or
would it occur in WebForm1.aspx.
You've lost me already. I am not aware of any existing class named "Orders."
Neither am I aware of any existing class named "Customers." So, I'm at a
loss. Where are you getting these class names from?

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"rodchar" <ro*****@discussions.microsoft.com> wrote in message
news:93**********************************@microsof t.com... I apologize for the confusion, I'm just taking the Northwind database to help relay my questions, so I'm using the Customers and Orders table as my
master/detail relationship.

Regarding instantiating the Orders class I was wondering where does "Dim o
as new Orders" occur. Will it occur in a method in the Customers class or
would it occur in WebForm1.aspx.

Regarding the dataset, where should "Dim ds as NEW dataset" occur?
My dataset has the Customers and Orders table in it. I want to load both
tables at the start of the application. What happens when the Orders class
gets instantiated, how would it get to the data in the dataset? If I
instantiate the dataset in the Customers class then I guess I need to make
the dataset public so the Orders object can get to it? Or is there another
way?

Sorry if I'm being confusing again,
rodchar

"Kevin Spencer" wrote:
Your question seems to mix business and interface logic in a way that makes it impossible to easily answer. For example, the phrase "Master/Detail" is referring to User Interface design, not business class design. but your
first question is actually about using a DataSet, which is a business class.
Your second question ("What client is responsible for instantiating the
order class?") makes even less sense to me. What kind of "client" are you referring to? That is, what sense or definition of the word "client" are you trying to apply? You seem to define "client" as being a "layer" of an
application, but that's a new one on me. And what is this "master class" you refer to? For that matter, what is the "orders class?"

I will take a stab at helping you out, although I can't understand or
therefore answer your questions. First of all, forget about VB.Net. In
Mexico I would ask where "el bano" is. In the U.S., where we speak English, I would ask where the bathroom is. However, regardless of the language, I would be asking the same thing. This isn't a VB.Net issue, it's a
design/architecture issue.

The Master/Detail concept is a UI concept, in which a set of data is
displayed, and details about individual members of that set of data are
displayed separately, but in a connected way. For example, clicking a row in a DataGrid might display the details about the record selected in another DataGrid or UI object of some kind. The data might be from the same data
source, or different. All that is required is that the data sources are
related, such as orders that are grouped by customer. There can be a single data source for both interfaces, or 2 related data sources.

Note that the talk so far has all been about UI, not business. The UI should be loosely coupled with the business objects it works with. Loose coupling is one of the key elements of n-tiered architecture. How you structure your business objects is pretty much up to you, and dependent upon the
circumstances/requirements of your app. You just need to keep your mind on the principles, and the rest should fall into place.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"rodchar" <ro*****@discussions.microsoft.com> wrote in message
news:82**********************************@microsof t.com...
Hey all,

I'm trying to understand Master/Detail concepts in VB.NET. If I do a data adapter fill for both customer and orders from Northwind where should that dataset live?

What client is responsible for instantiating the orders class? Would it be the ui layer or the master class in the business layer?

thanks,
rodchar


Nov 18 '05 #4
I'm using these tables in a sample asp.net application i created. i've read
that in class design to make your classes from real entities so Customer and
Orders are classes I came up with.

"Kevin Spencer" wrote:
It's okay, rodchar. I'm just having a hard time figuring out what you're
asying, and how to help.

For example:
Regarding instantiating the Orders class I was wondering where does "Dim o
as new Orders" occur. Will it occur in a method in the Customers class or
would it occur in WebForm1.aspx.


You've lost me already. I am not aware of any existing class named "Orders."
Neither am I aware of any existing class named "Customers." So, I'm at a
loss. Where are you getting these class names from?

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"rodchar" <ro*****@discussions.microsoft.com> wrote in message
news:93**********************************@microsof t.com...
I apologize for the confusion, I'm just taking the Northwind database to

help
relay my questions, so I'm using the Customers and Orders table as my
master/detail relationship.

Regarding instantiating the Orders class I was wondering where does "Dim o
as new Orders" occur. Will it occur in a method in the Customers class or
would it occur in WebForm1.aspx.

Regarding the dataset, where should "Dim ds as NEW dataset" occur?
My dataset has the Customers and Orders table in it. I want to load both
tables at the start of the application. What happens when the Orders class
gets instantiated, how would it get to the data in the dataset? If I
instantiate the dataset in the Customers class then I guess I need to make
the dataset public so the Orders object can get to it? Or is there another
way?

Sorry if I'm being confusing again,
rodchar

"Kevin Spencer" wrote:
Your question seems to mix business and interface logic in a way that makes it impossible to easily answer. For example, the phrase "Master/Detail" is referring to User Interface design, not business class design. but your
first question is actually about using a DataSet, which is a business class.
Your second question ("What client is responsible for instantiating the
order class?") makes even less sense to me. What kind of "client" are you referring to? That is, what sense or definition of the word "client" are you trying to apply? You seem to define "client" as being a "layer" of an
application, but that's a new one on me. And what is this "master class" you refer to? For that matter, what is the "orders class?"

I will take a stab at helping you out, although I can't understand or
therefore answer your questions. First of all, forget about VB.Net. In
Mexico I would ask where "el bano" is. In the U.S., where we speak English, I would ask where the bathroom is. However, regardless of the language, I would be asking the same thing. This isn't a VB.Net issue, it's a
design/architecture issue.

The Master/Detail concept is a UI concept, in which a set of data is
displayed, and details about individual members of that set of data are
displayed separately, but in a connected way. For example, clicking a row in a DataGrid might display the details about the record selected in another DataGrid or UI object of some kind. The data might be from the same data
source, or different. All that is required is that the data sources are
related, such as orders that are grouped by customer. There can be a single data source for both interfaces, or 2 related data sources.

Note that the talk so far has all been about UI, not business. The UI should be loosely coupled with the business objects it works with. Loose coupling is one of the key elements of n-tiered architecture. How you structure your business objects is pretty much up to you, and dependent upon the
circumstances/requirements of your app. You just need to keep your mind on the principles, and the rest should fall into place.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"rodchar" <ro*****@discussions.microsoft.com> wrote in message
news:82**********************************@microsof t.com...
> Hey all,
>
> I'm trying to understand Master/Detail concepts in VB.NET. If I do a data > adapter fill for both customer and orders from Northwind where should that > dataset live?
>
> What client is responsible for instantiating the orders class? Would it be > the ui layer or the master class in the business layer?
>
> thanks,
> rodchar


Nov 18 '05 #5
I think we need to back up some here, rodchar, and here's why: Your question
involves a number of concepts, none of which you seem to have a very good
grasp on. Uncle Chutney sez "Big things are made up of lots of little
things." An application is made up of lots of classes. Classes are made up
of lots of fields, propreties and functions (somewhat simplified). Fields,
properties and functions are made up of lots of statements and expressions.
So, before you can ask the question "where does "Dim o as new Orders"
occur," you have to have a firm understanding of classes. In order to know
anything about classes, you need a firm understanding of object-orientation,
fields, properties, and functions. And in order to know anything about
fields, properties, and functions, you have to have a firm understanding of
expressions and statements.

In the world of programming, when you learn a new technology, you generally
start out with a simple program called "Hello World." All it does is output
the phrase "Hello World" to whatever output mechanism the technology uses.
It takes no input. It simply puts out "Hello World." There is a reason for
this (Big things are made up of lots of little things). By getting a firm
grasp of the bricks, the house appears without even thinking about it. How
do you write an elephant? One byte at a time.

I would suggest rather than making up your own self-tutorial, find some very
basic ready-made ones that you can use (the .Net SDK is full of them), and
do them. Study each one to get a full understanding of it. Once you've
mastered the concepts, move on to something that does a little more. You can
download the .Net SDK from the following URL (for free!):

http://www.microsoft.com/downloads/d...displaylang=en

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
"rodchar" <ro*****@discussions.microsoft.com> wrote in message
news:51**********************************@microsof t.com...
I'm using these tables in a sample asp.net application i created. i've read that in class design to make your classes from real entities so Customer and Orders are classes I came up with.

"Kevin Spencer" wrote:
It's okay, rodchar. I'm just having a hard time figuring out what you're
asying, and how to help.

For example:
Regarding instantiating the Orders class I was wondering where does "Dim o as new Orders" occur. Will it occur in a method in the Customers class or would it occur in WebForm1.aspx.


You've lost me already. I am not aware of any existing class named "Orders." Neither am I aware of any existing class named "Customers." So, I'm at a
loss. Where are you getting these class names from?

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"rodchar" <ro*****@discussions.microsoft.com> wrote in message
news:93**********************************@microsof t.com...
I apologize for the confusion, I'm just taking the Northwind database to
help
relay my questions, so I'm using the Customers and Orders table as my
master/detail relationship.

Regarding instantiating the Orders class I was wondering where does
"Dim o as new Orders" occur. Will it occur in a method in the Customers class or would it occur in WebForm1.aspx.

Regarding the dataset, where should "Dim ds as NEW dataset" occur?
My dataset has the Customers and Orders table in it. I want to load both tables at the start of the application. What happens when the Orders class gets instantiated, how would it get to the data in the dataset? If I
instantiate the dataset in the Customers class then I guess I need to make the dataset public so the Orders object can get to it? Or is there another way?

Sorry if I'm being confusing again,
rodchar

"Kevin Spencer" wrote:

> Your question seems to mix business and interface logic in a way that makes
> it impossible to easily answer. For example, the phrase
"Master/Detail" is
> referring to User Interface design, not business class design. but
your > first question is actually about using a DataSet, which is a business class.
>
> Your second question ("What client is responsible for instantiating
the > order class?") makes even less sense to me. What kind of "client" are you
> referring to? That is, what sense or definition of the word "client"
are you
> trying to apply? You seem to define "client" as being a "layer" of
an > application, but that's a new one on me. And what is this "master class" you
> refer to? For that matter, what is the "orders class?"
>
> I will take a stab at helping you out, although I can't understand
or > therefore answer your questions. First of all, forget about VB.Net. In > Mexico I would ask where "el bano" is. In the U.S., where we speak

English,
> I would ask where the bathroom is. However, regardless of the language, I
> would be asking the same thing. This isn't a VB.Net issue, it's a
> design/architecture issue.
>
> The Master/Detail concept is a UI concept, in which a set of data is
> displayed, and details about individual members of that set of data
are > displayed separately, but in a connected way. For example, clicking a row in
> a DataGrid might display the details about the record selected in

another
> DataGrid or UI object of some kind. The data might be from the same
data > source, or different. All that is required is that the data sources are > related, such as orders that are grouped by customer. There can be a

single
> data source for both interfaces, or 2 related data sources.
>
> Note that the talk so far has all been about UI, not business. The

UI should
> be loosely coupled with the business objects it works with. Loose

coupling
> is one of the key elements of n-tiered architecture. How you
structure your
> business objects is pretty much up to you, and dependent upon the
> circumstances/requirements of your app. You just need to keep your
mind on
> the principles, and the rest should fall into place.
>
> --
> HTH,
> Kevin Spencer
> ..Net Developer
> Microsoft MVP
> I get paid good money to
> solve puzzles for a living
>
> "rodchar" <ro*****@discussions.microsoft.com> wrote in message
> news:82**********************************@microsof t.com...
> > Hey all,
> >
> > I'm trying to understand Master/Detail concepts in VB.NET. If I do
a data
> > adapter fill for both customer and orders from Northwind where
should that
> > dataset live?
> >
> > What client is responsible for instantiating the orders class?
Would it be
> > the ui layer or the master class in the business layer?
> >
> > thanks,
> > rodchar
>
>
>


Nov 18 '05 #6
10-4. Thanks.

"Kevin Spencer" wrote:
I think we need to back up some here, rodchar, and here's why: Your question
involves a number of concepts, none of which you seem to have a very good
grasp on. Uncle Chutney sez "Big things are made up of lots of little
things." An application is made up of lots of classes. Classes are made up
of lots of fields, propreties and functions (somewhat simplified). Fields,
properties and functions are made up of lots of statements and expressions.
So, before you can ask the question "where does "Dim o as new Orders"
occur," you have to have a firm understanding of classes. In order to know
anything about classes, you need a firm understanding of object-orientation,
fields, properties, and functions. And in order to know anything about
fields, properties, and functions, you have to have a firm understanding of
expressions and statements.

In the world of programming, when you learn a new technology, you generally
start out with a simple program called "Hello World." All it does is output
the phrase "Hello World" to whatever output mechanism the technology uses.
It takes no input. It simply puts out "Hello World." There is a reason for
this (Big things are made up of lots of little things). By getting a firm
grasp of the bricks, the house appears without even thinking about it. How
do you write an elephant? One byte at a time.

I would suggest rather than making up your own self-tutorial, find some very
basic ready-made ones that you can use (the .Net SDK is full of them), and
do them. Study each one to get a full understanding of it. Once you've
mastered the concepts, move on to something that does a little more. You can
download the .Net SDK from the following URL (for free!):

http://www.microsoft.com/downloads/d...displaylang=en

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
"rodchar" <ro*****@discussions.microsoft.com> wrote in message
news:51**********************************@microsof t.com...
I'm using these tables in a sample asp.net application i created. i've

read
that in class design to make your classes from real entities so Customer

and
Orders are classes I came up with.

"Kevin Spencer" wrote:
It's okay, rodchar. I'm just having a hard time figuring out what you're
asying, and how to help.

For example:

> Regarding instantiating the Orders class I was wondering where does "Dim o > as new Orders" occur. Will it occur in a method in the Customers class or > would it occur in WebForm1.aspx.

You've lost me already. I am not aware of any existing class named "Orders." Neither am I aware of any existing class named "Customers." So, I'm at a
loss. Where are you getting these class names from?

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"rodchar" <ro*****@discussions.microsoft.com> wrote in message
news:93**********************************@microsof t.com...
> I apologize for the confusion, I'm just taking the Northwind database to help
> relay my questions, so I'm using the Customers and Orders table as my
> master/detail relationship.
>
> Regarding instantiating the Orders class I was wondering where does "Dim o > as new Orders" occur. Will it occur in a method in the Customers class or > would it occur in WebForm1.aspx.
>
> Regarding the dataset, where should "Dim ds as NEW dataset" occur?
> My dataset has the Customers and Orders table in it. I want to load both > tables at the start of the application. What happens when the Orders class > gets instantiated, how would it get to the data in the dataset? If I
> instantiate the dataset in the Customers class then I guess I need to make > the dataset public so the Orders object can get to it? Or is there another > way?
>
> Sorry if I'm being confusing again,
> rodchar
>
> "Kevin Spencer" wrote:
>
> > Your question seems to mix business and interface logic in a way that makes
> > it impossible to easily answer. For example, the phrase "Master/Detail" is
> > referring to User Interface design, not business class design. but your > > first question is actually about using a DataSet, which is a business class.
> >
> > Your second question ("What client is responsible for instantiating the > > order class?") makes even less sense to me. What kind of "client" are you
> > referring to? That is, what sense or definition of the word "client" are you
> > trying to apply? You seem to define "client" as being a "layer" of an > > application, but that's a new one on me. And what is this "master class" you
> > refer to? For that matter, what is the "orders class?"
> >
> > I will take a stab at helping you out, although I can't understand or > > therefore answer your questions. First of all, forget about VB.Net. In > > Mexico I would ask where "el bano" is. In the U.S., where we speak
English,
> > I would ask where the bathroom is. However, regardless of the language, I
> > would be asking the same thing. This isn't a VB.Net issue, it's a
> > design/architecture issue.
> >
> > The Master/Detail concept is a UI concept, in which a set of data is
> > displayed, and details about individual members of that set of data are > > displayed separately, but in a connected way. For example, clicking a row in
> > a DataGrid might display the details about the record selected in
another
> > DataGrid or UI object of some kind. The data might be from the same data > > source, or different. All that is required is that the data sources are > > related, such as orders that are grouped by customer. There can be a
single
> > data source for both interfaces, or 2 related data sources.
> >
> > Note that the talk so far has all been about UI, not business. The UI should
> > be loosely coupled with the business objects it works with. Loose
coupling
> > is one of the key elements of n-tiered architecture. How you structure your
> > business objects is pretty much up to you, and dependent upon the
> > circumstances/requirements of your app. You just need to keep your mind on
> > the principles, and the rest should fall into place.
> >
> > --
> > HTH,
> > Kevin Spencer
> > ..Net Developer
> > Microsoft MVP
> > I get paid good money to
> > solve puzzles for a living
> >
> > "rodchar" <ro*****@discussions.microsoft.com> wrote in message
> > news:82**********************************@microsof t.com...
> > > Hey all,
> > >
> > > I'm trying to understand Master/Detail concepts in VB.NET. If I do a data
> > > adapter fill for both customer and orders from Northwind where should that
> > > dataset live?
> > >
> > > What client is responsible for instantiating the orders class? Would it be
> > > the ui layer or the master class in the business layer?
> > >
> > > thanks,
> > > rodchar
> >
> >
> >


Nov 18 '05 #7

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

Similar topics

50
by: Dan Perl | last post by:
There is something with initializing mutable class attributes that I am struggling with. I'll use an example to explain: class Father: attr1=None...
13
by: Bryan Parkoff | last post by:
I have created three classes according to my own design. First class is called CMain. It is the Top Class. Second class and third class are...
15
by: Steven T. Hatton | last post by:
The following may strike many of you as just plain silly, but it represents the kind of delelima I find myself in when trying to make a design...
31
by: grahamo | last post by:
This came up in an interview I did a while ago and I wanted to know the correct answer. The setup is this; If I have a base class "food" and also...
3
by: fernandez.dan | last post by:
I'm still learning how to use Object Oriented concepts. I'm have a basic question dealing with design. I have two classes that deal with I/O...
1
by: Alfonso Morra | last post by:
if I have a class template declared as ff: (BTW is this a partial specialization? - I think it is) template <typename T1, myenum_1 e1=OK,...
43
by: Tony | last post by:
I'm working with GUI messaging and note that MFC encapsulates the message loop inside of a C++ class member function. Is this somehow inherently...
6
by: JoeC | last post by:
I have a question about designing objects and programming. What is the best way to design objects? Create objects debug them and later if you...
29
by: Brad Pears | last post by:
Here is a simple OO design question... I have a Contract class. The user can either save an existing contract or they start off fresh with a...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
1
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....

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.