Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
since I have serious problems in VBA, I consider to migrate to VSTO. I have some questions about that, in order of importance: 1. Is my code in VBA in a high level portable to the new platform 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's 3. Does it work with all versions of Office (starting with 2000) Thanks for your help. Jos Vens PS my big problem in VBA is the difference of the mso.dll (mso9.dll for office 2000) of the different office versions, which causes a crash on startup when I build up my menu-bar. Recompilation on the specific excel version solves the problem, but then I have to maintain at least 3 versions (2000, XP and 2003). Even subversions (Service Packs and minor upgrades cause those commilation problems so I cannot keep that much versions). |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Assuming you know VB.NET,
1. Is my code in VBA in a high level portable to the new platform Only you can answer that question. 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's With VTSO, you end up with a workbook and a managed code DLL. 3. Does it work with all versions of Office (starting with 2000) No. 2003 only. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jos Vens" wrote in message ... Hi, since I have serious problems in VBA, I consider to migrate to VSTO. I have some questions about that, in order of importance: 1. Is my code in VBA in a high level portable to the new platform 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's 3. Does it work with all versions of Office (starting with 2000) Thanks for your help. Jos Vens PS my big problem in VBA is the difference of the mso.dll (mso9.dll for office 2000) of the different office versions, which causes a crash on startup when I build up my menu-bar. Recompilation on the specific excel version solves the problem, but then I have to maintain at least 3 versions (2000, XP and 2003). Even subversions (Service Packs and minor upgrades cause those commilation problems so I cannot keep that much versions). |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
But going back to your VBA problem, if you develop on your lowest deployment
version of Excel, that should work on all later versions. No need for 3 versions. I don't have 3 versions, and I bet Chip never does. -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Chip Pearson" wrote in message ... Assuming you know VB.NET, 1. Is my code in VBA in a high level portable to the new platform Only you can answer that question. 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's With VTSO, you end up with a workbook and a managed code DLL. 3. Does it work with all versions of Office (starting with 2000) No. 2003 only. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jos Vens" wrote in message ... Hi, since I have serious problems in VBA, I consider to migrate to VSTO. I have some questions about that, in order of importance: 1. Is my code in VBA in a high level portable to the new platform 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's 3. Does it work with all versions of Office (starting with 2000) Thanks for your help. Jos Vens PS my big problem in VBA is the difference of the mso.dll (mso9.dll for office 2000) of the different office versions, which causes a crash on startup when I build up my menu-bar. Recompilation on the specific excel version solves the problem, but then I have to maintain at least 3 versions (2000, XP and 2003). Even subversions (Service Packs and minor upgrades cause those commilation problems so I cannot keep that much versions). |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
versions. I don't have 3 versions, and I bet Chip never does.
I have 5 versions of Excel on my main box. "Bob Phillips" wrote in message ... But going back to your VBA problem, if you develop on your lowest deployment version of Excel, that should work on all later versions. No need for 3 versions. I don't have 3 versions, and I bet Chip never does. -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Chip Pearson" wrote in message ... Assuming you know VB.NET, 1. Is my code in VBA in a high level portable to the new platform Only you can answer that question. 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's With VTSO, you end up with a workbook and a managed code DLL. 3. Does it work with all versions of Office (starting with 2000) No. 2003 only. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jos Vens" wrote in message ... Hi, since I have serious problems in VBA, I consider to migrate to VSTO. I have some questions about that, in order of importance: 1. Is my code in VBA in a high level portable to the new platform 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's 3. Does it work with all versions of Office (starting with 2000) Thanks for your help. Jos Vens PS my big problem in VBA is the difference of the mso.dll (mso9.dll for office 2000) of the different office versions, which causes a crash on startup when I build up my menu-bar. Recompilation on the specific excel version solves the problem, but then I have to maintain at least 3 versions (2000, XP and 2003). Even subversions (Service Packs and minor upgrades cause those commilation problems so I cannot keep that much versions). |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I meant of code Chip, not Excel <g
-- HTH Bob Phillips (remove nothere from email address if mailing direct) "Chip Pearson" wrote in message ... versions. I don't have 3 versions, and I bet Chip never does. I have 5 versions of Excel on my main box. "Bob Phillips" wrote in message ... But going back to your VBA problem, if you develop on your lowest deployment version of Excel, that should work on all later versions. No need for 3 versions. I don't have 3 versions, and I bet Chip never does. -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Chip Pearson" wrote in message ... Assuming you know VB.NET, 1. Is my code in VBA in a high level portable to the new platform Only you can answer that question. 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's With VTSO, you end up with a workbook and a managed code DLL. 3. Does it work with all versions of Office (starting with 2000) No. 2003 only. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jos Vens" wrote in message ... Hi, since I have serious problems in VBA, I consider to migrate to VSTO. I have some questions about that, in order of importance: 1. Is my code in VBA in a high level portable to the new platform 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's 3. Does it work with all versions of Office (starting with 2000) Thanks for your help. Jos Vens PS my big problem in VBA is the difference of the mso.dll (mso9.dll for office 2000) of the different office versions, which causes a crash on startup when I build up my menu-bar. Recompilation on the specific excel version solves the problem, but then I have to maintain at least 3 versions (2000, XP and 2003). Even subversions (Service Packs and minor upgrades cause those commilation problems so I cannot keep that much versions). |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Bob,
I try it out! You mean I should develop in office 2000 then... I always did in XP, but maybe I did an upgrade and then it didn't work anymore. It is also rare that my code of XP also crashes on office 2003! Thanks Jos "Bob Phillips" schreef in bericht ... But going back to your VBA problem, if you develop on your lowest deployment version of Excel, that should work on all later versions. No need for 3 versions. I don't have 3 versions, and I bet Chip never does. -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Chip Pearson" wrote in message ... Assuming you know VB.NET, 1. Is my code in VBA in a high level portable to the new platform Only you can answer that question. 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's With VTSO, you end up with a workbook and a managed code DLL. 3. Does it work with all versions of Office (starting with 2000) No. 2003 only. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jos Vens" wrote in message ... Hi, since I have serious problems in VBA, I consider to migrate to VSTO. I have some questions about that, in order of importance: 1. Is my code in VBA in a high level portable to the new platform 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's 3. Does it work with all versions of Office (starting with 2000) Thanks for your help. Jos Vens PS my big problem in VBA is the difference of the mso.dll (mso9.dll for office 2000) of the different office versions, which causes a crash on startup when I build up my menu-bar. Recompilation on the specific excel version solves the problem, but then I have to maintain at least 3 versions (2000, XP and 2003). Even subversions (Service Packs and minor upgrades cause those commilation problems so I cannot keep that much versions). |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Exactly Jos, that is what I mean.
-- HTH Bob Phillips (remove nothere from email address if mailing direct) "Jos Vens" wrote in message ... Hi Bob, I try it out! You mean I should develop in office 2000 then... I always did in XP, but maybe I did an upgrade and then it didn't work anymore. It is also rare that my code of XP also crashes on office 2003! Thanks Jos "Bob Phillips" schreef in bericht ... But going back to your VBA problem, if you develop on your lowest deployment version of Excel, that should work on all later versions. No need for 3 versions. I don't have 3 versions, and I bet Chip never does. -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Chip Pearson" wrote in message ... Assuming you know VB.NET, 1. Is my code in VBA in a high level portable to the new platform Only you can answer that question. 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's With VTSO, you end up with a workbook and a managed code DLL. 3. Does it work with all versions of Office (starting with 2000) No. 2003 only. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jos Vens" wrote in message ... Hi, since I have serious problems in VBA, I consider to migrate to VSTO. I have some questions about that, in order of importance: 1. Is my code in VBA in a high level portable to the new platform 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's 3. Does it work with all versions of Office (starting with 2000) Thanks for your help. Jos Vens PS my big problem in VBA is the difference of the mso.dll (mso9.dll for office 2000) of the different office versions, which causes a crash on startup when I build up my menu-bar. Recompilation on the specific excel version solves the problem, but then I have to maintain at least 3 versions (2000, XP and 2003). Even subversions (Service Packs and minor upgrades cause those commilation problems so I cannot keep that much versions). |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Chip,
I mean, I developped in VBA, and I don't want to spend to much time to set my code in vb.net. Is the language comparable or do I have to learn a lot (and debug a lot) to get my code back in vb? I never used VB.NET! I assume you mean I cannot copy and paste my code from vba to vb.net. Jos "Chip Pearson" schreef in bericht ... Assuming you know VB.NET, 1. Is my code in VBA in a high level portable to the new platform Only you can answer that question. 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's With VTSO, you end up with a workbook and a managed code DLL. 3. Does it work with all versions of Office (starting with 2000) No. 2003 only. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jos Vens" wrote in message ... Hi, since I have serious problems in VBA, I consider to migrate to VSTO. I have some questions about that, in order of importance: 1. Is my code in VBA in a high level portable to the new platform 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's 3. Does it work with all versions of Office (starting with 2000) Thanks for your help. Jos Vens PS my big problem in VBA is the difference of the mso.dll (mso9.dll for office 2000) of the different office versions, which causes a crash on startup when I build up my menu-bar. Recompilation on the specific excel version solves the problem, but then I have to maintain at least 3 versions (2000, XP and 2003). Even subversions (Service Packs and minor upgrades cause those commilation problems so I cannot keep that much versions). |
#9
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You'll find the syntax of VB.NET familiar if you know VBA, but
VB.NET is vastly larger and more complicated than VBA. Some code will copy/paste, but most will require some degree of rewrite. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jos Vens" wrote in message ... Hi Chip, I mean, I developped in VBA, and I don't want to spend to much time to set my code in vb.net. Is the language comparable or do I have to learn a lot (and debug a lot) to get my code back in vb? I never used VB.NET! I assume you mean I cannot copy and paste my code from vba to vb.net. Jos "Chip Pearson" schreef in bericht ... Assuming you know VB.NET, 1. Is my code in VBA in a high level portable to the new platform Only you can answer that question. 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's With VTSO, you end up with a workbook and a managed code DLL. 3. Does it work with all versions of Office (starting with 2000) No. 2003 only. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jos Vens" wrote in message ... Hi, since I have serious problems in VBA, I consider to migrate to VSTO. I have some questions about that, in order of importance: 1. Is my code in VBA in a high level portable to the new platform 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's 3. Does it work with all versions of Office (starting with 2000) Thanks for your help. Jos Vens PS my big problem in VBA is the difference of the mso.dll (mso9.dll for office 2000) of the different office versions, which causes a crash on startup when I build up my menu-bar. Recompilation on the specific excel version solves the problem, but then I have to maintain at least 3 versions (2000, XP and 2003). Even subversions (Service Packs and minor upgrades cause those commilation problems so I cannot keep that much versions). |
#10
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you are deploying to Excel 2000 and Xp as well as 2003, VB.Net isn't
really an option anyway. -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Jos Vens" wrote in message ... Hi Chip, I mean, I developped in VBA, and I don't want to spend to much time to set my code in vb.net. Is the language comparable or do I have to learn a lot (and debug a lot) to get my code back in vb? I never used VB.NET! I assume you mean I cannot copy and paste my code from vba to vb.net. Jos "Chip Pearson" schreef in bericht ... Assuming you know VB.NET, 1. Is my code in VBA in a high level portable to the new platform Only you can answer that question. 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's With VTSO, you end up with a workbook and a managed code DLL. 3. Does it work with all versions of Office (starting with 2000) No. 2003 only. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jos Vens" wrote in message ... Hi, since I have serious problems in VBA, I consider to migrate to VSTO. I have some questions about that, in order of importance: 1. Is my code in VBA in a high level portable to the new platform 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's 3. Does it work with all versions of Office (starting with 2000) Thanks for your help. Jos Vens PS my big problem in VBA is the difference of the mso.dll (mso9.dll for office 2000) of the different office versions, which causes a crash on startup when I build up my menu-bar. Recompilation on the specific excel version solves the problem, but then I have to maintain at least 3 versions (2000, XP and 2003). Even subversions (Service Packs and minor upgrades cause those commilation problems so I cannot keep that much versions). |
#11
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I know,
but if VSTO is stable, I can convince my customers to migrate to 2003, now it's a mess: my excel application crashes on almost every machine, unless it is upgraded to the right version (like for XP is it 10.6789.6735 SP3). All other versions are crashing, unless I recompile. I've built a compiler (I use the sendkeys method to unlock the project etc etc... It worked, but on 2003 I couldn't save it anymore - an error on saving appeared for an unknown reason). Thanks for all your suggestions! Jos Vens "Bob Phillips" schreef in bericht ... If you are deploying to Excel 2000 and Xp as well as 2003, VB.Net isn't really an option anyway. -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Jos Vens" wrote in message ... Hi Chip, I mean, I developped in VBA, and I don't want to spend to much time to set my code in vb.net. Is the language comparable or do I have to learn a lot (and debug a lot) to get my code back in vb? I never used VB.NET! I assume you mean I cannot copy and paste my code from vba to vb.net. Jos "Chip Pearson" schreef in bericht ... Assuming you know VB.NET, 1. Is my code in VBA in a high level portable to the new platform Only you can answer that question. 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's With VTSO, you end up with a workbook and a managed code DLL. 3. Does it work with all versions of Office (starting with 2000) No. 2003 only. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jos Vens" wrote in message ... Hi, since I have serious problems in VBA, I consider to migrate to VSTO. I have some questions about that, in order of importance: 1. Is my code in VBA in a high level portable to the new platform 2. Can I compile the project to an executable stand-alone file (.exe) so I am not dependent to what the user have installed of dll's 3. Does it work with all versions of Office (starting with 2000) Thanks for your help. Jos Vens PS my big problem in VBA is the difference of the mso.dll (mso9.dll for office 2000) of the different office versions, which causes a crash on startup when I build up my menu-bar. Recompilation on the specific excel version solves the problem, but then I have to maintain at least 3 versions (2000, XP and 2003). Even subversions (Service Packs and minor upgrades cause those commilation problems so I cannot keep that much versions). |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VSTO | Excel Discussion (Misc queries) | |||
VSTO PasteSpecial | Excel Programming | |||
Function with VSTO ? | Excel Programming | |||
VBA, UDFs and VSTO | Excel Programming | |||
VSTO 2.0 | Excel Programming |