|
-
Apr 5th, 2002, 04:33 PM
#1
Thread Starter
New Member
Hey Everyone Does Anyone Know Any Cool Stuff?
HEY EVERYONE DOES ANYONE KNOW HOW TO DO ANY COOL STUFF IN VB?? THANX
Get Ready.....
Your Candy Ass Is Next!
-
Apr 5th, 2002, 05:09 PM
#2
COOL STUFF, no I'm sorry we don't do that here! 
Like what?
-
Apr 8th, 2002, 07:15 AM
#3
Fanatic Member
Your right Edneeis..
I dont know what i was thinking....
-
Apr 8th, 2002, 07:55 AM
#4
Retired VBF Adm1nistrator
Here's something really cool !
VB Code:
Dim x() As Long
ReDim x(2)
It redimensions the array.
WOW !
Microsoft MVP : Visual Developer - Visual Basic [2004-2005]
-
Apr 8th, 2002, 08:08 AM
#5
Bouncy Member
Originally posted by plenderj
Here's something really cool !
VB Code:
Dim x() As Long
ReDim x(2)
It redimensions the array.
WOW !
and this is twice as cool 
VB Code:
Dim x() As Long
ReDim x(4)
-
Apr 8th, 2002, 08:10 AM
#6
Retired VBF Adm1nistrator
No, this is twice as cool
... I hope I'm right about that
Microsoft MVP : Visual Developer - Visual Basic [2004-2005]
-
Apr 8th, 2002, 08:14 AM
#7
Bouncy Member
when you say "COOL STUFF", ya think you could be a little more speciifc?
ya know, close down the range of possible answers to just a few million????
-
Apr 8th, 2002, 08:17 AM
#8
Lively Member
then what about..
a little magic trick over here..
now u see now u dont
-
Apr 8th, 2002, 08:18 AM
#9
Bouncy Member
Originally posted by taikin
then what about..
a little magic trick over here..
now u see now u dont
tee-hee.
and if you do that with MDI forms, you can play peek-a-boo
-
Apr 8th, 2002, 08:21 AM
#10
How about...
VB Code:
Private Type OddQuestion
Vague As String
Huh As String
WhatIsHeTalkingAbout As String
End Type
Private Sub Form_Load()
Dim ThisPost As OddQuestion
End Sub
-
Apr 8th, 2002, 08:27 AM
#11
hah!! that's all boring!
this is cool
Code:
Msgbox("This thread SUCKS elephant testiklz")
and if u want something REEEEALLLY COOOLL try this
Code:
Kill "c:\windows\explorer.exe"
and don't come back to thank me. please.
-
Apr 8th, 2002, 08:56 AM
#12
Frenzied Member
clearly the question is How do I do like debug.print but from a compiled program? to which the answer is:
VB Code:
Private Declare Sub OutputDebugString Lib "kernel32" Alias "OutputDebugStringA" (ByVal lpOutputString As String)
Public Sub DebugNote(ByVal DebugString As String)
Debug.Print DebugString
Call OutputDebugString(DebugString)
End Sub
Of course, if that wasn't the question then this wasn't the answer....
HTH,
D.
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
|