|
-
May 2nd, 2007, 05:05 AM
#1
Thread Starter
Junior Member
[RESOLVED] excel file
hi all, how to make the first row as bold in an excel file....
-
May 2nd, 2007, 05:11 AM
#2
Re: excel file
how do you assign values to the excel file...
If an answer to your question has been helpful, then please, Rate it!
Have done Projects in Access and Member management systems using BioMetric devices, Smart cards and BarCodes.
-
May 2nd, 2007, 05:19 AM
#3
Thread Starter
Junior Member
Re: excel file
just i will be assigning values to the first row with for loop. i will be numbering from 1 to 30. now i want that first row to be in bold
-
May 2nd, 2007, 06:06 AM
#4
Re: excel file
Do you know what the range of the first line is?
-
May 2nd, 2007, 06:10 AM
#5
Thread Starter
Junior Member
Re: excel file
i don no.... just i want to bold that first row only...
-
May 2nd, 2007, 06:13 AM
#6
Re: excel file
But, where is the first row?
Is it in A:? B:? C:?
Excel deals with ranges. You can do anything (pretty much) that you want to a specified range, but you are least need to know where the range starts.
-
May 2nd, 2007, 06:16 AM
#7
Re: excel file
Example: Here is something I pulled out of one of my programs.
Code:
shWorkSheet.Range("A1:Q5").Font.Bold = True
shWorkSheet is declared As Worksheet.
I'm telling it to start at A1 and go down to Q1, then over to Q5 and bold everything in between.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|