I over-engineered a Standalone Invoicing App in Excel 2003 using VBA ID-Locks & Hidden Sheets. š¼š
Our take
I built a high-performance Project Manager in Excel. Optimized for German businesses, powered by advanced VBA logic. This tool is the perfect alternative to expensive subscription-based software ā no cloud, no monthly fees, just pure local automation.
Hi everyone!
Iāve been obsessed with pushing the limits of 'ancient' Office versions lately. I develop on a Windows 7 / Office 2003 rig, and I wanted to share my latest project: The 1-Click Project Manager.
Itās not just a spreadsheet; I tried to make it feel like a standalone application. Hereās how I handled the technical side:
- UI Lockdown: I used ID-filtering in the
Workbook_Openevent to disable standard menus (like 'Tools/Extras'), effectively 'capturing' the user in the app interface. - Security: Core logic and data sheets are set to
xlSheetHidden. They only toggle toxlVisibleonce a daily passkey (generated via a mathematicalCLng(Date)formula) is entered. - Workflow: Itās a dead-simple 'Start/Stop' timer that auto-generates invoice numbers and sends a formatted bill straight to the printer via VBA.
- Legacy Tech: Since I built it in 2003, itās incredibly lightweight but it runs on modern 64-bit Excel as well.
Iāve integrated a PayPal QR-Code for the passkey activation to keep it seamless.
I know, I could have used a modern web app, but there's something magical about making 20-year-old software do things it wasn't supposed to do.
Iāve hosted the file (and my other weird Excel projects like my Resident Evil Remake) over at https://cookiesoft.io if you want to check out the UI.
Would love to hear your thoughts on using ID-control for UI locking ā does anyone else still use this for 'standalone' Excel tools?
Cheers,
cookie_soft_57
[link] [comments]
Read on the original site
Open the publisher's page for the full experience
Related Articles
- I wired my Excel inventory sheet to WhatsApp so it texts me when stock is low. is this dumb?so I got tired of the morning routine where I open my inventory spreadsheet, scroll through 30 rows looking for red cells, then manually type up a purchase order. every single day. maybe 30-45 minutes of just.. looking and copying. I ended up connecting the Excel file to a WhatsApp number. the sheet is still the source of truth, all the safety stock thresholds and status flags live in Excel like before. but now instead of me opening the file, it texts me when something drops below safety stock. like "Widget A is at 3 units, safety stock is 10, want me to draft a PO?" and I can reply "yeah and add 10 extra to each" and it generates the whole purchase order. last time it spit out a ~$5,180 PO in seconds instead of me doing it by hand. when a shipment comes in I just text "update Widget A stock to 50" and it updates the file, flips the status from CRITICAL to OK, and sends me back the updated Excel. if it's not sure what I mean it asks instead of guessing which was important to me. the core logic still lives in Excel. nothing changed there. there's just a separate service that reads and writes to the file based on my WhatsApp messages. full disclosure I'm building this into a small tool (ExcelClaw) for myself and a few other people who are way too deep in spreadsheets. so this isn't a neutral post. but I genuinely want to know from people who live in Excel all day: would you trust something that edits your Excel based on text messages if you can see every change and get the file back? what would you need to feel safe with it.. logging? approval steps? version backups? and honestly if there's a way to do this natively with Power Automate or VBA that I'm overcomplicating I want to hear that too. I tried VBA before and broke things twice so I gave up but maybe I was doing it wrong curious what you guys think. if mods feel this is too promo-y I'll take it down, just want honest feedbak from the people who actually use Excel for operations submitted by /u/hiclemi [link] [comments]
- I'm sharing my professional expense tracker and the web app I created to automate it. Both are free to use.Iāve been using a really powerful spreadsheet for years. Itās a pretty solid tool for getting an annual view of your cost of living and savings rate, and Iāve spent a lot of time refining it. Recently, I decided to take that same logic and turn it into a web app as an alternative. Most apps I tried didn't really fit what I wanted, so I made something that keeps that "large screen" feel of a spreadsheet but with a faster workflow. I'm sharing both for free because it could be helpful for someone and I'm curious to see which approach people actually prefer. Here 2 snapshots of both spreadsheet and app dashboard comparison. In case you want the links, see my profile or ask by DM https://preview.redd.it/3kfxb8nof7sg1.png?width=784&format=png&auto=webp&s=d87c0e9605006bb7dd14d0bc4810b2d6afcc797e https://preview.redd.it/pj769h9bf7sg1.png?width=1311&format=png&auto=webp&s=35484a9625a901e585f41cbbebe707316b8f1673 submitted by /u/dabu_dbs [link] [comments]
- Why weāre still using 1980s logic for 2026 data problems (and how I'm trying to fix it).Hi everyone, Iām a CSIE student in Taiwan, and Iāve spent the last semester obsessing over why "data organization" still feels like manual labor. We have incredible processing power, yet most of us are still stuck in the "Shovel Era", manually digging through rows, fixing broken VLOOKUPs, and praying our CSV imports don't break. I wanted to share three specific "Excel Pains" Iāve been researching while building my own organizer, and Iād love to hear if youāve found better ways to handle them: 1. The "Syntax Trap" vs. Human Intent Most people spend 80% of their time worrying about where the comma goes in a nested IF statement and only 20% on what the data actually means. I believe we are moving toward a "Semantic Era" where the computer should understand that "March 26" and "03/26/26" are the same thing without us writing a regex script. 2. The "Final_v2_FINAL_ActuallyFinal.xlsx" Nightmare File organization usually falls apart because our tools don't track the lineage of data. When we move from a messy raw file to a "clean" one, we lose the context of the original. I've been experimenting with building a "Tractor" for thisāa system where the AI maintains a "Kanban" of data states so you can see the evolution of your project visually. 3. The 2FA/Security Gap in Spreadsheets We put our lives into Excel files, but standard spreadsheets are notoriously easy to leak or lose. Iāve been implementing 2FA data protection into my workflow because "Data Organization" shouldn't just be about sorting; it should be about stewardship. The Project: Dxtreame Organizer To solve these, Iāve been building Dxtreame Organizer. Itās an AI-driven tool meant to bridge that gap between messy raw data and structured, formula-ready Excel sheets. Current Progress: I've got the AI sorting engine running, 2FA protection live, and I'm currently designing a graph-view to replace the "wall of numbers" we usually stare at. The Goal: Iām currently fundraising as an international student to scale the infrastructure. My vision is to get rid of the "reason to learn syntax" entirely, so we can focus on the Vision instead of the Code. Iām looking for brutally honest feedback: What is the one thing in Excel that makes you want to throw your laptop out a window? If an AI could "auto-clean" your files, what is the one thing you would NEVER trust it to do alone? Thanks for reading, I'm looking forward to the "logic vs. automation" debate in the comments! submitted by /u/Dxxx101 [link] [comments]
- Built a platform that generates Excel sheets when connected via APIHi. I built a platform where Excel sheets are custom made when connected to a API platform. Stripe, PayPal, Citibank, QuickBooks, etc. I don't know how good it will work but I wanted to post here to see if anyone wanted to give it a spin and provide some feedback. Because I don't have enough data to feed it, its hard to tell if it is doable. the site is "excelbolt.web.app". The premise is to run custom templates and takes out the work of manually manipulating raw data, formatting it, editing it, as well as manually manipulating pivot tables & conditioning functions. A lot of people aren't good at excel so i thought I make it a bit easier for them. Any feedback is helpful. I'm the only person that put it together and plan on rolling out a iOS, Desktop management and Android edition after everything is working. Its not really self-promo btw. its still in test mode, ive completed a lot of the work btw but im just one person. submitted by /u/Solidartent [link] [comments]