Base • Re: "Option Button" to copy/paste field text
I don't think you should do this. One of the rules of database design is to avoid duplicating information. You can handle this in queries by checking if "Shipping same as Billing" is TRUE. A CASE WHEN...
View ArticleCalc • Re: I want to highlight entire rows of weekend days Saturdays and Sundays
viewtopic.php?t=101390This is a FANTASTIC resource, will get into this, thank-you!Statistics: Posted by taylorr113y93 — Sun Aug 11, 2024 5:31 pm
View ArticleLibreOffice • Re: Change icons for dark mode
You have to edit the exec file:sudo mousepad /usr/lib/libreoffice/program/sofficeThen add this line:export SAL_USE_VCLPLUGIN=genPlease add [Solved] at the beginning of the title in your first post...
View ArticleAdvanced Uses • Re: Reporting Writer Annotation contents
Thank you for the useful hints!FWIW, the following works for me (pseudo code):Code: texts = par.createEnumeration()while texts.hasMoreElements(): text = texts.nextElement() if text.TextPortionType ==...
View ArticleMac OSX • Re: Install OpenOffice on MacBook Air M2
Yes, you can install OpenOffice on your MacBook Air M2. Just go to the OpenOffice website and download the latest version for Mac. Once it's downloaded, open the installer and follow the prompts to...
View ArticleInstall, Setup and Troubleshooting • Re: Can OpenOffice work on web?
That's an ambitious project! Embedding OpenOffice into a web app is definitely possible. You can explore using LibreOffice Online (based on OpenOffice) which has a REST API and can be integrated into...
View ArticleWriter • Re: I want to make a storybook
You've tried listing the images, but they're not appearing as expected, and the layout is getting modified. Even when you save it as a PDF, the images are disappearing and the page layout is...
View ArticleWriter • Re: Recovery of deleted files
For future reference, use SalvageData. It's free, but it does a great job at recovering missing or formatted files.Statistics: Posted by MINTHETNAUNG — Tue Aug 13, 2024 11:01 am
View ArticleBase • Re: "Option Button" to copy/paste field text
Additionally, consider implementing a view that automatically handles these conditions, so you can simplify both reporting and form management without altering your core data structureStatistics:...
View ArticleBase • Re: What's the best way for "users" to search records?
You could consider adding a search box to your existing form or creating a separate search form. For the search box on the existing form, you can use a simple VBA script to filter records based on the...
View ArticleCalc • Re: Exporting data from Google calendar to Calc to edit an invoice
To automate your invoicing from Google Calendar, first export your calendar data as a .ics file and convert it to a .csv using an online tool. Then, import the CSV into Google Sheets or Excel. Create...
View ArticleCalc • LastCellValue
HiI am moving to OO from Word Perfect Office with Quattro Pro.It has a great function "LastCellValue(cellref:cellref) e.g. LastCellValue(G6..G1000)I simply cannot understand how to do this in OO CalcI...
View ArticleCalc • Re: LastCellValue
If there no »gaps« in the data:Code: =INDEX(G6:G10000;COUNT(G6:G10000))if »last balance« is in the same row as the »last Date« AND the dates are sorted ascending :Code:...
View ArticleInstall, Setup and Troubleshooting • Read error: Format error discovered in...
Hi there,I'm getting an error message (screenshot attached) when I try to open the attached doc:Read errorFormat error discovered in sub-document content.xml at 2,4032(row,col).I know this is a known...
View ArticleInstall, Setup and Troubleshooting • Re: Read error: Format error discovered...
Hi, and welcome to the forum.I used [Tutorial] Delete duplicate attributes tool. The repaired document now opens for me. You can check it to see if anything has been lost. 202408141146.odtStatistics:...
View ArticleMac OSX • New AOO install, 4.1.15, spell check not working
Hello allI just went doiwn a pretty deep rabbit hole reading various "spell check not working" posts here, and nothing helped me (resetting user profile, running a python script I found about red...
View ArticleMac OSX • Re: new OO install, 4.1.15, spell check still not working
You tell in very general terms what you have done so far. You need to be explicit, so that we can see what's wrong.For the spell checker to work, you need to: 1. have a working dictionary for the...
View ArticleMacros and UNO API • Test for presence of sheet in macro
Dear allA simple test (or so I thought) for the presence/absence of a worksheet.When I run this, the first time it creates the 2 required spreadsheets but then on each subsequent call/run, it creates...
View ArticleMacros and UNO API • Re: am I being stupidly blind, or blindly stupid? Macro...
[Tutorial] Introduction into object inspection with MRICode: shs = ThisComponent.Sheetsif not shs.hasByName("Mary 1") then shs.insertNewByName("Mary 1", 0)if not shs.hasByName("Alan 1") then...
View ArticleLibreOffice • LibreOffice Calc crashes When Opening an XLS File
I am having a serious problem with Calc opening Qffice 2003 Excel files (.XLS). Every time I try to open an .XLS Excel file LibreOffice crashes with this error:LibreOffice Has Stopped workingWindows...
View Article