PC Review


Reply
Thread Tools Rate Thread

Can grow vertical lines?

 
 
=?Utf-8?B?Q29kZSBBZ2VudA==?=
Guest
Posts: n/a
 
      16th Oct 2006
I posted a question about a week ago about can grow vertical lines. Someone
posted a link to someone that has set up a database that does that but I
can't figure out all the code to make it work. Is there something I can
import into my database or copy and paste in a module? Basically I can't
figure out what all that code means, and cant get it to work.
 
Reply With Quote
 
 
 
 
Gina Whipp
Guest
Posts: n/a
 
      16th Oct 2006
Ummm, what was the link or the database? No one here can see what code
you're refering to to make suggestions.

--
Gina Whipp

"I feel I have been denied critical, need to know, information!" - Tremors
II


"Code Agent" <(E-Mail Removed)> wrote in message
news:43DCE572-1951-4927-B305-(E-Mail Removed)...
>I posted a question about a week ago about can grow vertical lines. Someone
> posted a link to someone that has set up a database that does that but I
> can't figure out all the code to make it work. Is there something I can
> import into my database or copy and paste in a module? Basically I can't
> figure out what all that code means, and cant get it to work.



 
Reply With Quote
 
=?Utf-8?B?Q29kZSBBZ2VudA==?=
Guest
Posts: n/a
 
      16th Oct 2006
Someone sent me this link: www.lebans.com There is a database you can
download that has the code for it


"Gina Whipp" wrote:

> Ummm, what was the link or the database? No one here can see what code
> you're refering to to make suggestions.
>
> --
> Gina Whipp
>
> "I feel I have been denied critical, need to know, information!" - Tremors
> II
>
>
> "Code Agent" <(E-Mail Removed)> wrote in message
> news:43DCE572-1951-4927-B305-(E-Mail Removed)...
> >I posted a question about a week ago about can grow vertical lines. Someone
> > posted a link to someone that has set up a database that does that but I
> > can't figure out all the code to make it work. Is there something I can
> > import into my database or copy and paste in a module? Basically I can't
> > figure out what all that code means, and cant get it to work.

>
>
>

 
Reply With Quote
 
=?Utf-8?B?Q29kZSBBZ2VudA==?=
Guest
Posts: n/a
 
      16th Oct 2006
Sorry about that

http://www.lebans.com/PrintLines.htm

"Gina Whipp" wrote:

> Okay, which database, there are quite a few there.
>
> --
> Gina Whipp
>
> "I feel I have been denied critical, need to know, information!" - Tremors
> II
>
>
> "Code Agent" <(E-Mail Removed)> wrote in message
> news:985159EF-BDFE-4FF6-9F12-(E-Mail Removed)...
> > Someone sent me this link: www.lebans.com There is a database you can
> > download that has the code for it
> >
> >
> > "Gina Whipp" wrote:
> >
> >> Ummm, what was the link or the database? No one here can see what code
> >> you're refering to to make suggestions.
> >>
> >> --
> >> Gina Whipp
> >>
> >> "I feel I have been denied critical, need to know, information!" -
> >> Tremors
> >> II
> >>
> >>
> >> "Code Agent" <(E-Mail Removed)> wrote in message
> >> news:43DCE572-1951-4927-B305-(E-Mail Removed)...
> >> >I posted a question about a week ago about can grow vertical lines.
> >> >Someone
> >> > posted a link to someone that has set up a database that does that but
> >> > I
> >> > can't figure out all the code to make it work. Is there something I can
> >> > import into my database or copy and paste in a module? Basically I
> >> > can't
> >> > figure out what all that code means, and cant get it to work.
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
Gina Whipp
Guest
Posts: n/a
 
      16th Oct 2006
Okay, which database, there are quite a few there.

--
Gina Whipp

"I feel I have been denied critical, need to know, information!" - Tremors
II


"Code Agent" <(E-Mail Removed)> wrote in message
news:985159EF-BDFE-4FF6-9F12-(E-Mail Removed)...
> Someone sent me this link: www.lebans.com There is a database you can
> download that has the code for it
>
>
> "Gina Whipp" wrote:
>
>> Ummm, what was the link or the database? No one here can see what code
>> you're refering to to make suggestions.
>>
>> --
>> Gina Whipp
>>
>> "I feel I have been denied critical, need to know, information!" -
>> Tremors
>> II
>>
>>
>> "Code Agent" <(E-Mail Removed)> wrote in message
>> news:43DCE572-1951-4927-B305-(E-Mail Removed)...
>> >I posted a question about a week ago about can grow vertical lines.
>> >Someone
>> > posted a link to someone that has set up a database that does that but
>> > I
>> > can't figure out all the code to make it work. Is there something I can
>> > import into my database or copy and paste in a module? Basically I
>> > can't
>> > figure out what all that code means, and cant get it to work.

>>
>>
>>



 
Reply With Quote
 
Gina Whipp
Guest
Posts: n/a
 
      16th Oct 2006
Is it the PrintLines? Is this the code you are refering to?

Me.ScaleMode = 1
Me.ForeColor = 6723891

'Repeat the following line of code for each vertical line
' 1*1440 represents 1 inch
Me.Line (0 * 1440, 0)-(0 * 1440, 14400) 'Draws line at Left Margin
Me.Line (0.6667 * 1440, 0)-(0.6667 * 1440, 14400)
Me.Line (1.4583 * 1440, 0)-(1.4583 * 1440, 14400)
Me.Line (2.25 * 1440, 0)-(2.25 * 1440, 14400)
Me.Line (3.5833 * 1440, 0)-(3.5833 * 1440, 14400)
Me.Line (7.4167 * 1440, 0)-(7.4167 * 1440, 14400)
Me.Line (8.25 * 1440, 0)-(8.25 * 1440, 14400)
Me.Line (9.1667 * 1440, 0)-(9.1667 * 1440, 14400)
Me.Line (10 * 1440, 0)-(10 * 1440, 14400)

'the 14400 is an arbitrary number to increase the line to the max of a
'section.


--
Gina Whipp

"I feel I have been denied critical, need to know, information!" - Tremors
II


"Code Agent" <(E-Mail Removed)> wrote in message
news:985159EF-BDFE-4FF6-9F12-(E-Mail Removed)...
> Someone sent me this link: www.lebans.com There is a database you can
> download that has the code for it
>
>
> "Gina Whipp" wrote:
>
>> Ummm, what was the link or the database? No one here can see what code
>> you're refering to to make suggestions.
>>
>> --
>> Gina Whipp
>>
>> "I feel I have been denied critical, need to know, information!" -
>> Tremors
>> II
>>
>>
>> "Code Agent" <(E-Mail Removed)> wrote in message
>> news:43DCE572-1951-4927-B305-(E-Mail Removed)...
>> >I posted a question about a week ago about can grow vertical lines.
>> >Someone
>> > posted a link to someone that has set up a database that does that but
>> > I
>> > can't figure out all the code to make it work. Is there something I can
>> > import into my database or copy and paste in a module? Basically I
>> > can't
>> > figure out what all that code means, and cant get it to work.

>>
>>
>>



 
Reply With Quote
 
Gina Whipp
Guest
Posts: n/a
 
      16th Oct 2006
I am looking at that one but what about the code I provided below. I am
desperately trying to figure out WHERE I got it (Maybe someone watching this
thread will know) but it works for vertical lines. I put it on the
Detail_Format of my report.

--
Gina Whipp

"I feel I have been denied critical, need to know, information!" - Tremors
II


"Gina Whipp" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Is it the PrintLines? Is this the code you are refering to?
>
> Me.ScaleMode = 1
> Me.ForeColor = 6723891
>
> 'Repeat the following line of code for each vertical line
> ' 1*1440 represents 1 inch
> Me.Line (0 * 1440, 0)-(0 * 1440, 14400) 'Draws line at Left Margin
> Me.Line (0.6667 * 1440, 0)-(0.6667 * 1440, 14400)
> Me.Line (1.4583 * 1440, 0)-(1.4583 * 1440, 14400)
> Me.Line (2.25 * 1440, 0)-(2.25 * 1440, 14400)
> Me.Line (3.5833 * 1440, 0)-(3.5833 * 1440, 14400)
> Me.Line (7.4167 * 1440, 0)-(7.4167 * 1440, 14400)
> Me.Line (8.25 * 1440, 0)-(8.25 * 1440, 14400)
> Me.Line (9.1667 * 1440, 0)-(9.1667 * 1440, 14400)
> Me.Line (10 * 1440, 0)-(10 * 1440, 14400)
>
> 'the 14400 is an arbitrary number to increase the line to the max of a
> 'section.
>
>
> --
> Gina Whipp
>
> "I feel I have been denied critical, need to know, information!" - Tremors
> II
>
>
> "Code Agent" <(E-Mail Removed)> wrote in message
> news:985159EF-BDFE-4FF6-9F12-(E-Mail Removed)...
>> Someone sent me this link: www.lebans.com There is a database you can
>> download that has the code for it
>>
>>
>> "Gina Whipp" wrote:
>>
>>> Ummm, what was the link or the database? No one here can see what code
>>> you're refering to to make suggestions.
>>>
>>> --
>>> Gina Whipp
>>>
>>> "I feel I have been denied critical, need to know, information!" -
>>> Tremors
>>> II
>>>
>>>
>>> "Code Agent" <(E-Mail Removed)> wrote in message
>>> news:43DCE572-1951-4927-B305-(E-Mail Removed)...
>>> >I posted a question about a week ago about can grow vertical lines.
>>> >Someone
>>> > posted a link to someone that has set up a database that does that but
>>> > I
>>> > can't figure out all the code to make it work. Is there something I
>>> > can
>>> > import into my database or copy and paste in a module? Basically I
>>> > can't
>>> > figure out what all that code means, and cant get it to work.
>>>
>>>
>>>

>
>



 
Reply With Quote
 
Gina Whipp
Guest
Posts: n/a
 
      16th Oct 2006
Okay, I got my code from here: http://support.microsoft.com/kb/q208429/ no
modules, just like the sample code I sent to you.

--
Gina Whipp

"I feel I have been denied critical, need to know, information!" - Tremors
II


"Code Agent" <(E-Mail Removed)> wrote in message
news:6E1CD703-1EDD-4ABC-A906-(E-Mail Removed)...
> Sorry about that
>
> http://www.lebans.com/PrintLines.htm
>
> "Gina Whipp" wrote:
>
>> Okay, which database, there are quite a few there.
>>
>> --
>> Gina Whipp
>>
>> "I feel I have been denied critical, need to know, information!" -
>> Tremors
>> II
>>
>>
>> "Code Agent" <(E-Mail Removed)> wrote in message
>> news:985159EF-BDFE-4FF6-9F12-(E-Mail Removed)...
>> > Someone sent me this link: www.lebans.com There is a database you can
>> > download that has the code for it
>> >
>> >
>> > "Gina Whipp" wrote:
>> >
>> >> Ummm, what was the link or the database? No one here can see what
>> >> code
>> >> you're refering to to make suggestions.
>> >>
>> >> --
>> >> Gina Whipp
>> >>
>> >> "I feel I have been denied critical, need to know, information!" -
>> >> Tremors
>> >> II
>> >>
>> >>
>> >> "Code Agent" <(E-Mail Removed)> wrote in message
>> >> news:43DCE572-1951-4927-B305-(E-Mail Removed)...
>> >> >I posted a question about a week ago about can grow vertical lines.
>> >> >Someone
>> >> > posted a link to someone that has set up a database that does that
>> >> > but
>> >> > I
>> >> > can't figure out all the code to make it work. Is there something I
>> >> > can
>> >> > import into my database or copy and paste in a module? Basically I
>> >> > can't
>> >> > figure out what all that code means, and cant get it to work.
>> >>
>> >>
>> >>

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?Q29kZSBBZ2VudA==?=
Guest
Posts: n/a
 
      17th Oct 2006
Thanks!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

"Gina Whipp" wrote:

> I am looking at that one but what about the code I provided below. I am
> desperately trying to figure out WHERE I got it (Maybe someone watching this
> thread will know) but it works for vertical lines. I put it on the
> Detail_Format of my report.
>
> --
> Gina Whipp
>
> "I feel I have been denied critical, need to know, information!" - Tremors
> II
>
>
> "Gina Whipp" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Is it the PrintLines? Is this the code you are refering to?
> >
> > Me.ScaleMode = 1
> > Me.ForeColor = 6723891
> >
> > 'Repeat the following line of code for each vertical line
> > ' 1*1440 represents 1 inch
> > Me.Line (0 * 1440, 0)-(0 * 1440, 14400) 'Draws line at Left Margin
> > Me.Line (0.6667 * 1440, 0)-(0.6667 * 1440, 14400)
> > Me.Line (1.4583 * 1440, 0)-(1.4583 * 1440, 14400)
> > Me.Line (2.25 * 1440, 0)-(2.25 * 1440, 14400)
> > Me.Line (3.5833 * 1440, 0)-(3.5833 * 1440, 14400)
> > Me.Line (7.4167 * 1440, 0)-(7.4167 * 1440, 14400)
> > Me.Line (8.25 * 1440, 0)-(8.25 * 1440, 14400)
> > Me.Line (9.1667 * 1440, 0)-(9.1667 * 1440, 14400)
> > Me.Line (10 * 1440, 0)-(10 * 1440, 14400)
> >
> > 'the 14400 is an arbitrary number to increase the line to the max of a
> > 'section.
> >
> >
> > --
> > Gina Whipp
> >
> > "I feel I have been denied critical, need to know, information!" - Tremors
> > II
> >
> >
> > "Code Agent" <(E-Mail Removed)> wrote in message
> > news:985159EF-BDFE-4FF6-9F12-(E-Mail Removed)...
> >> Someone sent me this link: www.lebans.com There is a database you can
> >> download that has the code for it
> >>
> >>
> >> "Gina Whipp" wrote:
> >>
> >>> Ummm, what was the link or the database? No one here can see what code
> >>> you're refering to to make suggestions.
> >>>
> >>> --
> >>> Gina Whipp
> >>>
> >>> "I feel I have been denied critical, need to know, information!" -
> >>> Tremors
> >>> II
> >>>
> >>>
> >>> "Code Agent" <(E-Mail Removed)> wrote in message
> >>> news:43DCE572-1951-4927-B305-(E-Mail Removed)...
> >>> >I posted a question about a week ago about can grow vertical lines.
> >>> >Someone
> >>> > posted a link to someone that has set up a database that does that but
> >>> > I
> >>> > can't figure out all the code to make it work. Is there something I
> >>> > can
> >>> > import into my database or copy and paste in a module? Basically I
> >>> > can't
> >>> > figure out what all that code means, and cant get it to work.
> >>>
> >>>
> >>>

> >
> >

>
>
>

 
Reply With Quote
 
Gina Whipp
Guest
Posts: n/a
 
      17th Oct 2006
You're most welcome!

--
Gina Whipp


"Code Agent" <(E-Mail Removed)> wrote in message
news:4C7F4360-8DD5-432B-A173-(E-Mail Removed)...
> Thanks!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
>
> "Gina Whipp" wrote:
>
>> I am looking at that one but what about the code I provided below. I am
>> desperately trying to figure out WHERE I got it (Maybe someone watching
>> this
>> thread will know) but it works for vertical lines. I put it on the
>> Detail_Format of my report.
>>
>> --
>> Gina Whipp
>>
>> "I feel I have been denied critical, need to know, information!" -
>> Tremors
>> II
>>
>>
>> "Gina Whipp" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> > Is it the PrintLines? Is this the code you are refering to?
>> >
>> > Me.ScaleMode = 1
>> > Me.ForeColor = 6723891
>> >
>> > 'Repeat the following line of code for each vertical line
>> > ' 1*1440 represents 1 inch
>> > Me.Line (0 * 1440, 0)-(0 * 1440, 14400) 'Draws line at Left Margin
>> > Me.Line (0.6667 * 1440, 0)-(0.6667 * 1440, 14400)
>> > Me.Line (1.4583 * 1440, 0)-(1.4583 * 1440, 14400)
>> > Me.Line (2.25 * 1440, 0)-(2.25 * 1440, 14400)
>> > Me.Line (3.5833 * 1440, 0)-(3.5833 * 1440, 14400)
>> > Me.Line (7.4167 * 1440, 0)-(7.4167 * 1440, 14400)
>> > Me.Line (8.25 * 1440, 0)-(8.25 * 1440, 14400)
>> > Me.Line (9.1667 * 1440, 0)-(9.1667 * 1440, 14400)
>> > Me.Line (10 * 1440, 0)-(10 * 1440, 14400)
>> >
>> > 'the 14400 is an arbitrary number to increase the line to the max of
>> > a
>> > 'section.
>> >
>> >
>> > --
>> > Gina Whipp
>> >
>> > "I feel I have been denied critical, need to know, information!" -
>> > Tremors
>> > II
>> >
>> >
>> > "Code Agent" <(E-Mail Removed)> wrote in message
>> > news:985159EF-BDFE-4FF6-9F12-(E-Mail Removed)...
>> >> Someone sent me this link: www.lebans.com There is a database you can
>> >> download that has the code for it
>> >>
>> >>
>> >> "Gina Whipp" wrote:
>> >>
>> >>> Ummm, what was the link or the database? No one here can see what
>> >>> code
>> >>> you're refering to to make suggestions.
>> >>>
>> >>> --
>> >>> Gina Whipp
>> >>>
>> >>> "I feel I have been denied critical, need to know, information!" -
>> >>> Tremors
>> >>> II
>> >>>
>> >>>
>> >>> "Code Agent" <(E-Mail Removed)> wrote in message
>> >>> news:43DCE572-1951-4927-B305-(E-Mail Removed)...
>> >>> >I posted a question about a week ago about can grow vertical lines.
>> >>> >Someone
>> >>> > posted a link to someone that has set up a database that does that
>> >>> > but
>> >>> > I
>> >>> > can't figure out all the code to make it work. Is there something I
>> >>> > can
>> >>> > import into my database or copy and paste in a module? Basically I
>> >>> > can't
>> >>> > figure out what all that code means, and cant get it to work.
>> >>>
>> >>>
>> >>>
>> >
>> >

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Grow Vertical Line Proposal Doctor Microsoft Access Reports 11 14th Nov 2009 07:45 PM
Grow a range by # of lines by right click on grow tool & type num =?Utf-8?B?RGF2aWQgVGh5ZXI=?= Microsoft Excel Misc 12 15th Aug 2006 11:31 PM
how to draw a vertical line for sections that can grow =?Utf-8?B?bWhtYWlk?= Microsoft Access Reports 1 12th Aug 2005 09:51 PM
Defining vertical lines on my report that Grow/Shrink (More) =?Utf-8?B?TGl6IFRheWxvcg==?= Microsoft Access Reports 4 28th Jan 2005 09:53 PM
Grow/Shrink Vertical Line =?Utf-8?B?RG9uIFJvdW50cmVl?= Microsoft Access Reports 10 3rd Jan 2004 09:54 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:14 PM.