Click here to Skip to main content
16,004,969 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionReading from text Pin
Mr kilany10-Sep-06 9:11
Mr kilany10-Sep-06 9:11 
AnswerRe: Reading from text Pin
EvoFreak10-Sep-06 10:21
EvoFreak10-Sep-06 10:21 
GeneralRe: Reading from text Pin
Mr kilany11-Sep-06 3:54
Mr kilany11-Sep-06 3:54 
GeneralRe: Reading from text Pin
EvoFreak11-Sep-06 13:25
EvoFreak11-Sep-06 13:25 
QuestionEncryption Text Pin
FriendlySoluations10-Sep-06 3:10
FriendlySoluations10-Sep-06 3:10 
AnswerRe: Encryption Text Pin
kevindotnet10-Sep-06 3:24
kevindotnet10-Sep-06 3:24 
AnswerRe: Encryption Text Pin
Dave Kreskowiak10-Sep-06 5:43
mveDave Kreskowiak10-Sep-06 5:43 
AnswerRe: Encryption Text Pin
slowbutsure2913-Sep-06 21:32
slowbutsure2913-Sep-06 21:32 
try this:

Function Encrypt(ByVal strval$, ByVal blndec As Boolean) As String
Dim str, str1, str2, str3, str4 As String
Dim int1, int2, int3 As Integer

str1 = strval$
int1 = Len(str1)
int2 = 1

Do While int2 <> (int1 + 1)
str2 = Mid(str1, int2, 1)
If blndec = True Then
int3 = Asc(str2) + 3 'Decrypt
Else
int3 = Asc(str2) - 3 'Encrypt
End If
str3 = Chr(int3)
str4 = str4 & str3
int2 = int2 + 1
Loop

Encrypt = str4

End Function

geboy
QuestionPrint by CrystalReportViewer Pin
FriendlySoluations10-Sep-06 1:59
FriendlySoluations10-Sep-06 1:59 
QuestionRe: Print by CrystalReportViewer Pin
FriendlySoluations11-Sep-06 1:31
FriendlySoluations11-Sep-06 1:31 
AnswerRe: Print by CrystalReportViewer Pin
darkelv11-Sep-06 4:39
darkelv11-Sep-06 4:39 
GeneralRe: Print by CrystalReportViewer Pin
FriendlySoluations11-Sep-06 5:01
FriendlySoluations11-Sep-06 5:01 
GeneralRe: Print by CrystalReportViewer Pin
darkelv11-Sep-06 5:04
darkelv11-Sep-06 5:04 
AnswerRe: Print by CrystalReportViewer Pin
slowbutsure2913-Sep-06 21:34
slowbutsure2913-Sep-06 21:34 
QuestionVB6-Data Report [modified] Pin
Chira Chandra9-Sep-06 18:51
Chira Chandra9-Sep-06 18:51 
AnswerRe: VB6-Data Report Pin
Tushar Kothari11-Sep-06 3:55
Tushar Kothari11-Sep-06 3:55 
GeneralRe: VB6-Data Report Pin
Chira Chandra12-Sep-06 2:48
Chira Chandra12-Sep-06 2:48 
QuestionVB.NET:Getting client request in the network Pin
bhavna sharma9-Sep-06 18:04
bhavna sharma9-Sep-06 18:04 
AnswerRe: VB.NET:Getting client request in the network Pin
Dave Kreskowiak10-Sep-06 5:40
mveDave Kreskowiak10-Sep-06 5:40 
Questioni have a atm code in vb 6.0!! i'm having error plz.. help me???? Pin
Brian Jay9-Sep-06 17:42
Brian Jay9-Sep-06 17:42 
AnswerRe: vb.net!! what 's the code for Atm machine???? Pin
leckey9-Sep-06 17:59
leckey9-Sep-06 17:59 
GeneralRe: vb.net!! what 's the code for Atm machine???? Pin
Brian Jay9-Sep-06 19:40
Brian Jay9-Sep-06 19:40 
AnswerRe: Please make my school assignment for me Pin
Guffa9-Sep-06 23:14
Guffa9-Sep-06 23:14 
GeneralRe: Please make my school assignment for me Pin
EvoFreak11-Sep-06 14:30
EvoFreak11-Sep-06 14:30 
GeneralRe: Please make my school assignment for me Pin
Guffa11-Sep-06 20:36
Guffa11-Sep-06 20:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.