Connecting Tech Pros Worldwide Forums | Help | Site Map

tool bars

Gurk
Guest
 
Posts: n/a
#1: Jul 17 '05
is there a way to place toolbars like in vb6.0 on the left and the right of
my parent form.

ive found some toolbars, but i can only place them on the top.

thanks Maarten



Gurk
Guest
 
Posts: n/a
#2: Jul 17 '05

re: tool bars



"Gurk" <gurkjaan@hotmail.com> wrote in message
news:41453e8e$0$11254$ba620e4c@news.skynet.be...[color=blue]
> is there a way to place toolbars like in vb6.0 on the left and the right[/color]
of[color=blue]
> my parent form.
>
> ive found some toolbars, but i can only place them on the top.
>
> thanks Maarten
>
>[/color]

sry found it

align left or right works fine :-)


Gurk
Guest
 
Posts: n/a
#3: Jul 17 '05

re: tool bars


ok i think i'm getting there, ive changed something in the code, it now
looks like this:

Public Sub FileStr(Fle$, S$)

Dim Handle As Integer

S$ = "c:\windows\PLC.ini"

On Error Resume Next
S$ = Space(FileLen(Fle$))
On Error GoTo 0
If Len(S$) > 0 Then
Handle = FreeFile
Open S$ For Binary Access Read As Handle
Get #Handle, , S$
Text1.Text = (S$)
Close #Handle


End If

End Sub

but it only showes the first 2 lines of the ini, and
a space is shown as ||.

how comes??

thanks Maarten

"Gurk" <gurkjaan@hotmail.com> wrote in message
news:41453e8e$0$11254$ba620e4c@news.skynet.be...[color=blue]
> is there a way to place toolbars like in vb6.0 on the left and the right[/color]
of[color=blue]
> my parent form.
>
> ive found some toolbars, but i can only place them on the top.
>
> thanks Maarten
>
>[/color]


Closed Thread