|
-
Nov 12th, 2000, 03:38 PM
#1
how do I change it via code?
I tried listview.FontSize, but no such property exists.
Laugh, and the world laughs with you. Cry, and you just water down your vodka.
Take credit, not responsibility
-
Nov 12th, 2000, 03:42 PM
#2
transcendental analytic
place a point between font and size
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.
-
Nov 12th, 2000, 03:57 PM
#3
not exactly working...
I have this code:
Code:
Dim optsList As Variant
Private Sub Form_Load()
Open "settings.dat" For Input As #1
Line Input #1, strTemp
'And I made sure that they are in the right order in the file
optsList = Split(strTemp, ":")
listview.Font = optsList(0) & "." & optsList(1)
Close #1
End Sub
but it still takes the settings from design time, is that the right format, or what?
Laugh, and the world laughs with you. Cry, and you just water down your vodka.
Take credit, not responsibility
-
Nov 12th, 2000, 04:24 PM
#4
transcendental analytic
listview.Font.Name = optsList(0)
listview.Font.Size = optsList(1)
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.
-
Nov 12th, 2000, 04:25 PM
#5
Laugh, and the world laughs with you. Cry, and you just water down your vodka.
Take credit, not responsibility
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
|