473,796 Members | 2,628 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Excel properties

Curt and McKirahan have been very helpful the past week as I have been
introduced to something new to me: generating a spreadsheet from ASP.

Now that I have the spreadsheet, I am in need of knowledge about how to
control the properties. By properties, I mean font, hyperlink, and color
information. I'd like the spreadsheet to have the same data as the HTML page
it's getting the data from, but in a different format. I have been searching
in
several places, including the Excel Help files, but cannot find any info on
how to do this.

I'm not asking anyone to tell me how to do this; just looking for where to
find out how to do this.

Anyone here have any idea where I can look?
Jul 22 '05
13 1813
<la**********@y ahoo.com> wrote in message
news:11******** *************@o 13g2000cwo.goog legroups.com...

Have two style sheets, one where it's an HTML view, the other for
Excel.


So you specify one on the new ASP page (not the one which contains the
button to geerate the .xls file)?
Jul 22 '05 #11
What I was getting at is maybe generate it two ways, one visually for the
web and one for "saving" where you strip out all the extra tags when a
button is clicked?

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"middletree " <mi********@HTO mail.com> wrote in message
news:uk******** ******@tk2msftn gp13.phx.gbl...
I've used this method to change the appearance of a web page when printing
before, and in fact, use it on this same Intranet app. I didn't know you
could specify it for Excel files that you build through ASP. In your
example, does it use the media=screeen, or media=print to apply to the
spreadsheet? Remember, I'm trying to affect the way the spreadsheet looks
on
the screen. It may or may not get printed.
"Curt_C [MVP]" <software_AT_da rkfalz.com> wrote in message
news:ek******** *****@TK2MSFTNG P15.phx.gbl...
Ahh... that's different.
Use something like this to build a different versions for display/use
http://www.darkfalz.com/1066
--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"middletree " <mi********@hto mail.com> wrote in message
news:Oh******** *****@TK2MSFTNG P10.phx.gbl...
>
> "Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
> news:uB******** ******@TK2MSFTN GP09.phx.gbl...
>> In addition to what Curt said, try creating the spreadsheet first in
>> Excel
>> and then save it as HTML. Look at the resulting code so you can "reverse >> engineer" the proper output format you need.
>
>
> I don't think I'm doing a good job of explaining myself. I have a web
> page,
> and is displays data. I want to export that data into a spreadsheet, with > the click of a button. I have this working successfully. However, the
> resulting spreadsheet carries the properties that the HTML version has,
> properties that I don't want it to carry over. The gridlines don't
> show,
> the
> rows are alternating colors, I'd like to change the fonts, and I'd like to > remove the hyperlinks.
>
> I figure this thing must have a DOM or some way to specify properties
> as
> it
> generates the spreadsheet, but I am looking for instructions on how to do > this.
>
>



Jul 22 '05 #12
Ok. I don't have my code handy right now, but as I recall I had:

Page 1, which consists of a table built by ASP using an SQL query. It looks
like this:
http://www.middletree.net/sort.htm

Keep in mind that that's an HTML page that I put out on my personal site,
not the real deal. But I got it by saving the real one to an HTML file, so
it's an example of the possible output for page 1.

Now, Page 1 has a submit button at the bottom (not shown in the example
page), which calls you to what we'll refer to as Page 2. That page has no
HTML, just some ASP. To see that code, see the answer given to me in the
thread which I began March 25 at 11:42 AM Central time. I used that code as
a basis for what I did.

So Page 1 has ASP which builds an HTML table. Page 2 just has some ASP code
which tells it to take everything in that table and build a spreadsheet.
Since Page 2 has no HTML, I don't see room for code which references a
stylesheet.

I'm not trying to be argumentative, just trying to understand how this could
be done. If you tell me that I should just put the style sheet with the
proper formatting in that second page, then I'll try it out first thing
tomorrow morning.

Even then, though, I don't know how I'd code to include the gridlines (which
currently aren't showing in the resulting spreadsheet). I tried simply
having the table to have a border of 1 instead of 0, but that didn't do the
trick. I am still trying to find some documentation which describes the
syntax for this stuff.

I appreciate your bearing with me.
"Curt_C [MVP]" <software_AT_da rkfalz.com> wrote in message
news:#8******** *****@TK2MSFTNG P10.phx.gbl...
What I was getting at is maybe generate it two ways, one visually for the
web and one for "saving" where you strip out all the extra tags when a
button is clicked?

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"middletree " <mi********@HTO mail.com> wrote in message
news:uk******** ******@tk2msftn gp13.phx.gbl...
I've used this method to change the appearance of a web page when printing before, and in fact, use it on this same Intranet app. I didn't know you
could specify it for Excel files that you build through ASP. In your
example, does it use the media=screeen, or media=print to apply to the
spreadsheet? Remember, I'm trying to affect the way the spreadsheet looks on
the screen. It may or may not get printed.
"Curt_C [MVP]" <software_AT_da rkfalz.com> wrote in message
news:ek******** *****@TK2MSFTNG P15.phx.gbl...
Ahh... that's different.
Use something like this to build a different versions for display/use
http://www.darkfalz.com/1066
--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"middletree " <mi********@hto mail.com> wrote in message
news:Oh******** *****@TK2MSFTNG P10.phx.gbl...
>
> "Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
> news:uB******** ******@TK2MSFTN GP09.phx.gbl...
>> In addition to what Curt said, try creating the spreadsheet first in
>> Excel
>> and then save it as HTML. Look at the resulting code so you can

"reverse
>> engineer" the proper output format you need.
>
>
> I don't think I'm doing a good job of explaining myself. I have a web
> page,
> and is displays data. I want to export that data into a spreadsheet,

with
> the click of a button. I have this working successfully. However, the
> resulting spreadsheet carries the properties that the HTML version has, > properties that I don't want it to carry over. The gridlines don't
> show,
> the
> rows are alternating colors, I'd like to change the fonts, and I'd
like to
> remove the hyperlinks.
>
> I figure this thing must have a DOM or some way to specify properties
> as
> it
> generates the spreadsheet, but I am looking for instructions on how
to do
> this.
>
>



Jul 22 '05 #13

middletree wrote:
<la**********@y ahoo.com> wrote in message
news:11******** *************@o 13g2000cwo.goog legroups.com...

Have two style sheets, one where it's an HTML view, the other for
Excel.
So you specify one on the new ASP page (not the one which contains

the button to geerate the .xls file)?


The style sheet reference is on the final HTML/XLS page. The reference
would to the CSS would be dynamic.

Jul 22 '05 #14

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

Similar topics

9
8900
by: Paul | last post by:
Hi all Arggghhh........... The problem.....I want the user to be able to create an excel document and name particular cells in the document where they want the data to be placed and then save this out of an XML file or Excel Template file. Next I need to convert a dataset to xml and try and transform this data into the users xml file..........i've seen a few things on this but havent had much success...
0
3109
by: ImraneA | last post by:
Hi there Many thanks to those people who contributed to this group, helped me greatly. Enclose, my code, hope it helps others :- Public Function Export_Excel_9(tbx1 As Variant, tbx2 As Variant, tbx3 As Variant, tbx4 As Variant, tbx5 As Variant, tbx6 As Variant, tbx7 As
0
2822
by: acharyaks | last post by:
Hi life saver, I am using excel component for the development. The purpose is to connect to excel through the odbc connection string. Then through the connection extract data into a dataset and then save the data into a client machine (Intranet) as excel page using the excel component (using Excel = Microsoft.Office.Interop.Excel;) in the code. Please help me. I have wasted so many days on this.
7
11614
by: aacool | last post by:
Hi, I've been trying to open an Excel connection through OLEDB with the code below: string ConnectString =@"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + fileName.Text + ";ExtendedProperties=Excel 8.0;"; OleDbConnection conn = new OleDbConnection(); conn.ConnectionString = ConnectString; conn.Open();
6
12507
by: Matthew Wieder | last post by:
I have the following requirements: Build a stand-alone C# application that asks the user to click in a cell in an Excel spreadsheet, and then displays the address of that cell in the C# application. It seems simple enough, but the problem I'm encountering is as follows: In order for the user to select the cell from Excel, they must first click once on the Excel window to give it focus and then their second click is what changes the cell...
17
6348
by: Mansi | last post by:
I need to do some research on how to use excel automation from c#. Does anyone know of any good books related to this subject? Thanks. Mansi
1
2580
by: Randall Arnold | last post by:
I'm converting a vbscript program to vb.net. Witht he exception of .net idiosyncrasies, most of it is working well with the same code. My only problem is that some properties and methods are missing from the Chart object. For instance, the following line worked fine in vbscript (csPowerSpeed is the chart): objXL.csPowerSpeed.seriescollection.newseries() However, in VS.Net, newseries is no longer avaialable as a method for series...
7
2689
by: Alan Roberts | last post by:
Can someone please explain the following for me... I am trying to link to a .NET DLL from Excel. Excel needs to pass a reference to itself to the DLL and then the DLL needs to perform some work on the running instance of Excel via that reference. As an example, a VB DLL to return the path to the current active workbook contains the following (in addition to the COM GUIDS automatically added to a new COMClass)... Public Class Class1...
5
6244
by: magix | last post by:
Hi, If I have following code to read the excel file, how do I validate the worksheets name ? In code below, if the filename doesn't contains "SomeName" worksheet, I will need to prompt error. set oConn = server.createobject("adodb.connection") oConn.Provider = "Microsoft.Jet.OLEDB.4.0"
7
12076
by: TG | last post by:
hi! I am trying to create a sql server table from an excel sheet. Here is the code I have: 'This procedure the xlsx file and dumps it to a table in SQL Server
0
9524
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
10449
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...
1
10168
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
10003
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
9047
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5568
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4114
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
2
3730
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2924
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.