473,406 Members | 2,312 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,406 software developers and data experts.

How is this done

I was browsing the newsgroup and viewed a website that
interest me. Look at this example:

http://www.fullrevolution.com/calendar40/calendar.asp?
caltype=day&date=1/29/2004#Eight

It is a calendar based internet application. I was
wondering how it displays blocks of time out similar to
Outlook. If you view that page, you will notice that it
shows a day view and has conference room blocked out from
8-5 and they showed it in a graphical form. I can
understand writing out a message saying conference room
for each allocated time slot, but how do they continue
the rectangle block for the allocated time. If anyone
understand what I am trying to say and has any resources,
I would be delighted to hear conversations about this.
Thanks for all your help.
Jul 19 '05 #1
7 1312
Jon
http://www.fullrev.com/calendar_overview.asp

"James Johnson" <an*******@discussions.microsoft.com> wrote in message
news:03****************************@phx.gbl...
I was browsing the newsgroup and viewed a website that
interest me. Look at this example:

http://www.fullrevolution.com/calendar40/calendar.asp?
caltype=day&date=1/29/2004#Eight

It is a calendar based internet application. I was
wondering how it displays blocks of time out similar to
Outlook. If you view that page, you will notice that it
shows a day view and has conference room blocked out from
8-5 and they showed it in a graphical form. I can
understand writing out a message saying conference room
for each allocated time slot, but how do they continue
the rectangle block for the allocated time. If anyone
understand what I am trying to say and has any resources,
I would be delighted to hear conversations about this.
Thanks for all your help.

Jul 19 '05 #2
"James Johnson" wrote:

http://www.fullrevolution.com/calend.../29/2004#Eight
...I was wondering how it displays blocks of time
out similar to Outlook...


Badly.

Try looking at it with a standards-based browser, like Mozilla or Opera.
Ugh.
http://www.mozilla.org/
http://www.opera.com/
--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.
Jul 19 '05 #3
>>
http://www.fullrev.com/calendar_overview.asp
No. That tells about the product, I was wondering how you
can programmatically block out time spans using ASP. For
instance, if your showing a day schedule, how do you show
on a website that from 8-5 is allocated to a certain
project using a block or rectangle to show there is an
event, just like Microsoft Outlook.

Hopefully that helps.
-----Original Message-----

"James Johnson" <an*******@discussions.microsoft.com> wrote in messagenews:03****************************@phx.gbl...
I was browsing the newsgroup and viewed a website that
interest me. Look at this example:

http://www.fullrevolution.com/calendar40/calendar.asp?
caltype=day&date=1/29/2004#Eight

It is a calendar based internet application. I was
wondering how it displays blocks of time out similar to
Outlook. If you view that page, you will notice that it
shows a day view and has conference room blocked out from 8-5 and they showed it in a graphical form. I can
understand writing out a message saying conference room
for each allocated time slot, but how do they continue
the rectangle block for the allocated time. If anyone
understand what I am trying to say and has any resources, I would be delighted to hear conversations about this.
Thanks for all your help.

.

Jul 19 '05 #4
It's just HTML tables most likely, with some coloring and preset sizes.
--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
"James Johnson" <an*******@discussions.microsoft.com> wrote in message
news:07****************************@phx.gbl...

http://www.fullrev.com/calendar_overview.asp


No. That tells about the product, I was wondering how you
can programmatically block out time spans using ASP. For
instance, if your showing a day schedule, how do you show
on a website that from 8-5 is allocated to a certain
project using a block or rectangle to show there is an
event, just like Microsoft Outlook.

Hopefully that helps.
-----Original Message-----

"James Johnson" <an*******@discussions.microsoft.com>

wrote in message
news:03****************************@phx.gbl...
I was browsing the newsgroup and viewed a website that
interest me. Look at this example:

http://www.fullrevolution.com/calendar40/calendar.asp?
caltype=day&date=1/29/2004#Eight

It is a calendar based internet application. I was
wondering how it displays blocks of time out similar to
Outlook. If you view that page, you will notice that it
shows a day view and has conference room blocked out from 8-5 and they showed it in a graphical form. I can
understand writing out a message saying conference room
for each allocated time slot, but how do they continue
the rectangle block for the allocated time. If anyone
understand what I am trying to say and has any resources, I would be delighted to hear conversations about this.
Thanks for all your help.

.

Jul 19 '05 #5
On Thu, 1 Jan 2004 21:02:29 -0800, "James Johnson"
<an*******@discussions.microsoft.com> wrote:
I was browsing the newsgroup and viewed a website that
interest me. Look at this example:

http://www.fullrevolution.com/calendar40/calendar.asp?
caltype=day&date=1/29/2004#Eight

It is a calendar based internet application. I was
wondering how it displays blocks of time out similar to
Outlook. If you view that page, you will notice that it
shows a day view and has conference room blocked out from
8-5 and they showed it in a graphical form. I can
understand writing out a message saying conference room
for each allocated time slot, but how do they continue
the rectangle block for the allocated time. If anyone
understand what I am trying to say and has any resources,
I would be delighted to hear conversations about this.


Tables. It's not ASP as such, just the HTML code, using ROWSPAN.
Each half hour is a row, so rowspan = "4" would be a two-hour block.

Jeff
Jul 19 '05 #6
Jon
Each 'event' is a table in it's own right, within that cell, view the
source:

<TABLE CLASS='EventMonthTable'>
<TR>
<TD WIDTH='10' BGCOLOR='#800080'><FONT
CLASS='EventMonthTitleFont'>&nbsp;&nbsp;</FONT></TD>
<TD CLASS='EventMonthTimeCell'><FONT
CLASS='EventMonthTimeFont'>09:00AM</FONT></TD>
<TD CLASS='EventMonthTitleCell'><FONT CLASS='EventMonthTitleFont'><A
CLASS='EventMonthTitleFont'
HREF="calendar.asp?action=eventdetail&eventid=2146 1"
onclick="NewWindow(this.href,'aspWebCalendar','430 ','500','yes');return
false">misc</A></FONT></TD>
</TR>
</TABLE>
Where:

..EventMonthTable { border-style:solid; border-width:1; border-color:black;
border-collapse:collapse; border-width:1; text-align:left;
background-color:white; padding:1; width:100%; }

etc..

I guess the asp is showing each record, in its own table, in time order, on
the day in question.

Jon


"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eS**************@TK2MSFTNGP10.phx.gbl...
It's just HTML tables most likely, with some coloring and preset sizes.
--
Curt Christianson
Owner/Lead Developer, DF-Software
www.Darkfalz.com
"James Johnson" <an*******@discussions.microsoft.com> wrote in message
news:07****************************@phx.gbl...
>
http://www.fullrev.com/calendar_overview.asp


No. That tells about the product, I was wondering how you
can programmatically block out time spans using ASP. For
instance, if your showing a day schedule, how do you show
on a website that from 8-5 is allocated to a certain
project using a block or rectangle to show there is an
event, just like Microsoft Outlook.

Hopefully that helps.
-----Original Message-----

"James Johnson" <an*******@discussions.microsoft.com>

wrote in message
news:03****************************@phx.gbl...
> I was browsing the newsgroup and viewed a website that
> interest me. Look at this example:
>
> http://www.fullrevolution.com/calendar40/calendar.asp?
> caltype=day&date=1/29/2004#Eight
>
> It is a calendar based internet application. I was
> wondering how it displays blocks of time out similar to
> Outlook. If you view that page, you will notice that it
> shows a day view and has conference room blocked out

from
> 8-5 and they showed it in a graphical form. I can
> understand writing out a message saying conference room
> for each allocated time slot, but how do they continue
> the rectangle block for the allocated time. If anyone
> understand what I am trying to say and has any

resources,
> I would be delighted to hear conversations about this.
> Thanks for all your help.
>
>
.


Jul 19 '05 #7
That would be SUPER EASY to build but VERY time-consuming ... lol
On Thu, 1 Jan 2004 21:02:29 -0800, "James Johnson"
<an*******@discussions.microsoft.com> wrote:
I was browsing the newsgroup and viewed a website that
interest me. Look at this example:

http://www.fullrevolution.com/calendar40/calendar.asp?
caltype=day&date=1/29/2004#Eight

It is a calendar based internet application. I was
wondering how it displays blocks of time out similar to
Outlook. If you view that page, you will notice that it
shows a day view and has conference room blocked out from
8-5 and they showed it in a graphical form. I can
understand writing out a message saying conference room
for each allocated time slot, but how do they continue
the rectangle block for the allocated time. If anyone
understand what I am trying to say and has any resources,
I would be delighted to hear conversations about this.
Thanks for all your help.


;)

Brynn
www.coolpier.com
Jul 19 '05 #8

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

Similar topics

6
by: Sugapablo | last post by:
I had an idea for something that I can't find any evidence if it exists, or if it can be done. I assume it can be done. What I'd like to be able to do, is to allow people who come to my website,...
9
by: Steven T. Hatton | last post by:
This was written for the gnu.g++.help list. It rather clearly spells out the most important feature of Java that I believe C++ lacks. I really don't believe the C++ Standard sepcifies enough for a...
11
by: Sharon | last post by:
I'm writing a new control derived from UserControl. I need to get an event when the control is done resizing. I tried the Resize, SizeChanged, Move and the Layout events and I also tried to...
59
by: Alan Silver | last post by:
Hello, This is NOT a troll, it's a genuine question. Please read right through to see why. I have been using Vusual Basic and Classic ASP for some years, and have now started looking at...
17
by: blackswift | last post by:
code is from Warsaw university's CEPC code . They are world champion in the ICPC finals. #include <iostream> #include <cstdio> #include <algorithm> using namespace std; #define FOR(i,a,b)...
12
by: Ark | last post by:
Hello NG, I arrange data in structs like { members... uint16_t crc; more members, maybe... } Then I need to save them, up to and including crc, in non-volatile memory or a file, as the case...
15
by: Chris | last post by:
This is just some dummy code to mimic what's being done in the real code. The actual code is python which is used as a scripting language in a third party app. The data structure returned by the...
3
dfound
by: dfound | last post by:
#include<windows.h> #include<dos.h> #include<dir.h> #include<fstream.h> #include<stdio.h> #include<process.h> #include"resource.h" //resource header file
2
by: poolboi | last post by:
hey guys, i've done most of my web app. for searching almost done but then i got a small little problem with logging in i need to know how session tracking is done in perl if not my log in page...
2
by: Zerge | last post by:
I can launch threads just fine, but then I have to do a time.sleep(n) so the main thread from which they where launched will wait for all the threads to return. How can I detect when all threads...
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...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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,...
0
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...
0
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...
0
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...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.