hey im haveing a problem when i make card games and such on my pc using vb6.. the resolution from pc to pc messes up on other computers ..im using 1280-1024 and the form uses twips..what is the best way to get this right?
thanks
Printable View
hey im haveing a problem when i make card games and such on my pc using vb6.. the resolution from pc to pc messes up on other computers ..im using 1280-1024 and the form uses twips..what is the best way to get this right?
thanks
hey yall i found a good answer but it want load an array could anyone take a look at this .
when ever theres an array it errors ,i have no idea how to get it to except an array
Code:Public Function Add(oWidth As Long, oHeight As Long, oTop As Long, oLeft As Long, Optional sKey As String) As rObject
Dim objNewMember As New rObject
With objNewMember
.oWidth = oWidth
.oHeight = oHeight
.oTop = oTop
.oLeft = oLeft
End With
If Len(sKey) = 0 Then
mCol.Add objNewMember
Else
mCol.Add objNewMember, sKey
End If
Set Add = objNewMember
Set objNewMember = Nothing
End Function
i guess the best way is to do all my work in 1024-768 res.
thanks yall