473,386 Members | 1,654 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,386 software developers and data experts.

formatting text problem

I have a page using a master page the master page consists of a header and
left column table template. In the content area of the default page, I need
to place alot of text. I initially had a table with 1 column and a number of
rows for each paragraph so there would be space between each chunk of text.
However, all the text would not fill up the cells (rows) but instead only
about 10 letters on each line appeared with the rest of the cell to the right
of this text being blank. (like the text was "clingling to the left side
althought there was no alignment of any kind) I then removed the table and
was using labels for each paragraph but I don't know how to put spaces
between labels.

Why is the text not filling out each cell? What is the preferred method of
doing this simple thing?

I am a vb.net windows programmer and have no experience with this kind of
strange behavior.
--
smHaig
Mar 2 '06 #1
3 1371
DWS
smHaig,

Thanks for trying two differnt methods.
Here's some quick html help.
Is a space in html
<br /> is a line break

Put a line break between your paragraph labels. You can do this visually in
the designer by moving the cursor directly after the label and pressing the
enter key, Visual Studio will add a line break to your page markup.

Good Luck
DWS

"smHaig" wrote:
I have a page using a master page the master page consists of a header and
left column table template. In the content area of the default page, I need
to place alot of text. I initially had a table with 1 column and a number of
rows for each paragraph so there would be space between each chunk of text.
However, all the text would not fill up the cells (rows) but instead only
about 10 letters on each line appeared with the rest of the cell to the right
of this text being blank. (like the text was "clingling to the left side
althought there was no alignment of any kind) I then removed the table and
was using labels for each paragraph but I don't know how to put spaces
between labels.

Why is the text not filling out each cell? What is the preferred method of
doing this simple thing?

I am a vb.net windows programmer and have no experience with this kind of
strange behavior.
--
smHaig

Mar 2 '06 #2
Do you mean between the labels? because I was putting the text in the labels
in the attempt to prevent the problem I was having which is that when the
text to put in table cells it looks like this:

the text stops at

this position and
does not
go to the end of the
cell which is the entire
length of the page. This
is in a content section
since I have a master
page that has an image
on the left hand side.

What is the correct way to put alot of text on a page. If in a table, which
is what I presumed it to be, why is the above happening when I have no
alignments on my 1 col table?
--
smHaig
"DWS" wrote:
smHaig,

Thanks for trying two differnt methods.
Here's some quick html help.
Is a space in html
<br /> is a line break

Put a line break between your paragraph labels. You can do this visually in
the designer by moving the cursor directly after the label and pressing the
enter key, Visual Studio will add a line break to your page markup.

Good Luck
DWS

"smHaig" wrote:
I have a page using a master page the master page consists of a header and
left column table template. In the content area of the default page, I need
to place alot of text. I initially had a table with 1 column and a number of
rows for each paragraph so there would be space between each chunk of text.
However, all the text would not fill up the cells (rows) but instead only
about 10 letters on each line appeared with the rest of the cell to the right
of this text being blank. (like the text was "clingling to the left side
althought there was no alignment of any kind) I then removed the table and
was using labels for each paragraph but I don't know how to put spaces
between labels.

Why is the text not filling out each cell? What is the preferred method of
doing this simple thing?

I am a vb.net windows programmer and have no experience with this kind of
strange behavior.
--
smHaig

Mar 2 '06 #3
I think I have figured it out and it is cautionary tale for programmers not
familiar with the vagaries of HTML. "Look at the source. Don't trust the
design."

Although I had spread out my table to cover the entire content section and
the souce indicated it was 734px, each row maintained the original table
size, 100 px. thus when I ran it, the text, though looking like it went
across 734px in design mode, really only went 100 px, thus the "clinging to
the margin" look. When I went into the source and changed the size of each
row to 734, it went across ok (it looks like it did when I ran it anyway). I
feel like I am back with foxpro for dos: @row...@col, etc.
--
smHaig
"smHaig" wrote:
I have a page using a master page the master page consists of a header and
left column table template. In the content area of the default page, I need
to place alot of text. I initially had a table with 1 column and a number of
rows for each paragraph so there would be space between each chunk of text.
However, all the text would not fill up the cells (rows) but instead only
about 10 letters on each line appeared with the rest of the cell to the right
of this text being blank. (like the text was "clingling to the left side
althought there was no alignment of any kind) I then removed the table and
was using labels for each paragraph but I don't know how to put spaces
between labels.

Why is the text not filling out each cell? What is the preferred method of
doing this simple thing?

I am a vb.net windows programmer and have no experience with this kind of
strange behavior.
--
smHaig

Mar 2 '06 #4

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

Similar topics

4
by: Rob Meade | last post by:
Hi all, Ok - this leads on from speaking to a couple here and in the SQL server group... I've an application which allows the user to type in their text into a form, they add 'happy' tags...
3
by: Jouke Langhout | last post by:
Hello all! For quite some time now, I've got the following problem: Access won't close properly when a user closes the application. An ACCESS process stays active and that process can only be...
4
by: Bradley | last post by:
I have an A2000 database in which I have a continuous form with a tick box. There is also a text box with a conditional format that is based on the expression , if it's true then change the...
8
by: Mike MacSween | last post by:
tblCourses one to many to tblEvents. A course may have an intro workshop (a type of event), a mid course workshop, a final exam. Or any combination. Or something different in the future. At...
2
by: Sara | last post by:
The problem: Conditional formatting bold, red when field Value < date() sets the field background to white - always - whether condition is met or not. I want the field unfilled and just red/bold...
8
by: G.Ashok | last post by:
Hi, I have created CultureInfo object and specified required digit grouping in it. The one of the overloaded ToString methods of Decimal type has parameters to format the value with required...
8
by: Typehigh | last post by:
I have many text fields with conditional formatting applied, specifically when the condition is "Field Has Focus". Without any events associated with the fields the conditional formatting works...
14
by: Scott M. | last post by:
Ok, this is driving me nuts... I am using VS.NET 2003 and trying to take an item out of a row in a loosely-typed dataset and place it in a label as a currency. As it is now, I am getting my...
10
by: sara | last post by:
Hi - I have a report that is 14 columnar sub-reports (Line up: Position- holders in each of our 14 locations - Manager, Assistant Manager, Receiving, Office, etc). I output directly to PDF...
6
by: Tomasz J | last post by:
Hello developers, I bind my TextBox control specyfying a format stored in my application global ApplicationContext object - it has a static string CurrencyFormat property. The problem - this...
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: 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
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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...

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.