|
-
May 27th, 2000, 05:12 PM
#1
Thread Starter
Lively Member
Why when I have selected the form to show in taskbar, but the form will not appear in the taskbar when I run it ?
And in Ado, we can have
'rstCust!name'
to access the name field. How can I pass the name field to a function local variable which substitude the statement above with that variable. Such as
Private Sub A(name as string)
Debug.print rstCust!name
End Sub
Thanks.
-
May 27th, 2000, 06:24 PM
#2
transcendental analytic
That depend if you have changed borderstyle after you changed the form to show in taskbar, because it will reset if you put no borders or toolbox. I'm not sure if you mean name of an object or caption of a form or object or whatever but many of the standard controls have both a caption and name property, the name is readonly under runtime.
Code:
object.caption
object.name
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
May 28th, 2000, 10:38 PM
#3
Thread Starter
Lively Member
I set the ControlBox property to False and the Caption property for the form to "". And the form to Fixed Dialog. Because I want to have a titlebarless form. Is this mean I can't have the program to appear in the taskbar by doing so ?
-
May 29th, 2000, 02:21 AM
#4
transcendental analytic
There's a property Showintaskbar, i thought you did know about that
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
May 29th, 2000, 04:05 PM
#5
Thread Starter
Lively Member
But I set that to true already..
-
May 29th, 2000, 05:05 PM
#6
transcendental analytic
Then should work, if not, then maybe it's the Vb version, i have vb5 ent edit
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
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
|