Vicente Barberá
|
| Posted: 03/03/2002, 11:55 PM |
|
Well, i have to tables on my datebase, one name items and other name
parragraphs of the items. My aplication is a editor of item.
Each item has a x number of paragraphs and an image asociated to each
paragraph, the image can be align left or right of the paragraphs. My
problem is tha i need to show the images correctly, how can display the
image to the left or to the right of each paragraph?
Sorry about my english again,
ViNcE.
|
|
|
 |
Alexey Alexapolsky
|
| Posted: 03/04/2002, 2:17 AM |
|
Is item with paragraphs in Record Form ?
Or it's a Record + Grid of paragraphs ?
--
Alex
CodeCharge Developer
"Vicente Barberá" <vicente@ideas-e.net> wrote in message
news:a5v998$hoc$1@news.codecharge.com...
> Well, i have to tables on my datebase, one name items and other name
> parragraphs of the items. My aplication is a editor of item.
>
> Each item has a x number of paragraphs and an image asociated to each
> paragraph, the image can be align left or right of the paragraphs. My
> problem is tha i need to show the images correctly, how can display the
> image to the left or to the right of each paragraph?
>
> Sorry about my english again,
> ViNcE.
>
>
|
|
|
 |
Vicente Barberá
|
| Posted: 03/04/2002, 2:20 AM |
|
It's a record ( the title ) and a grid with paragraphs, content of paragraph
and image aling left or right.
"Alexey Alexapolsky" <alexa@codecharge.com> escribió en el mensaje
news:a5vhj4$cn$2@news.codecharge.com...
>
> Is item with paragraphs in Record Form ?
> Or it's a Record + Grid of paragraphs ?
>
> --
> Alex
> CodeCharge Developer
>
>
> "Vicente Barberá" <vicente@ideas-e.net> wrote in message
>news:a5v998$hoc$1@news.codecharge.com...
> > Well, i have to tables on my datebase, one name items and other name
> > parragraphs of the items. My aplication is a editor of item.
> >
> > Each item has a x number of paragraphs and an image asociated to each
> > paragraph, the image can be align left or right of the paragraphs. My
> > problem is tha i need to show the images correctly, how can display the
> > image to the left or to the right of each paragraph?
> >
> > Sorry about my english again,
> > ViNcE.
> >
> >
>
>
|
|
|
 |
Vicente Barberá
|
| Posted: 03/04/2002, 2:49 AM |
|
Grid with the title of item ( one table ) + a grid with all parragraphs of
this item ( other table ).
"Alexey Alexapolsky" <alexa@codecharge.com> escribió en el mensaje
news:a5vhj4$cn$2@news.codecharge.com...
>
> Is item with paragraphs in Record Form ?
> Or it's a Record + Grid of paragraphs ?
>
> --
> Alex
> CodeCharge Developer
>
>
> "Vicente Barberá" <vicente@ideas-e.net> wrote in message
>news:a5v998$hoc$1@news.codecharge.com...
> > Well, i have to tables on my datebase, one name items and other name
> > parragraphs of the items. My aplication is a editor of item.
> >
> > Each item has a x number of paragraphs and an image asociated to each
> > paragraph, the image can be align left or right of the paragraphs. My
> > problem is tha i need to show the images correctly, how can display the
> > image to the left or to the right of each paragraph?
> >
> > Sorry about my english again,
> > ViNcE.
> >
> >
>
>
|
|
|
 |
Alexey Alexapolsky
|
| Posted: 03/04/2002, 4:39 AM |
|
Well , you can make these paragraphs Label + check "html" checkbox in form
properties,
so that you will be able to append image html to label variable in
Form Properties/Events/Before Show :
if (need_left_image)
fldparagraph = "<img src=" & fldimage & ">" & fldparagraph
or event better
fldparagraph = "<table><tr><td><img src=" & fldimage & ">" & "</td><td>" &
fldparagraph & "</td><tr></table>"
--
Alex
CodeCharge Developer
"Vicente Barberá" <vicente@ideas-e.net> wrote in message
news:a5vjeu$3mb$1@news.codecharge.com...
> Grid with the title of item ( one table ) + a grid with all parragraphs of
> this item ( other table ).
>
>
> "Alexey Alexapolsky" <alexa@codecharge.com> escribió en el mensaje
>news:a5vhj4$cn$2@news.codecharge.com...
> >
> > Is item with paragraphs in Record Form ?
> > Or it's a Record + Grid of paragraphs ?
> >
> > --
> > Alex
> > CodeCharge Developer
> >
> >
> > "Vicente Barberá" <vicente@ideas-e.net> wrote in message
> >news:a5v998$hoc$1@news.codecharge.com...
> > > Well, i have to tables on my datebase, one name items and other name
> > > parragraphs of the items. My aplication is a editor of item.
> > >
> > > Each item has a x number of paragraphs and an image asociated to each
> > > paragraph, the image can be align left or right of the paragraphs. My
> > > problem is tha i need to show the images correctly, how can display
the
> > > image to the left or to the right of each paragraph?
> > >
> > > Sorry about my english again,
> > > ViNcE.
> > >
> > >
> >
> >
>
>
|
|
|
 |
Vicente Barberá
|
| Posted: 03/04/2002, 4:53 AM |
|
I don't understand your solution...
you say something like
my estructure is
form preview paragrahp
contentParagraph label
image label
and this is shows like...
Item title
==================================
bla blabla bla bla bla bla bla bla bla bla Image
bla blabla bla bla bla bla bla bla bla bla
bla blabla bla bla bla bla bla bla bla bla
==================================
==================================
bla blabla bla bla bla bla bla bla bla bla Image
bla blabla bla bla bla bla bla bla bla bla
bla blabla bla bla bla bla bla bla bla bla
==================================
sorry i don't understand your solution,
thx.
"Alexey Alexapolsky" <alexa@codecharge.com> escribió en el mensaje
news:a5vpsr$cbt$2@news.codecharge.com...
> Well , you can make these paragraphs Label + check "html" checkbox in form
> properties,
> so that you will be able to append image html to label variable in
> Form Properties/Events/Before Show :
>
> if (need_left_image)
> fldparagraph = "<img src=" & fldimage & ">" & fldparagraph
>
> or event better
>
> fldparagraph = "<table><tr><td><img src=" & fldimage & ">" & "</td><td>"
&
> fldparagraph & "</td><tr></table>"
>
>
> --
> Alex
> CodeCharge Developer
>
>
> "Vicente Barberá" <vicente@ideas-e.net> wrote in message
>news:a5vjeu$3mb$1@news.codecharge.com...
> > Grid with the title of item ( one table ) + a grid with all parragraphs
of
> > this item ( other table ).
> >
> >
> > "Alexey Alexapolsky" <alexa@codecharge.com> escribió en el mensaje
> >news:a5vhj4$cn$2@news.codecharge.com...
> > >
> > > Is item with paragraphs in Record Form ?
> > > Or it's a Record + Grid of paragraphs ?
> > >
> > > --
> > > Alex
> > > CodeCharge Developer
> > >
> > >
> > > "Vicente Barberá" <vicente@ideas-e.net> wrote in message
> > >news:a5v998$hoc$1@news.codecharge.com...
> > > > Well, i have to tables on my datebase, one name items and other name
> > > > parragraphs of the items. My aplication is a editor of item.
> > > >
> > > > Each item has a x number of paragraphs and an image asociated to
each
> > > > paragraph, the image can be align left or right of the paragraphs.
My
> > > > problem is tha i need to show the images correctly, how can display
> the
> > > > image to the left or to the right of each paragraph?
> > > >
> > > > Sorry about my english again,
> > > > ViNcE.
> > > >
> > > >
> > >
> > >
> >
> >
>
>
|
|
|
 |
Alexey Alexapolsky
|
| Posted: 03/04/2002, 6:18 AM |
|
How do you know where image should be , on the left or on the
right of paragraph ?
--
Alex
CodeCharge Developer
"Vicente Barberá" <vicente@ideas-e.net> wrote in message
news:a5vqp5$hmq$1@news.codecharge.com...
> I don't understand your solution...
> you say something like
>
> my estructure is
>
> form preview paragrahp
>
> contentParagraph label
> image label
>
> and this is shows like...
> Item title
> ==================================
> bla blabla bla bla bla bla bla bla bla bla Image
> bla blabla bla bla bla bla bla bla bla bla
> bla blabla bla bla bla bla bla bla bla bla
> ==================================
> ==================================
> bla blabla bla bla bla bla bla bla bla bla Image
> bla blabla bla bla bla bla bla bla bla bla
> bla blabla bla bla bla bla bla bla bla bla
> ==================================
>
> sorry i don't understand your solution,
> thx.
>
>
>
>
> "Alexey Alexapolsky" <alexa@codecharge.com> escribió en el mensaje
>news:a5vpsr$cbt$2@news.codecharge.com...
> > Well , you can make these paragraphs Label + check "html" checkbox in
form
> > properties,
> > so that you will be able to append image html to label variable in
> > Form Properties/Events/Before Show :
> >
> > if (need_left_image)
> > fldparagraph = "<img src=" & fldimage & ">" & fldparagraph
> >
> > or event better
> >
> > fldparagraph = "<table><tr><td><img src=" & fldimage & ">" &
"</td><td>"
> &
> > fldparagraph & "</td><tr></table>"
> >
> >
> > --
> > Alex
> > CodeCharge Developer
> >
> >
> > "Vicente Barberá" <vicente@ideas-e.net> wrote in message
> >news:a5vjeu$3mb$1@news.codecharge.com...
> > > Grid with the title of item ( one table ) + a grid with all
parragraphs
> of
> > > this item ( other table ).
> > >
> > >
> > > "Alexey Alexapolsky" <alexa@codecharge.com> escribió en el mensaje
> > >news:a5vhj4$cn$2@news.codecharge.com...
> > > >
> > > > Is item with paragraphs in Record Form ?
> > > > Or it's a Record + Grid of paragraphs ?
> > > >
> > > > --
> > > > Alex
> > > > CodeCharge Developer
> > > >
> > > >
> > > > "Vicente Barberá" <vicente@ideas-e.net> wrote in message
> > > >news:a5v998$hoc$1@news.codecharge.com...
> > > > > Well, i have to tables on my datebase, one name items and other
name
> > > > > parragraphs of the items. My aplication is a editor of item.
> > > > >
> > > > > Each item has a x number of paragraphs and an image asociated to
> each
> > > > > paragraph, the image can be align left or right of the paragraphs.
> My
> > > > > problem is tha i need to show the images correctly, how can
display
> > the
> > > > > image to the left or to the right of each paragraph?
> > > > >
> > > > > Sorry about my english again,
> > > > > ViNcE.
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>
|
|
|
 |
Vicente Barberá
|
| Posted: 03/04/2002, 7:07 AM |
|
Yes, when i introduce a new paragraph on the BD i tell where the image
should placed ( right or left ), theres is a field in paragraphs table
called alingImage that contained the position of the image.
"Alexey Alexapolsky" <alexa@codecharge.com> escribió en el mensaje
news:a5vvn4$q8t$2@news.codecharge.com...
> How do you know where image should be , on the left or on the
> right of paragraph ?
>
> --
> Alex
> CodeCharge Developer
>
>
> "Vicente Barberá" <vicente@ideas-e.net> wrote in message
>news:a5vqp5$hmq$1@news.codecharge.com...
> > I don't understand your solution...
> > you say something like
> >
> > my estructure is
> >
> > form preview paragrahp
> >
> > contentParagraph label
> > image label
> >
> > and this is shows like...
> > Item title
> > ==================================
> > bla blabla bla bla bla bla bla bla bla bla Image
> > bla blabla bla bla bla bla bla bla bla bla
> > bla blabla bla bla bla bla bla bla bla bla
> > ==================================
> > ==================================
> > bla blabla bla bla bla bla bla bla bla bla Image
> > bla blabla bla bla bla bla bla bla bla bla
> > bla blabla bla bla bla bla bla bla bla bla
> > ==================================
> >
> > sorry i don't understand your solution,
> > thx.
> >
> >
> >
> >
> > "Alexey Alexapolsky" <alexa@codecharge.com> escribió en el mensaje
> >news:a5vpsr$cbt$2@news.codecharge.com...
> > > Well , you can make these paragraphs Label + check "html" checkbox in
> form
> > > properties,
> > > so that you will be able to append image html to label variable in
> > > Form Properties/Events/Before Show :
> > >
> > > if (need_left_image)
> > > fldparagraph = "<img src=" & fldimage & ">" & fldparagraph
> > >
> > > or event better
> > >
> > > fldparagraph = "<table><tr><td><img src=" & fldimage & ">" &
> "</td><td>"
> > &
> > > fldparagraph & "</td><tr></table>"
> > >
> > >
> > > --
> > > Alex
> > > CodeCharge Developer
> > >
> > >
> > > "Vicente Barberá" <vicente@ideas-e.net> wrote in message
> > >news:a5vjeu$3mb$1@news.codecharge.com...
> > > > Grid with the title of item ( one table ) + a grid with all
> parragraphs
> > of
> > > > this item ( other table ).
> > > >
> > > >
> > > > "Alexey Alexapolsky" <alexa@codecharge.com> escribió en el mensaje
> > > >news:a5vhj4$cn$2@news.codecharge.com...
> > > > >
> > > > > Is item with paragraphs in Record Form ?
> > > > > Or it's a Record + Grid of paragraphs ?
> > > > >
> > > > > --
> > > > > Alex
> > > > > CodeCharge Developer
> > > > >
> > > > >
> > > > > "Vicente Barberá" <vicente@ideas-e.net> wrote in message
> > > > >news:a5v998$hoc$1@news.codecharge.com...
> > > > > > Well, i have to tables on my datebase, one name items and other
> name
> > > > > > parragraphs of the items. My aplication is a editor of item.
> > > > > >
> > > > > > Each item has a x number of paragraphs and an image asociated to
> > each
> > > > > > paragraph, the image can be align left or right of the
paragraphs.
> > My
> > > > > > problem is tha i need to show the images correctly, how can
> display
> > > the
> > > > > > image to the left or to the right of each paragraph?
> > > > > >
> > > > > > Sorry about my english again,
> > > > > > ViNcE.
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>
|
|
|
 |
Vicente Barberá
|
| Posted: 03/04/2002, 11:52 PM |
|
There is no solution to my problem, isn't it?
"Vicente Barberá" <vicente@ideas-e.net> escribió en el mensaje
news:a5v998$hoc$1@news.codecharge.com...
> Well, i have to tables on my datebase, one name items and other name
> parragraphs of the items. My aplication is a editor of item.
>
> Each item has a x number of paragraphs and an image asociated to each
> paragraph, the image can be align left or right of the paragraphs. My
> problem is tha i need to show the images correctly, how can display the
> image to the left or to the right of each paragraph?
>
> Sorry about my english again,
> ViNcE.
>
>
|
|
|
 |
Alexey Alexapolsky
|
| Posted: 03/05/2002, 6:58 AM |
|
The solution is right above in the thread (Before Show event),
use Label type fields where you can append a lot of html tags to
achieve your aligment goals.
--
Alex
CodeCharge Developer
"Vicente Barberá" <vicente@ideas-e.net> wrote in message
news:a61tg4$44f$1@news.codecharge.com...
> There is no solution to my problem, isn't it?
>
> "Vicente Barberá" <vicente@ideas-e.net> escribió en el mensaje
>news:a5v998$hoc$1@news.codecharge.com...
> > Well, i have to tables on my datebase, one name items and other name
> > parragraphs of the items. My aplication is a editor of item.
> >
> > Each item has a x number of paragraphs and an image asociated to each
> > paragraph, the image can be align left or right of the paragraphs. My
> > problem is tha i need to show the images correctly, how can display the
> > image to the left or to the right of each paragraph?
> >
> > Sorry about my english again,
> > ViNcE.
> >
> >
>
>
|
|
|
 |
|