New pages
From Dabo Wiki
(newest | oldest) View (newer 20 | older 20) (20 | 50 | 100 | 250 | 500)
- 16:15, 17 May 2020 Settings.py (hist) [5,794 bytes] Ed (talk | contribs) (Created page with "== What it is == There is a file in the main directory of the dabo module named <code>settings.py</code>; it contains many settings that control the behavior of the framework...")
- 15:57, 17 May 2020 Settings override.py (hist) [580 bytes] Ed (talk | contribs) (Created page with "Dabo has several settings that are imported to the main dabo module's namespace; these are configured in the <code>settings.py</code> file in the main dabo module directory....")
- 15:56, 17 May 2020 PyCrypto (hist) [110 bytes] Ed (talk | contribs) (Created page with "A common name for the '''Python Cryptography Toolkit''', available at https://www.dlitz.net/software/pycrypto/")
- 15:54, 17 May 2020 SempliceCriptazione (SimpleCrypt) (hist) [910 bytes] Ed (talk | contribs) (Created page with "SimpleCrypt che ho tradotto in '''Semplice Criptazione''' e' un grazioso tool (attrezzo),come il nome vuol significare, per criptare e decriptare parole, password, file e...")
- 15:52, 17 May 2020 SimpleCrypt (hist) [1,544 bytes] Ed (talk | contribs) (Created page with "'''SimpleCrypt''' is pretty much what its name implies: a very simple tool for encrypting stuff. Technically, what we are doing is taking plaintext and turning it into ciphert...")
- 15:49, 17 May 2020 Framework Level (hist) [143 bytes] Ed (talk | contribs) (Created page with "===== subtopics: ===== * SimpleCrypt ** SempliceCriptazione (SimpleCrypt) ** PyCrypto * settings_override.py * settings.py")
- 15:08, 17 May 2020 HowToUseAGridSizer (hist) [8,487 bytes] Ed (talk | contribs) (Created page with "== How To Use a dGridSizer == The easiest way to make use of a dGridSizer has to use the ClassDesigner. It is a piece of genius that will take the headache out of desi...")
- 14:58, 17 May 2020 HowToCreateANumbersOnlyControl (hist) [4,095 bytes] Ed (talk | contribs) (Created page with "The following class was writtern by '''Larry Long''', '''Nate Lowrie''' and '''John Fabiani'''. <code>RANumBox(self, RegID=ncostID, MinValue=0.00, MaxValue=999999.99, Integer...")
- 14:52, 17 May 2020 HowToCreateATempCursor (hist) [1,416 bytes] Ed (talk | contribs) (Created page with "Occasionally you may need a temporary cursor to access tables. There are several ways to access the database via cursors. But the best way does not violate Dabo's 3 tier desig...")
- 14:41, 17 May 2020 HowToUseMultipleToolbars (hist) [5,638 bytes] Ed (talk | contribs) (Created page with "Using multiple toolbars in other places than right bellow the title bar is relatively common. For example on a panel to gather panel related functionality, on to of a grid for...")
- 14:35, 17 May 2020 How to use a cdxml file in hand coded forms (hist) [646 bytes] Ed (talk | contribs) (Created page with "'''<span style="color: red;">NOTE</span>''': as of revision '''4384''', you can now do the following: <syntaxhighlight lang="python"> # Assuming that 'pth' is the path to the...")
- 14:34, 17 May 2020 Create an OpenOffice SpreadSheet (hist) [3,474 bytes] Ed (talk | contribs) (Created page with "Reporting from Dabo is normally done by using <code>reportWriter.py</code>. It works very well for document type reports, but often our clients require a spreadsheet. Since my...")
- 14:27, 17 May 2020 How To Overlay Controls (hist) [1,979 bytes] Ed (talk | contribs) (Created page with "A small example of using dPageFrameNoTabs to allow overlaying textboxes on a form. Written by '''Larry Long''' and '''John Fabiani''' (the suggestion of using dPageFrame...")
- 14:26, 17 May 2020 HowToVisuallyFloatAControl (hist) [1,399 bytes] Ed (talk | contribs) (Created page with "<syntaxhighlight lang="python"> from dabo import dApp from MySQLdb import escape_string # Set up dabo app = dApp() app.setup(False) # Set up connection connection = app.getC...")
- 14:24, 17 May 2020 HowToCreateAFormWithAGridAndPopulateItWithData (hist) [4,143 bytes] Ed (talk | contribs) (Created page with "First, create a directory to hold the files. I'm calling mine <code>test</code>. Next, define the connection to the database by running the <code>CxnEditor.py</code> script i...")
- 14:18, 17 May 2020 HowToLimitInputCharactersInATextBox (hist) [761 bytes] Ed (talk | contribs) (Created page with "Right now the only way is to use the new <code>ForceCase</code> property, which can be one of: * "'''upper'''", "'''u'''" - all alpha characters forced to UPPER CASE * "'''lo...")
- 14:15, 17 May 2020 HowToPopulateAndUseListControls (hist) [2,139 bytes] Ed (talk | contribs) (Created page with "A common need in an application is to create a list of choices for the user, who makes a selection. The items in the list correspond to a lookup table, and what is stored in t...")
- 14:11, 17 May 2020 How To Log Executed SQL (hist) [454 bytes] Ed (talk | contribs) (Created page with "By default, Dabo does not log database activity. However, you can change this by setting the Application object's <code>DatabaseActivityLog</code> property to either: # the p...")
- 14:09, 17 May 2020 How To Get Foreign Keys Set (hist) [325 bytes] Ed (talk | contribs) (Created page with "You need to set <code>bizobj.FillLinkFromParent</code> to <code>True</code>. Of cause you also have to supply the usual information for the parent-child relation: <syntaxhig...")
- 14:07, 17 May 2020 HowToSetupParent-Child-Grandchild (hist) [1,622 bytes] Ed (talk | contribs) (Created page with "You will get the full benefit of this document by first watching the screencasts "Using the Data Environment" parts 1 & 2. First, create the bizobjs. I'm assuming that you've...")