Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > microsoft.public.excel.programming > #109622 > unrolled thread
| Started by | Walter Briscoe <wbriscoe@nospam.demon.co.uk> |
|---|---|
| First post | 2016-11-20 23:08 +0000 |
| Last post | 2016-11-27 03:00 +0000 |
| Articles | 12 — 6 participants |
Back to article view | Back to microsoft.public.excel.programming
Out of Memory Walter Briscoe <wbriscoe@nospam.demon.co.uk> - 2016-11-20 23:08 +0000
Re: Out of Memory GS <gs@v.invalid> - 2016-11-21 15:06 -0500
Re: Out of Memory Walter Briscoe <wbriscoe@nospam.demon.co.uk> - 2016-11-23 12:56 +0000
Re: Out of Memory GS <gs@v.invalid> - 2016-11-23 13:11 -0500
Re: Out of Memory Walter Briscoe <wbriscoe@nospam.demon.co.uk> - 2016-11-25 17:20 +0000
Re: Out of Memory GS <gs@v.invalid> - 2016-11-25 16:49 -0500
Re: Out of Memory Tslebyng224 <Txlebjng923@gmail.com> - 2016-11-24 01:03 +0000
Re: Out of Memory Tslebyng224 <Txlebjng923@gmail.com> - 2016-11-24 02:03 +0000
Re: Out of Memory PhunuSEO <PhunuSEO@gmail.com> - 2016-11-24 08:08 +0000
Re: Out of Memory aloinam109 <aloinam109@gmail.com> - 2016-11-24 12:51 +0000
Re: Out of Memory Tvlebung396 <Tblebsng105@gmail.com> - 2016-11-26 07:02 +0000
Re: Out of Memory PhunuSEO <PhunuSEO@gmail.com> - 2016-11-27 03:00 +0000
| From | Walter Briscoe <wbriscoe@nospam.demon.co.uk> |
|---|---|
| Date | 2016-11-20 23:08 +0000 |
| Subject | Out of Memory |
| Message-ID | <sBLJqUCnziMYFw$C@freenetname.co.uk> |
I have just worked around a problem. It seems friendly to report my experience. I use Excel 2003 and most of my code is in PERSONAL.XLS. I had created a new sub, which is a renaming of another. I lost the plot and saved PERSONAL.XLS. When I opened Excel again, I got an "Out of Memory" dialog box. Throwing away a lot of redundant code did not help. I could run no code. I moved PERSONAL.XLS away from Application.StartupPath. I created an empty PERSONAL.XLS. (Save a dummy macro in Personal Macro Workbook.) Previously, I had copied Sub ExportAllComponents from somewhere. (Possibly <https://www.experts-exchange.com/articles/1457/Automate- Exporting-all-Components-in-an-Excel-Project.html>) I used that code on my old PERSONAL.XLS. I imported the components, one at a time. I hit problems with the need to set Tools/References and to define types. Googling got me information to set references. When I had got a compilable file, my new PERSONAL.XLS was about 2MB. The old file was about 20MB. I have no notion what went wrong. -- Walter Briscoe
[toc] | [next] | [standalone]
| From | GS <gs@v.invalid> |
|---|---|
| Date | 2016-11-21 15:06 -0500 |
| Message-ID | <o0vk3u$vce$1@dont-email.me> |
| In reply to | #109622 |
> I have just worked around a problem. It seems friendly to report my > experience. > I use Excel 2003 and most of my code is in PERSONAL.XLS. > I had created a new sub, which is a renaming of another. > I lost the plot and saved PERSONAL.XLS. > When I opened Excel again, I got an "Out of Memory" dialog box. > Throwing away a lot of redundant code did not help. I could run no > code. I moved PERSONAL.XLS away from Application.StartupPath. > I created an empty PERSONAL.XLS. (Save a dummy macro in Personal > Macro Workbook.) > Previously, I had copied Sub ExportAllComponents from somewhere. > (Possibly <https://www.experts-exchange.com/articles/1457/Automate- > Exporting-all-Components-in-an-Excel-Project.html>) > I used that code on my old PERSONAL.XLS. > I imported the components, one at a time. > I hit problems with the need to set Tools/References and to define > types. Googling got me information to set references. > When I had got a compilable file, my new PERSONAL.XLS was about 2MB. > The old file was about 20MB. I have no notion what went wrong. Simply put.., this is an example of how some files get corrupted/bloated for no apparent reason. You could have just renamed your original file "Personal.xls.old" and opened it with macros disabled, then drag-drop its components into your new one. It would be very worth your while to download Rob Bovey's free VbaCodeCleaner addin... http://www.appspro.com/Utilities/CodeCleaner.htm ..and use it regularly for general maintenance. -- Garry Free usenet access at http://www.eternal-september.org Classic VB Users Regroup! comp.lang.basic.visual.misc microsoft.public.vb.general.discussion
[toc] | [prev] | [next] | [standalone]
| From | Walter Briscoe <wbriscoe@nospam.demon.co.uk> |
|---|---|
| Date | 2016-11-23 12:56 +0000 |
| Message-ID | <6rpsAcEqHZNYFwG3@freenetname.co.uk> |
| In reply to | #109629 |
In message <o0vk3u$vce$1@dont-email.me> of Mon, 21 Nov 2016 15:06:56 in microsoft.public.excel.programming, GS <gs@v.invalid> writes >> I have just worked around a problem. It seems friendly to report my >> experience. >> I use Excel 2003 and most of my code is in PERSONAL.XLS. >> I had created a new sub, which is a renaming of another. >> I lost the plot and saved PERSONAL.XLS. >> When I opened Excel again, I got an "Out of Memory" dialog box. >> Throwing away a lot of redundant code did not help. I could run no >>code. I moved PERSONAL.XLS away from Application.StartupPath. >> I created an empty PERSONAL.XLS. (Save a dummy macro in Personal >>Macro Workbook.) >> Previously, I had copied Sub ExportAllComponents from somewhere. >> (Possibly <https://www.experts-exchange.com/articles/1457/Automate- >> Exporting-all-Components-in-an-Excel-Project.html>) >> I used that code on my old PERSONAL.XLS. >> I imported the components, one at a time. >> I hit problems with the need to set Tools/References and to define >> types. Googling got me information to set references. >> When I had got a compilable file, my new PERSONAL.XLS was about 2MB. >> The old file was about 20MB. I have no notion what went wrong. > >Simply put.., this is an example of how some files get >corrupted/bloated for no apparent reason. You could have just renamed >your original file "Personal.xls.old" and opened it with macros >disabled, then drag-drop its components into your new one. > >It would be very worth your while to download Rob Bovey's free >VbaCodeCleaner addin... > > http://www.appspro.com/Utilities/CodeCleaner.htm > >..and use it regularly for general maintenance. > I previously downloaded it. It installed without error. It just failed to add an entry to any of my VBIDE (Visual Basic Integrated Development Environment) menus. Very frustrating as I can't now find anything to do a similar job. This is no longer available: 20160524 vba code cleaner orlando.mvps.org VBA CODE DECOMPILER AND COMPACTOR C:\Users\IBM\AppData\Local\Temp\Temp1_VBADecompiler.zip\VBADec ompiler.exe. I got nowhere with: 20161105 vba excel cleaner http://www.spreadsheet1.com/vba-project-code- cleaner-for-access-excel-powerpoint-word.html. Thanks for the suggestion. ;) -- Walter Briscoe
[toc] | [prev] | [next] | [standalone]
| From | GS <gs@v.invalid> |
|---|---|
| Date | 2016-11-23 13:11 -0500 |
| Message-ID | <o14m1t$em1$1@dont-email.me> |
| In reply to | #109654 |
> I previously downloaded it. It installed without error. > It just failed to add an entry to any of my VBIDE (Visual Basic > Integrated Development Environment) menus. Very frustrating as I > can't > now find anything to do a similar job. It should add a menuitem Tools>Clean Project... if you downloaded the latest version (a DLL COMAddin). You must allow trust access to VBA Projects. If you have the older addin version you need to enable it to load on startup in the Addins Manager dialog of the VBE IDE. I recommend downloading the latest version since that's all Rob supports now! -- Garry Free usenet access at http://www.eternal-september.org Classic VB Users Regroup! comp.lang.basic.visual.misc microsoft.public.vb.general.discussion
[toc] | [prev] | [next] | [standalone]
| From | Walter Briscoe <wbriscoe@nospam.demon.co.uk> |
|---|---|
| Date | 2016-11-25 17:20 +0000 |
| Message-ID | <zE6e7IApLHOYFw91@freenetname.co.uk> |
| In reply to | #109657 |
In message <o14m1t$em1$1@dont-email.me> of Wed, 23 Nov 2016 13:11:19 in microsoft.public.excel.programming, GS <gs@v.invalid> writes >> I previously downloaded it. It installed without error. >> It just failed to add an entry to any of my VBIDE (Visual Basic >> Integrated Development Environment) menus. Very frustrating as I >>can't >> now find anything to do a similar job. > >It should add a menuitem Tools>Clean Project... if you downloaded the >latest version (a DLL COMAddin). You must allow trust access to VBA >Projects. > >If you have the older addin version you need to enable it to load on >startup in the Addins Manager dialog of the VBE IDE. I recommend >downloading the latest version since that's all Rob supports now! > I have the latest version. I exchanged emails with Rob. Code Cleaner was marked as a disabled item in Excel/Help/About Microsoft Office Excel/Disabled Items... Correcting that cured the problem. -- Walter Briscoe
[toc] | [prev] | [next] | [standalone]
| From | GS <gs@v.invalid> |
|---|---|
| Date | 2016-11-25 16:49 -0500 |
| Message-ID | <o1abj5$k8c$1@dont-email.me> |
| In reply to | #109681 |
> In message <o14m1t$em1$1@dont-email.me> of Wed, 23 Nov 2016 13:11:19 > in microsoft.public.excel.programming, GS <gs@v.invalid> writes >>> I previously downloaded it. It installed without error. >>> It just failed to add an entry to any of my VBIDE (Visual Basic >>> Integrated Development Environment) menus. Very frustrating as I >>> can't >>> now find anything to do a similar job. >> >> It should add a menuitem Tools>Clean Project... if you downloaded >> the latest version (a DLL COMAddin). You must allow trust access to >> VBA Projects. >> >> If you have the older addin version you need to enable it to load on >> startup in the Addins Manager dialog of the VBE IDE. I recommend >> downloading the latest version since that's all Rob supports now! >> > > I have the latest version. I exchanged emails with Rob. Code Cleaner > was marked as a disabled item in Excel/Help/About Microsoft Office > Excel/Disabled Items... > Correcting that cured the problem. That's great! Thanks for the feedback... -- Garry Free usenet access at http://www.eternal-september.org Classic VB Users Regroup! comp.lang.basic.visual.misc microsoft.public.vb.general.discussion
[toc] | [prev] | [next] | [standalone]
| From | Tslebyng224 <Txlebjng923@gmail.com> |
|---|---|
| Date | 2016-11-24 01:03 +0000 |
| Message-ID | <Tslebyng224.127bfc88@excelbanter.com> |
| In reply to | #109622 |
Walter Briscoe;1627181 Wrote: > I have just worked around a problem. It seems friendly to report my > experience. I use Excel 2003 and most of my code is in PERSONAL.XLS. I > had created a new sub, which is a renaming of another. I lost the plot > and saved PERSONAL.XLS. When I opened Excel again, I got an "Out of > Memory" dialog box. Throwing away a lot of redundant code did not > help. I could run no code. I moved PERSONAL.XLS away from > Application.StartupPath. I created an empty PERSONAL.XLS. (Save a dummy > macro in Personal Macro Workbook.) Previously, I had copied Sub > ExportAllComponents from somewhere. (Possibly > <https://www.experts-exchange.com/articles/1457/Automate- > Exporting-all-Components-in-an-Excel-Project.html>) I used that code > on my old PERSONAL.XLS. I imported the components, one at a time. I hit > problems with the need to set Tools/References and to define types. > Googling got me information to set references. When I had got a > compilable file, my new PERSONAL.XLS was about 2MB. The old file was > about 20MB. I have no notion what went wrong. -- Walter Briscoe I loved as much as you will receive carried out right here. The sketch is attractive, your authored material stylish. nonetheless, you command get got an impatience over that you wish be delivering the following. unwell unquestionably come further formerly again as exactly the same nearly very often inside case you shield this increase. -- Tslebyng224
[toc] | [prev] | [next] | [standalone]
| From | Tslebyng224 <Txlebjng923@gmail.com> |
|---|---|
| Date | 2016-11-24 02:03 +0000 |
| Message-ID | <Tslebyng224.127c0a98@excelbanter.com> |
| In reply to | #109622 |
Walter Briscoe;1627181 Wrote: > I have just worked around a problem. It seems friendly to report my > experience. I use Excel 2003 and most of my code is in PERSONAL.XLS. I > had created a new sub, which is a renaming of another. I lost the plot > and saved PERSONAL.XLS. When I opened Excel again, I got an "Out of > Memory" dialog box. Throwing away a lot of redundant code did not > help. I could run no code. I moved PERSONAL.XLS away from > Application.StartupPath. I created an empty PERSONAL.XLS. (Save a dummy > macro in Personal Macro Workbook.) Previously, I had copied Sub > ExportAllComponents from somewhere. (Possibly > <https://www.experts-exchange.com/articles/1457/Automate- > Exporting-all-Components-in-an-Excel-Project.html>) I used that code > on my old PERSONAL.XLS. I imported the components, one at a time. I hit > problems with the need to set Tools/References and to define types. > Googling got me information to set references. When I had got a > compilable file, my new PERSONAL.XLS was about 2MB. The old file was > about 20MB. I have no notion what went wrong. -- Walter Briscoe Oh my goodness! Amazing article dude! Many thanks, However I am having troubles with your RSS. I don?t know the reason why I cannot subscribe to it. Is there anyone else getting the same RSS issues? Anyone who knows the solution will you kindly respond? Thanx!! -- Tslebyng224
[toc] | [prev] | [next] | [standalone]
| From | PhunuSEO <PhunuSEO@gmail.com> |
|---|---|
| Date | 2016-11-24 08:08 +0000 |
| Message-ID | <PhunuSEO.127c5ef8@excelbanter.com> |
| In reply to | #109622 |
Walter Briscoe;1627181 Wrote: > I have just worked around a problem. It seems friendly to report my > experience. I use Excel 2003 and most of my code is in PERSONAL.XLS. I > had created a new sub, which is a renaming of another. I lost the plot > and saved PERSONAL.XLS. When I opened Excel again, I got an "Out of > Memory" dialog box. Throwing away a lot of redundant code did not > help. I could run no code. I moved PERSONAL.XLS away from > Application.StartupPath. I created an empty PERSONAL.XLS. (Save a dummy > macro in Personal Macro Workbook.) Previously, I had copied Sub > ExportAllComponents from somewhere. (Possibly > <https://www.experts-exchange.com/articles/1457/Automate- > Exporting-all-Components-in-an-Excel-Project.html>) I used that code > on my old PERSONAL.XLS. I imported the components, one at a time. I hit > problems with the need to set Tools/References and to define types. > Googling got me information to set references. When I had got a > compilable file, my new PERSONAL.XLS was about 2MB. The old file was > about 20MB. I have no notion what went wrong. -- Walter Briscoe topic rất chuẩn. lÃ*m má»›i để bay xa nhé -- PhunuSEO
[toc] | [prev] | [next] | [standalone]
| From | aloinam109 <aloinam109@gmail.com> |
|---|---|
| Date | 2016-11-24 12:51 +0000 |
| Message-ID | <aloinam109.127ca548@excelbanter.com> |
| In reply to | #109622 |
* [image: http://batdongsanquangninh.vn/images/banners/logo.png]* WEBSITE BATDONGSANQUANGNINH.VN LÃ* WEBSITE HÃ*NG đầU Vá» QUảNG CáO, MUA BáN BấT độNG SảN TạI QUảNG NINH, CHÃ*NH THứC đươC THÃ*NH Láº*P VÃ*O NăM 2012. LÄ©NH Vá»±C HOạT độNG CHÃ*NH Cá»§A CôNG TY LÃ* QUảNG CáO, Tư VấN, MôI GIá»›I, MUA BáN, CHO THUê BấT độNG SảN. Trải qua nhiều năm hoạt động chúng tôi đã ná»— lá»±c vượt qua má»i khó khăn để dần từng bước thay đổi được phương thức quảng cáo vÃ* mua bán truyá»n thống cá»§a ngưá»i dân thÃ*nh phố giúp cho Ngưá»i bán vÃ* Ngưá»i mua rá»… dÃ*ng thá»±c hiện các giao dịch mua bán nhÃ*, đất má»™t cách minh bạch, nhanh chóng. Rút kinh nghiệm qua việc hoaÌ£t động nhiều năm vaÌ€ từ những ý kiến đóng góp cá»§a quý khách, trong thá»i gian tá»›i chúng tôi sẽ ná»— lá»±c hÆ¡n nưa nhằm phát triển Website có thêm những tÃ*nh năng ưu việt, quảng bá rá»™ng khắp hÆ¡n nữa giúp cho các giao dịch được tiến hÃ*nh má»™t cách nhanh chóng. Ra Ä‘á»i xuất phát từ trải nghiệm thá»±c tế cá»§a chÃ*nh ngưá»i sáng láº*p ra Công ty vá»›i mong muốn giúp cho cá»™ng đồng có được thông tin minh bạch mang lại giá trị lợi Ã*ch tốt nhất cho khách hÃ*ng. Äây chÃ*nh lÃ* cÆ¡ sở ná»n tảng để công ty xây dá»±ng phương châm kinh doanh vá»›i mong muốn mang đến sá»± chuyên nghiệp, uy tÃ*n, niá»m tin cho khách hÃ*ng. ::*CáC DịCH Vụ CHÃ*NH*::: - Äăng tin quảng cáo mua bán nhÃ* đất - Äăng banner quảng cáo - Äăng bÃ*i PR quảng bá sản phẩm, dịch vụ bất động sản - Tư vấn, mua bán bất động sản - Môi giá»›i bất động sản - 'NhÃ* đất quảng ninh' (http://batdongsanquangninh.vn) - 'bất động sản hạ long' (http://batdongsanquangninh.vn) - 'NhÃ* đất quang ninh' (http://batdongsanquangninh.vn) - 'mua đất ha long' (http://batdongsanquangninh.vn) *::Má»I THôNG TIN đóNG GóP, QUý KHáCH VUI LòNG LIêN Hệ::* *Äịa chỉ : Nguyá»…n Văn Cừ - Hạ Long - Quảng Ninh**Äiện thoại : 0984.690.188**Email : batdongsanquangninh.vn@gmail.com* -- aloinam109
[toc] | [prev] | [next] | [standalone]
| From | Tvlebung396 <Tblebsng105@gmail.com> |
|---|---|
| Date | 2016-11-26 07:02 +0000 |
| Message-ID | <Tvlebung396.127ef3e8@excelbanter.com> |
| In reply to | #109622 |
Yeah bookmaking this wasn't a high risk decision outstanding post! -- Tvlebung396
[toc] | [prev] | [next] | [standalone]
| From | PhunuSEO <PhunuSEO@gmail.com> |
|---|---|
| Date | 2016-11-27 03:00 +0000 |
| Message-ID | <PhunuSEO.12800d28@excelbanter.com> |
| In reply to | #109622 |
Không giống các bệnh lý khác về vùng đầu cổ, bệnh ung thư vòm họng thường rất khó phát hiện sớm. Cộng thêm tâm lý chủ quan của người bệnh, vì thế căn bệnh thường qua mắt được rất nhiều người, tiến triển một cách âm thầm, hầu như không biểu hiện triệu chứng gì đáng kể, chỉ đến khi giai đoạn cuối mới phát tác mạnh mẽ. Mời các bạn xem video sau để hiểu rõ hơn về hai loại thần dược chống Ung thư vòm họng nhé https://www.youtube.com/watch?v=wl6SyAlLTic -- PhunuSEO
[toc] | [prev] | [standalone]
Back to top | Article view | microsoft.public.excel.programming
csiph-web