-
1 Attachment(s)
Hi Folks..
I Have made a tool (A set of tools to be Precise)!
This tool will add certain options to your right click menu
in internet explorer.
This Will easily let u Create bold, italic, undeline tags..
It can even color code your code...are even add
fancy coloring of text.
In short you would not want to miss this tool...
Download it here... (just 70k)
-
Just a demo : The Code color coding function
Code:
Const AW_HOR_POSITIVE = &H1 'Animates the window from left To right. This flag can be used with roll Or slide animation.
Const AW_HOR_NEGATIVE = &H2 'Animates the window from right To left. This flag can be used with roll Or slide animation.
Const AW_VER_POSITIVE = &H4 'Animates the window from top To bottom. This flag can be used with roll Or slide animation.
Const AW_VER_NEGATIVE = &H8 'Animates the window from bottom To top. This flag can be used with roll Or slide animation.
Const AW_CENTER = &H10 'Makes the window appear To collapse inward If AW_HIDE is used Or expand outward If the AW_HIDE is Not used.
Const AW_HIDE = &H10000 'Hides the window. By default, the window is shown.
Const AW_ACTIVATE = &H20000 'Activates the window.
Const AW_SLIDE = &H40000 'Uses slide animation. By default, roll animation is used.
Const AW_BLEND = &H80000 'Uses a fade effect. This flag can be used only If hwnd is a top-level window.
Private Declare Function AnimateWindow Lib "user32" (ByVal hwnd As Long, ByVal dwTime As Long, ByVal dwFlags As Long) As Boolean
Private Sub Form_Load()
'KPD-Team 1999
'URL: http://www.allapi.net/
'E-Mail: [email protected]
'Set the graphic mode To persistent
Me.AutoRedraw = True
Me.Print "Unload me"
End Sub
Private Sub Form_Unload(Cancel As Integer)
'Animate the window
AnimateWindow Me.hwnd, 200, AW_VER_POSITIVE Or AW_HOR_NEGATIVE Or AW_HIDE
'Unload our form completely
Set Form1 = Nothing
End Sub
-
Now Something Serious...
TheRainbowText
and The
TheGradientText
-
-
How about adding a sub-menu for smileys?
-
Umm...I installed it, and can't seem to find it.
Where does it install to? :rolleyes:
-
LOL That happened to me to Matthew, just right click when you are replying to a message and there should be a bunch of new options in the standard Cut, Copy, Paste menu.
-
Nothing in right click menu but all the regular IE context stuff.
-
The Pre Installation Instruction Read..
Close all IE windows..before you Start Installing..
Just close all IE windows...
and Then OPen them again...
Cheers !
I don't think there is way of adding Sub menus....
But there is a WAY out...I would try that..
Thanks Young buck !
-
Hehe, I see it now.
Iknewthat,Iwasjusttestin'you;).
Very cool! :D
You got my vote :rolleyes:.
-
It must be funny to note that...The entire
Self Extracting Installer Was made in Visual basic.
But the file is compressed using a PE packer utility
Any one attempted such bizzare thing before ?
-
There...I didn't tease or torment them with my pre-release version! :D
-
Keep up , Parksie...
100 points for your honesty ! ;)
-
-
-
Wow,haveyouguysnoticed,thisthreadislinkedtotheoneinChitChatandtheoneinGeneralVBQuestions(ifthereisonethere).
That'saneatfeatureJohn.
-
Well, the one in General VB Questions was moved :rolleyes:.
But I think both the Chit Chat and Feedback Forum threads are linked.
-
kumaraguru
how did you make the text fade? i've been trying to learn how to make text fade but still i don't understand examples i download ...
-
There's all the html files that are used with it theman32x.
Location: C:\Windows\Vb-World
Just open Notepad and open them through there and get the source :D.
Of course, if you plan to use it, ask G.Kumaraguru first, and make sure credit goes where it is needed.
-
You are free to use it...
Man..think of it...Do i have to code it just to dump my
code unused ?
-
thisisatest
yeah,thatwouldbeawesomeifyoucouldgetsmiliesworking!
-
Testing...
Lifeisademo
GeekHouse
______________________________________________________________________
HiThere
ThisissocoolKumar!!
That was great Kumar..!!
-
G.Kumaraguru : Superb tool, I shall use it with all the time. :)
-
Thisisprettycool.Itsavesalotoftime.
-
Just about to test it but i forgot that im at home :rolleyes:
-
oOoOoOoOoOoOooooooooooo
Hello World
email
website
cool!
-
Just a test...
Hello World!
Hello.
-
Thanks! That's a cool tool ! :)
-
Hey G.Kumaraguru, that's a really neat tool. Thanks man.
-
I found a bug (when the forums here had the code coloring it had the same bug though)....
Code:
'Shouldn't _
All _
This _
Be _
Green
-
I see the Problem there...
I though a Comment line starts at ' and ends at vbcrlf.
I never thought line continuation is valid for a comment line.
But honestly speaking will any one seriously use multi line comments using ' _ ' ?
I would myself prefer
Code:
' first Line comment
' second Line comment etc..
Any way, I would try to fix the bug...
-
I guess it is a matter of preference. To me it distinguishes the difference between two seperate comments and one long comment. I reckon I'm just being nit-picky, all I really have to do is move the color tag for that particular comment to the end of the continued. Anyway thanks for listening.
P.S. Also, even though I don't think I've ever seen it used here, the Rem statement doesn't get colored green either.
Code:
Rem This is a comment
-
Yes...REM has been consciously left out.
Because no one in the forum seems to use it.
May be If I make an Stand alone Application Like fox did
I would make everything utopian. But This program
as you might have noticed is run from a Script. And as
such hardwiring everything in code might actually
punish you in speed of execution.
You know...no body want's to wait for one minute after
Right clicking something !
And Fortunately Every one is lazy to use REM instead of
a Simple '. ;)
-
Ilookedatthecodetotakethemsgbox'soutbutitsVBscriptandimtotallycrapatitHELP
Any way LOVIN IT!! << BTW thats mine, Grrrrrrrrrrrrrrrrrrr
-
-
-
just comparing mine...
Code:
Then If ElseIf 'testing
For x = 1 To 10
If x = 3 Then 'shoot me
ElseIf
Else
End If
Code:
Then If Elseif 'testing
For x = 1 To 10
If x = 3 Then 'shoot me
Elseif
Else
End If
Excellent IDEA!! I would LOVE to know how you grab the Highlighted text!!!!!
That would be a great addition to my app (vbworld browser http://forums.vb-world.net/showthrea...threadid=56782 )
Greatjob!...VeryuniqueIdea!
-
You are Welcome :) ..
Just Take a Look at the VBscripts Installed in Your Windows vb-world Folder...
PM Me ... if You need any assistance.
-
wow its all done with vbscript??
i guess Im stupped how it works...how does the script get called and applied!
where is the code that finds what text is highlighted!?
-
Look in your Registry
at the following key..
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt
This is where you tell it what to run when you Right Click
Keys other than those default cut copy paste...options.
The script itself make uses of Window.External object's
Menuarguments property to get the window of the
Page where you right clicked ...the rest is easy.