473,385 Members | 1,693 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Help with design

Hi,
I want to use a popup control in my asp app like the one in outlook web
access and msn. This will be used to notify users of a change in the
database. I plan on using the one on codeproject, however, how can I have the
popup control check by itself every minute or two minutes in the database
instead of waiting for the current page (which the control is on) to be
refreshed or postback?

Thanks
Nov 18 '05 #1
8 1114
> I plan on using the one on codeproject, however

The one WHAT?

When you coin a term like "popup control" you must keep in mind that this is
not a common term, but one you invented. You need to tell us, therefore,
what it is you're describing. If I told you that my foobar had a problem,
what would I be talking about? How could you help me solve it?

At this point, I can tell you that it is certainly possible to create a
client-side entity of some sort that can query a database periodically.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:29**********************************@microsof t.com...
Hi,
I want to use a popup control in my asp app like the one in outlook web
access and msn. This will be used to notify users of a change in the
database. I plan on using the one on codeproject, however, how can I have the popup control check by itself every minute or two minutes in the database
instead of waiting for the current page (which the control is on) to be
refreshed or postback?

Thanks

Nov 18 '05 #2
Hi,
Chek it out at http://codeproject.com/asppopup.asp

That cntrol has to be placed on a page itself.

"Kevin Spencer" wrote:
I plan on using the one on codeproject, however


The one WHAT?

When you coin a term like "popup control" you must keep in mind that this is
not a common term, but one you invented. You need to tell us, therefore,
what it is you're describing. If I told you that my foobar had a problem,
what would I be talking about? How could you help me solve it?

At this point, I can tell you that it is certainly possible to create a
client-side entity of some sort that can query a database periodically.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:29**********************************@microsof t.com...
Hi,
I want to use a popup control in my asp app like the one in outlook web
access and msn. This will be used to notify users of a change in the
database. I plan on using the one on codeproject, however, how can I have

the
popup control check by itself every minute or two minutes in the database
instead of waiting for the current page (which the control is on) to be
refreshed or postback?

Thanks


Nov 18 '05 #3
Thanks. Now you want to know how to modify that Control to do what you want?
Well, I don't have the code for the Control, so I can't tell you how. I
could always download it and modify it, but I don't think you would pay what
I would charge to do that!

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:CD**********************************@microsof t.com...
Hi,
Chek it out at http://codeproject.com/asppopup.asp

That cntrol has to be placed on a page itself.

"Kevin Spencer" wrote:
I plan on using the one on codeproject, however


The one WHAT?

When you coin a term like "popup control" you must keep in mind that this is not a common term, but one you invented. You need to tell us, therefore,
what it is you're describing. If I told you that my foobar had a problem, what would I be talking about? How could you help me solve it?

At this point, I can tell you that it is certainly possible to create a
client-side entity of some sort that can query a database periodically.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:29**********************************@microsof t.com...
Hi,
I want to use a popup control in my asp app like the one in outlook web access and msn. This will be used to notify users of a change in the
database. I plan on using the one on codeproject, however, how can I have
the
popup control check by itself every minute or two minutes in the

database instead of waiting for the current page (which the control is on) to be refreshed or postback?

Thanks


Nov 18 '05 #4
Thanks. Can I load a popup form session?

"Kevin Spencer" wrote:
Hard to say for sure. Is this user-specific? If so, put a timer in Session,
and set up an event handler for the timer's Elapsed event that does what you
want. If it is for all users, put the timer in Application Cache. There
would also have to be a variable in Session or Application that idicates
whether or not there are new messages. Each Page could check that variable
to see whether or not there are new messages. The Page would then reset the
variable back to its original state.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:42**********************************@microsof t.com...
Hi,
What I need to know, apart from that control, is how can I have a process
started when a user logs in an application and every few minutes checks

the
database for new messages. The user can be on any page, it doesn't matter.
The process will be running separately.

"Kevin Spencer" wrote:
Thanks. Now you want to know how to modify that Control to do what you want? Well, I don't have the code for the Control, so I can't tell you how. I
could always download it and modify it, but I don't think you would pay what I would charge to do that!

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:CD**********************************@microsof t.com...
> Hi,
> Chek it out at http://codeproject.com/asppopup.asp
>
> That cntrol has to be placed on a page itself.
>
> "Kevin Spencer" wrote:
>
> > > I plan on using the one on codeproject, however
> >
> > The one WHAT?
> >
> > When you coin a term like "popup control" you must keep in mind that
this is
> > not a common term, but one you invented. You need to tell us, therefore, > > what it is you're describing. If I told you that my foobar had a
problem,
> > what would I be talking about? How could you help me solve it?
> >
> > At this point, I can tell you that it is certainly possible to create a > > client-side entity of some sort that can query a database periodically. > >
> > --
> > HTH,
> > Kevin Spencer
> > ..Net Developer
> > Microsoft MVP
> > Neither a follower
> > nor a lender be.
> >
> > "Chris" <Ch***@discussions.microsoft.com> wrote in message
> > news:29**********************************@microsof t.com...
> > > Hi,
> > > I want to use a popup control in my asp app like the one in outlook web
> > > access and msn. This will be used to notify users of a change in the > > > database. I plan on using the one on codeproject, however, how can I have
> > the
> > > popup control check by itself every minute or two minutes in the
database
> > > instead of waiting for the current page (which the control is on) to be
> > > refreshed or postback?
> > >
> > > Thanks
> >
> >
> >


Nov 19 '05 #5
> Thanks. Can I load a popup form session?

I don't understand the question.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:69**********************************@microsof t.com...
Thanks. Can I load a popup form session?

"Kevin Spencer" wrote:
Hard to say for sure. Is this user-specific? If so, put a timer in Session, and set up an event handler for the timer's Elapsed event that does what you want. If it is for all users, put the timer in Application Cache. There
would also have to be a variable in Session or Application that idicates
whether or not there are new messages. Each Page could check that variable to see whether or not there are new messages. The Page would then reset the variable back to its original state.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:42**********************************@microsof t.com...
Hi,
What I need to know, apart from that control, is how can I have a process started when a user logs in an application and every few minutes checks
the
database for new messages. The user can be on any page, it doesn't
matter. The process will be running separately.

"Kevin Spencer" wrote:

> Thanks. Now you want to know how to modify that Control to do what you want?
> Well, I don't have the code for the Control, so I can't tell you
how. I > could always download it and modify it, but I don't think you would pay what
> I would charge to do that!
>
> --
> HTH,
> Kevin Spencer
> ..Net Developer
> Microsoft MVP
> Neither a follower
> nor a lender be.
>
> "Chris" <Ch***@discussions.microsoft.com> wrote in message
> news:CD**********************************@microsof t.com...
> > Hi,
> > Chek it out at http://codeproject.com/asppopup.asp
> >
> > That cntrol has to be placed on a page itself.
> >
> > "Kevin Spencer" wrote:
> >
> > > > I plan on using the one on codeproject, however
> > >
> > > The one WHAT?
> > >
> > > When you coin a term like "popup control" you must keep in mind
that > this is
> > > not a common term, but one you invented. You need to tell us,

therefore,
> > > what it is you're describing. If I told you that my foobar had a
> problem,
> > > what would I be talking about? How could you help me solve it?
> > >
> > > At this point, I can tell you that it is certainly possible to

create a
> > > client-side entity of some sort that can query a database

periodically.
> > >
> > > --
> > > HTH,
> > > Kevin Spencer
> > > ..Net Developer
> > > Microsoft MVP
> > > Neither a follower
> > > nor a lender be.
> > >
> > > "Chris" <Ch***@discussions.microsoft.com> wrote in message
> > > news:29**********************************@microsof t.com...
> > > > Hi,
> > > > I want to use a popup control in my asp app like the one in

outlook
> web
> > > > access and msn. This will be used to notify users of a change in the
> > > > database. I plan on using the one on codeproject, however, how
can I
> have
> > > the
> > > > popup control check by itself every minute or two minutes in
the > database
> > > > instead of waiting for the current page (which the control is

on) to
> be
> > > > refreshed or postback?
> > > >
> > > > Thanks
> > >
> > >
> > >
>
>
>


Nov 19 '05 #6
Hi,
You said

"If so, put a timer in Session,
and set up an event handler for the timer's Elapsed event that does what you
want."

I want it to be user specific. So If I do the checking in in Session then
can I load the popup from there?

Thanks

"Kevin Spencer" wrote:
Thanks. Can I load a popup form session?


I don't understand the question.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:69**********************************@microsof t.com...
Thanks. Can I load a popup form session?

"Kevin Spencer" wrote:
Hard to say for sure. Is this user-specific? If so, put a timer in Session, and set up an event handler for the timer's Elapsed event that does what you want. If it is for all users, put the timer in Application Cache. There
would also have to be a variable in Session or Application that idicates
whether or not there are new messages. Each Page could check that variable to see whether or not there are new messages. The Page would then reset the variable back to its original state.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:42**********************************@microsof t.com...
> Hi,
> What I need to know, apart from that control, is how can I have a process > started when a user logs in an application and every few minutes checks the
> database for new messages. The user can be on any page, it doesn't matter. > The process will be running separately.
>
> "Kevin Spencer" wrote:
>
> > Thanks. Now you want to know how to modify that Control to do what you want?
> > Well, I don't have the code for the Control, so I can't tell you how. I > > could always download it and modify it, but I don't think you would pay what
> > I would charge to do that!
> >
> > --
> > HTH,
> > Kevin Spencer
> > ..Net Developer
> > Microsoft MVP
> > Neither a follower
> > nor a lender be.
> >
> > "Chris" <Ch***@discussions.microsoft.com> wrote in message
> > news:CD**********************************@microsof t.com...
> > > Hi,
> > > Chek it out at http://codeproject.com/asppopup.asp
> > >
> > > That cntrol has to be placed on a page itself.
> > >
> > > "Kevin Spencer" wrote:
> > >
> > > > > I plan on using the one on codeproject, however
> > > >
> > > > The one WHAT?
> > > >
> > > > When you coin a term like "popup control" you must keep in mind that > > this is
> > > > not a common term, but one you invented. You need to tell us,
therefore,
> > > > what it is you're describing. If I told you that my foobar had a
> > problem,
> > > > what would I be talking about? How could you help me solve it?
> > > >
> > > > At this point, I can tell you that it is certainly possible to
create a
> > > > client-side entity of some sort that can query a database
periodically.
> > > >
> > > > --
> > > > HTH,
> > > > Kevin Spencer
> > > > ..Net Developer
> > > > Microsoft MVP
> > > > Neither a follower
> > > > nor a lender be.
> > > >
> > > > "Chris" <Ch***@discussions.microsoft.com> wrote in message
> > > > news:29**********************************@microsof t.com...
> > > > > Hi,
> > > > > I want to use a popup control in my asp app like the one in
outlook
> > web
> > > > > access and msn. This will be used to notify users of a change in the
> > > > > database. I plan on using the one on codeproject, however, how can I
> > have
> > > > the
> > > > > popup control check by itself every minute or two minutes in the > > database
> > > > > instead of waiting for the current page (which the control is on) to
> > be
> > > > > refreshed or postback?
> > > > >
> > > > > Thanks
> > > >
> > > >
> > > >
> >
> >
> >


Nov 19 '05 #7
You can put the timer into Session. You can't load a popup window from
Session. It has to be done on the client. However, you could store data in
Session that could be used by a Page class to spawn a popup. It would be
user-specific.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:FD**********************************@microsof t.com...
Hi,
You said

"If so, put a timer in Session,
and set up an event handler for the timer's Elapsed event that does what you want."

I want it to be user specific. So If I do the checking in in Session then
can I load the popup from there?

Thanks

"Kevin Spencer" wrote:
Thanks. Can I load a popup form session?


I don't understand the question.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:69**********************************@microsof t.com...
Thanks. Can I load a popup form session?

"Kevin Spencer" wrote:

> Hard to say for sure. Is this user-specific? If so, put a timer in

Session,
> and set up an event handler for the timer's Elapsed event that does what
you
> want. If it is for all users, put the timer in Application Cache.
There > would also have to be a variable in Session or Application that idicates > whether or not there are new messages. Each Page could check that

variable
> to see whether or not there are new messages. The Page would then reset the
> variable back to its original state.
>
> --
> HTH,
> Kevin Spencer
> ..Net Developer
> Microsoft MVP
> Neither a follower
> nor a lender be.
>
> "Chris" <Ch***@discussions.microsoft.com> wrote in message
> news:42**********************************@microsof t.com...
> > Hi,
> > What I need to know, apart from that control, is how can I have a

process
> > started when a user logs in an application and every few minutes

checks
> the
> > database for new messages. The user can be on any page, it doesn't

matter.
> > The process will be running separately.
> >
> > "Kevin Spencer" wrote:
> >
> > > Thanks. Now you want to know how to modify that Control to do
what you
> want?
> > > Well, I don't have the code for the Control, so I can't tell you

how. I
> > > could always download it and modify it, but I don't think you
would pay
> what
> > > I would charge to do that!
> > >
> > > --
> > > HTH,
> > > Kevin Spencer
> > > ..Net Developer
> > > Microsoft MVP
> > > Neither a follower
> > > nor a lender be.
> > >
> > > "Chris" <Ch***@discussions.microsoft.com> wrote in message
> > > news:CD**********************************@microsof t.com...
> > > > Hi,
> > > > Chek it out at http://codeproject.com/asppopup.asp
> > > >
> > > > That cntrol has to be placed on a page itself.
> > > >
> > > > "Kevin Spencer" wrote:
> > > >
> > > > > > I plan on using the one on codeproject, however
> > > > >
> > > > > The one WHAT?
> > > > >
> > > > > When you coin a term like "popup control" you must keep in
mind that
> > > this is
> > > > > not a common term, but one you invented. You need to tell
us, > therefore,
> > > > > what it is you're describing. If I told you that my foobar had a > > > problem,
> > > > > what would I be talking about? How could you help me solve it? > > > > >
> > > > > At this point, I can tell you that it is certainly possible to > create a
> > > > > client-side entity of some sort that can query a database
> periodically.
> > > > >
> > > > > --
> > > > > HTH,
> > > > > Kevin Spencer
> > > > > ..Net Developer
> > > > > Microsoft MVP
> > > > > Neither a follower
> > > > > nor a lender be.
> > > > >
> > > > > "Chris" <Ch***@discussions.microsoft.com> wrote in message
> > > > > news:29**********************************@microsof t.com...
> > > > > > Hi,
> > > > > > I want to use a popup control in my asp app like the one in > outlook
> > > web
> > > > > > access and msn. This will be used to notify users of a

change in
> the
> > > > > > database. I plan on using the one on codeproject, however,
how can
> I
> > > have
> > > > > the
> > > > > > popup control check by itself every minute or two minutes
in the
> > > database
> > > > > > instead of waiting for the current page (which the control
is on)
> to
> > > be
> > > > > > refreshed or postback?
> > > > > >
> > > > > > Thanks
> > > > >
> > > > >
> > > > >
> > >
> > >
> > >
>
>
>


Nov 19 '05 #8
Thanks for the info!

"Kevin Spencer" wrote:
You can put the timer into Session. You can't load a popup window from
Session. It has to be done on the client. However, you could store data in
Session that could be used by a Page class to spawn a popup. It would be
user-specific.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:FD**********************************@microsof t.com...
Hi,
You said

"If so, put a timer in Session,
and set up an event handler for the timer's Elapsed event that does what

you
want."

I want it to be user specific. So If I do the checking in in Session then
can I load the popup from there?

Thanks

"Kevin Spencer" wrote:
> Thanks. Can I load a popup form session?

I don't understand the question.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Chris" <Ch***@discussions.microsoft.com> wrote in message
news:69**********************************@microsof t.com...
> Thanks. Can I load a popup form session?
>
> "Kevin Spencer" wrote:
>
> > Hard to say for sure. Is this user-specific? If so, put a timer in
Session,
> > and set up an event handler for the timer's Elapsed event that does what you
> > want. If it is for all users, put the timer in Application Cache. There > > would also have to be a variable in Session or Application that idicates > > whether or not there are new messages. Each Page could check that
variable
> > to see whether or not there are new messages. The Page would then reset the
> > variable back to its original state.
> >
> > --
> > HTH,
> > Kevin Spencer
> > ..Net Developer
> > Microsoft MVP
> > Neither a follower
> > nor a lender be.
> >
> > "Chris" <Ch***@discussions.microsoft.com> wrote in message
> > news:42**********************************@microsof t.com...
> > > Hi,
> > > What I need to know, apart from that control, is how can I have a
process
> > > started when a user logs in an application and every few minutes
checks
> > the
> > > database for new messages. The user can be on any page, it doesn't
matter.
> > > The process will be running separately.
> > >
> > > "Kevin Spencer" wrote:
> > >
> > > > Thanks. Now you want to know how to modify that Control to do what you
> > want?
> > > > Well, I don't have the code for the Control, so I can't tell you
how. I
> > > > could always download it and modify it, but I don't think you would pay
> > what
> > > > I would charge to do that!
> > > >
> > > > --
> > > > HTH,
> > > > Kevin Spencer
> > > > ..Net Developer
> > > > Microsoft MVP
> > > > Neither a follower
> > > > nor a lender be.
> > > >
> > > > "Chris" <Ch***@discussions.microsoft.com> wrote in message
> > > > news:CD**********************************@microsof t.com...
> > > > > Hi,
> > > > > Chek it out at http://codeproject.com/asppopup.asp
> > > > >
> > > > > That cntrol has to be placed on a page itself.
> > > > >
> > > > > "Kevin Spencer" wrote:
> > > > >
> > > > > > > I plan on using the one on codeproject, however
> > > > > >
> > > > > > The one WHAT?
> > > > > >
> > > > > > When you coin a term like "popup control" you must keep in mind that
> > > > this is
> > > > > > not a common term, but one you invented. You need to tell us, > > therefore,
> > > > > > what it is you're describing. If I told you that my foobar had a > > > > problem,
> > > > > > what would I be talking about? How could you help me solve it? > > > > > >
> > > > > > At this point, I can tell you that it is certainly possible to > > create a
> > > > > > client-side entity of some sort that can query a database
> > periodically.
> > > > > >
> > > > > > --
> > > > > > HTH,
> > > > > > Kevin Spencer
> > > > > > ..Net Developer
> > > > > > Microsoft MVP
> > > > > > Neither a follower
> > > > > > nor a lender be.
> > > > > >
> > > > > > "Chris" <Ch***@discussions.microsoft.com> wrote in message
> > > > > > news:29**********************************@microsof t.com...
> > > > > > > Hi,
> > > > > > > I want to use a popup control in my asp app like the one in > > outlook
> > > > web
> > > > > > > access and msn. This will be used to notify users of a change in
> > the
> > > > > > > database. I plan on using the one on codeproject, however, how can
> > I
> > > > have
> > > > > > the
> > > > > > > popup control check by itself every minute or two minutes in the
> > > > database
> > > > > > > instead of waiting for the current page (which the control is on)
> > to
> > > > be
> > > > > > > refreshed or postback?
> > > > > > >
> > > > > > > Thanks
> > > > > >
> > > > > >
> > > > > >
> > > >
> > > >
> > > >
> >
> >
> >


Nov 19 '05 #9

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

Similar topics

4
by: PHPkemon | last post by:
Hi there, A few weeks ago I made a post and got an answer which seemed very logical. Here's part of the post: PHPkemon wrote: > I think I've figured out how to do the main things like...
1
by: Krist | last post by:
Hi All, There is some additional info I forget on this same topic I just posted. I have a database design question, pls give me some help.. I want to define tables for salesman's sales target...
0
by: Jim | last post by:
I need some help getting started with a .NET web project for a commercial site. I am new to .NET and my understanding of some (but not all) of its concepts is a little sparse. I apologize for the...
9
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with...
2
by: Carlo, MCP | last post by:
Hi, Sorry for posting twice, but I hope in your comprehension. Please help me! I'm troubling from months with a serious serialization problem that I'm not able to solve. I try to describe as...
2
by: Steve K | last post by:
I got a bit of a problem I like some help on. I'm designing an online training module for people that work in food processing plants. This is my target audience. These workers have little or no...
7
by: david | last post by:
I have asked this question before. But it does not work for me. Given radion buttons in the web form design page. What I did is described as follows. A panel control is dragged into the design...
10
by: David Thielen | last post by:
Hi; I have help html pages for each page of my ASP.NET webapp. So for the page datasource.aspx, I have help\datasource.htm. Bu what I want when the hyperlink is clicked, for it to look for the...
53
by: Hexman | last post by:
Hello All, I'd like your comments on the code below. The sub does exactly what I want it to do but I don't feel that it is solid as all. It seems like I'm using some VB6 code, .Net2003 code,...
2
by: Startup | last post by:
Hello Guys and Gals I have started web site called indiaclaims.com. I am not happy with the design of the main page. Iam a novice and a non - techie. Can anybody help me with a smart...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

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.