Hi Juan, the way my app is designed, it takes each of the apps you create or import and makes them a module in a single VBA project.
I also added the WE application object as a reference in this project, and then in a supporting module separate from any code your developing, I've declared public variables of the appropriate types for every property and/or method of a root level object in the WE object model. these public variables are therefore available to all of the other modules in the holding project, and function as if each one were it's own reference which was added (e.g., when you use the "windows" property for instance in an expression, intelli-sense works when you reference it because I've actually declared it else-where as a public variable of type "windoweyes.windows"). hth, Chip -----Original Message----- From: Juan Hernandez [mailto:[email protected]] Sent: Sunday, June 05, 2011 11:07 PM To: [email protected] Subject: RE: vb script editor I thought so. How did you get VBA to recognize the windoweyes object? Take care. -----Original Message----- From: Chip Orange [mailto:[email protected]] Sent: Sunday, June 05, 2011 11:13 AM To: [email protected] Subject: RE: vb script editor Juan, I believe you'll have to define a "dummy" variable, which you then need to set to the windoweyes.application object. then, you'll need to use this "dummy" variable to work your way down through the objects until you get so you can see what you're interested in. when done, just remove the "dummy" variable and the following period (along with the excess objects) from the beginning of your expression. I'm no expert on VBSEdit, but I don't recall any other way. it's not designed for predefined global objects, which the WE environment has. Chip -----Original Message----- From: Juan Hernandez [mailto:[email protected]] Sent: Sunday, June 05, 2011 1:51 AM To: [email protected] Subject: RE: vb script editor How can I get VBSedit to show me the membersforwindoweyes objectswhen I hit the period key? or since it isn't loading with-in the wineyes process it won't be able to do that? Thanks. -----Original Message----- From: chris hallsworth [mailto:[email protected]] Sent: Friday, June 03, 2011 12:49 AM To: [email protected] Subject: Re: vb script editor Hi. Try Vbs Edit. I don't know the URL so Google will have to be your friend. Smiles. It is 100% accessible and should provide what you need. Take care. Chris Hallsworth Sent from Thunderbird On 03/06/2011 08:45, Juan Hernandez wrote: > Hey All, > > I was just emailing yall to see what editors you all are using for vb > scripting? I've been using ultra edit, but I wanted to know if there > is something better, that has code completion, etc. > > Thanks for any input. > > Juan >
