Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
~11.6K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for udaraps

add Data Control and in its Properties Link its Database(name) path and Record Source to the Field needed to show up and in data grid properties Select Data Source as Data1

Member Avatar for akgs
0
923
Member Avatar for locsin

simple : use Two Command buttons as an example, Private Sub Command1_Click() Text1.Font = "Arial" End Sub Now whatevet types will show up in English Private Sub Command2_Click() Text1.Font = "Arabic" ' Select any Arabic Font Name Her from Your System Fonts End Sub Now whatevet types will show up …

Member Avatar for akgs
0
705
Member Avatar for Mr Gates

Dim a As String a = Text1 ' TextName If Text1 = " " Then MsgBox "Please Enter a Name" Else Label1.Caption = "Hello there" & a Text1 = " " ' Tested akg End If

Member Avatar for akgs
0
7K
Member Avatar for lerkei

Private Sub Text1_KeyPress(KeyAscii As Integer) If (KeyAscii > 64 And KeyAscii < 91) Or (KeyAscii > 96 And KeyAscii < 123) Then Text1 = Text1 Else KeyAscii = o Beep MsgBox " a To z and A To Z only" End If ' Tested akg suresh End Sub

Member Avatar for akgs
0
3K

The End.