Open a .w in current app Builder Session?

dayv2005

Member
I was wondering if it is possible to open a .w from code in my current app builder session, like without opening another app builder.

I'm working with a protol addin that when it runs it searchs code and the ones it finds i want to be able to open them up in my current session.
 
it is doable but will probably require some leg work.

there is a procedure that does that, adeuib/_open-w.p if i'm not mistaken.

but the thing is that there are other procedures that need to be called, maybe, definitions and so on.

i'd recommend downloading the development tools source code off psdn.com code share for your current version and looking at the code.

i didn't find anything either @peg.com or the KB that worked, not for .w files but i could have missed it.

i'd really like to help but i'm kind of tied up in some work at the moment. really interested to hear what you came up with. good luck !
 
it is doable but will probably require some leg work.

there is a procedure that does that, adeuib/_open-w.p if i'm not mistaken.

but the thing is that there are other procedures that need to be called, maybe, definitions and so on.

i'd recommend downloading the development tools source code off psdn.com code share for your current version and looking at the code.

i didn't find anything either @peg.com or the KB that worked, not for .w files but i could have missed it.

i'd really like to help but i'm kind of tied up in some work at the moment. really interested to hear what you came up with. good luck !

THere's dev tools :( haha learned something new today. Haha and yeah understandable and i'll see what i can come up with and i will make sure you hear back from me on how i did this.

This might take some time it's more of a side project that im doing in creating some sort of dev tool.

Thanks for that bit of info i never knew those were available at psdn.
 
Couple things? Source code for v9.1d all i could find was dev tools PDF file no actual source code where is this at?

As for ABHack i used it since its early days i just never knew it had a drop target to open window in that session.

ALSO I SOLVED MY PROBLEM with opening the window in the current session here's what i did

run adeuib/_open-w.p
( input ttFilenames.cFileName,
input "",
input "open":u ).

But when i was building it and running it from the uib it was giving me all these wild errors.

My app was going to be a tool anyways so i figured id add it as a protool and just add commented code in there till i found a fix for it.

Well i had that on a dbl-click event of a browse and BAM worked fine opened the file right up.

So some more things to add and this tool wont be to bad :)
 
Back
Top