Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IDE bug and IDE helper add in questions

Status
Not open for further replies.

compdrmt

Programmer
Sep 22, 2002
60
US
2 questions

1) Has any one found a fix for the IDE bug involving the class builder utility, specifically that it adds the set keyword in the set method for a property

example copied directly from newly created property method in IDE

Public Property Get timestamp() As String
Set timestamp = mvartimestamp
End Property

the SET keytword in line 2 causes problems. No big deal to remove but does anyone know a way to keep it from adding this in the first place?

2)Is anyone aware of any utility add ins to the ide that allow templates etc

for example when I type

if ..... then

I always will want and end if
or if I type

for each
I always want a next

While
Wend

etc....

also to highlight the corresponding next when I click on a line with a for etc

I had such a utility for my paradox DOS compiler years ago and it was a real time saver it also h


Anyhelp would be awesome








Debugging is the process of removing bugs. Programming is the process of putting them in
 
>the IDE bug

Can you give the exact circumstances under which you are seeing this happen, as I have never encountered it, nor can I duplicate it.
 
It always happpens everytime I add a property using the class builder add-in without fail


Debugging is the process of removing bugs. Programming is the process of putting them in
 

compdrmt, what version of VB? 6, then what service pack? If you don't have SP5 then please download it from MS and install.

2) The VB dev environment is very flexible. While I have never heard of an addin that will do what you want you could always make your own.

Good Luck

 
I use vb 6 version 8988 vba retail 6.0.8964

just re-applied SP 5 and still does the same thing. Has always done it throught several install on several machines etc.

Very weird !

Debugging is the process of removing bugs. Programming is the process of putting them in
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top