How can i insert code at current position withing Vc IDE like from VB Add In ???
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hi every body, Here's an example in Visual Basic to write directly code in VB code window Dim lngStartLine As Long Dim lngStartCol As Long Dim lngEndLine As Long Dim lngEndCol As Long ' determine current location in code window VBInstance.ActiveCodePane.CodeModule.CodePane.GetSelection lngStartLine, lngStartCol, lngEndLine, lngEndCol ' insert ADO code at current position VBInstance.ActiveCodePane.CodeModule.InsertLines lngStartLine, GenADOCode ......... ......... I want to realize the same operation in Visual C++ 6.0 IDE Can anybody help me ? Thanks in advance Excuse me for my poor english