Click here to Skip to main content
16,006,474 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Crystal Report and navigate Pin
Anonymous15-Jul-04 17:11
Anonymous15-Jul-04 17:11 
GeneralPsSetLoadImageNotifyRoutine Pin
James Gohl14-Jul-04 7:45
James Gohl14-Jul-04 7:45 
GeneralRe: PsSetLoadImageNotifyRoutine Pin
Dave Kreskowiak14-Jul-04 8:59
mveDave Kreskowiak14-Jul-04 8:59 
GeneralRe: PsSetLoadImageNotifyRoutine Pin
James Gohl14-Jul-04 21:34
James Gohl14-Jul-04 21:34 
GeneralVB.NET and Outlook's "BeforeItemPaste" Event signature Pin
joseph_rich_tx14-Jul-04 2:55
joseph_rich_tx14-Jul-04 2:55 
Generalproblem in Dynamically adding objects of user control Pin
Member 119551214-Jul-04 2:45
Member 119551214-Jul-04 2:45 
GeneralRe: problem in Dynamically adding objects of user control Pin
Dave Kreskowiak14-Jul-04 3:33
mveDave Kreskowiak14-Jul-04 3:33 
GeneralRe: problem in Dynamically adding objects of user control Pin
James Gohl14-Jul-04 8:33
James Gohl14-Jul-04 8:33 
Here try this it should allow you to create infinate instances of and object using a dynamic array... (First of all set the index property of your ActiveX object to 0)
{

Private Sub CreateNewActiveXObjectInstance()<br />
<br />
    Load ActiveXObject(ActiveXObject.UBound + 1)<br />
    'Object Upper-Boundary increases by 1 now<br />
    <br />
    ActiveXObject(ActiveXObject.UBound) = ActiveXObject(ActiveXObject.UBound - 1)<br />
    'If the previous line gives you an ERROOOOOORRRRRGH! then try setting<br />
    'the properties of the new object, bearing in mind you have just created<br />
    'a new instance in memory, all of its property values will be empty.<br />
    <br />
    'e.g.<br />
    ActiveXObject (ActiveXObject.UBound).[Property] = [Value]<br />
<br />
End Sub


Call this routine everytime you want to create a new instance of the object Smile | :)


};
GeneralRecognizing the MSHFlexGrid's Row on MouseMove Event Pin
Ravi S.V.14-Jul-04 0:13
Ravi S.V.14-Jul-04 0:13 
GeneralVisual Basic 6 Help in DLL Pin
afrodit13-Jul-04 20:49
afrodit13-Jul-04 20:49 
GeneralRe: Visual Basic 6 Help in DLL Pin
Ravi S.V.14-Jul-04 0:21
Ravi S.V.14-Jul-04 0:21 
GeneralInterface Question Pin
beowulfagate13-Jul-04 20:27
beowulfagate13-Jul-04 20:27 
GeneralRe: Interface Question Pin
Dave Kreskowiak14-Jul-04 2:46
mveDave Kreskowiak14-Jul-04 2:46 
Generalauto generating number Pin
GaryKoh13-Jul-04 19:47
GaryKoh13-Jul-04 19:47 
GeneralRe: auto generating number Pin
Dave Kreskowiak14-Jul-04 2:36
mveDave Kreskowiak14-Jul-04 2:36 
GeneralRe: auto generating number Pin
GaryKoh14-Jul-04 19:59
GaryKoh14-Jul-04 19:59 
GeneralRe: auto generating number Pin
Dave Kreskowiak16-Jul-04 0:57
mveDave Kreskowiak16-Jul-04 0:57 
GeneralUpload Pin
Verolix13-Jul-04 15:18
Verolix13-Jul-04 15:18 
GeneralRe: Upload Pin
Dave Kreskowiak13-Jul-04 16:12
mveDave Kreskowiak13-Jul-04 16:12 
GeneralCE VB.Net Owner Drawn ListBox Pin
Chris Reiff13-Jul-04 14:23
Chris Reiff13-Jul-04 14:23 
GeneralRe: CE VB.Net Owner Drawn ListBox Pin
Dave Kreskowiak13-Jul-04 16:15
mveDave Kreskowiak13-Jul-04 16:15 
GeneralA complicated string... Pin
Brad Fackrell13-Jul-04 10:11
Brad Fackrell13-Jul-04 10:11 
GeneralRe: A complicated string... Pin
Dave Kreskowiak13-Jul-04 12:19
mveDave Kreskowiak13-Jul-04 12:19 
GeneralRe: A complicated string... Pin
Brad Fackrell13-Jul-04 12:42
Brad Fackrell13-Jul-04 12:42 
Generalvb code Pin
nazerudeen13-Jul-04 5:56
nazerudeen13-Jul-04 5:56 

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.