Recent Posts

Pages: 1 2 3 [4] 5 6 ... 10
31
Development Progress / August 2022
« Last post by Malkom on August 31, 2022, 05:21:51 PM »
Here are very brief details of HN 4.2 progress for August 2022.


(1) HyperNext Studio v4.2 for Windows
 - Both Compiled and Built HN Creator versions load/save card /projects  correctly.
 - The RB2009 compiler required major changes to HN settings/data folders:
    - DONE
 - The move away from HN installer required changes to special folders:
   - required changes made and tested.
   - Creator/Developer/Player/App all start up and run fine.
   - Creator menu functions: build-Stack and build-App need modifying then testing.
 * Found bug in single Edit Field border
   - border is not visible

 v4.2 for Windows can be released once:
 - this new release method is fully working.
 - more testing has been done.


The aim is to get HN v4.2  out for both Windows and then older OS  X systems.
Then move onto HN v4.3 using an even newer RB compiler.
Eventually ending up on Windows plus latest Mac OS and Ubuntu etc.
 
32
General / Re: New to HyperNext need direction for learning how to.
« Last post by Malkom on July 31, 2022, 07:31:10 PM »
I would like to make an app similar to a to do task list and a finished task list.  One where you can slide a button from to do list to complete list.  Also be able to slide back to the todo list if needed.  I have read the start up and do not know what section I should play around in next.  Any info would be appreciated.

Perhaps the easiest approach is to use two Listboxes, one for the To-Do and one for the Finished task list.
You could use a button to move a highlighted or selected row between listboxes or perhaps just a double-click on a  listbox's row.

Listboxes are covered in the Language Reference chapter 10 on Control Types.
HN's in-built help also has information on Listboxes - accessible from its Guide menu.


Here are some forum posts on list boxes:-

http://www.tigabyte.com/smf/index.php?topic=349.msg984#msg984

http://www.tigabyte.com/smf/index.php?topic=2983.msg3742#msg3742

http://www.tigabyte.com/smf/index.php?topic=351.msg3448#msg3448

http://www.tigabyte.com/smf/index.php?topic=49.msg93#msg93


Note, the QuickStart PDF might help you make sense of this.


Here is some simple code to setup two list boxes
Create a new project and then use the Creator Toolbar to create two listboxes and one button.

Then place the script below in the button to build your listboxes.
Note, I used Global variables so you can easily access them in other procedures or other controls etc.
The script would normnally be placed in the Card's open event.


Code: [Select]
@ To Do listbox
Global nrows1,ncols1

@ Finished listbox
Global nrows2,ncols2

@ Build listbox 1
Put 10 into nrows1
Put 3 into ncols1
ListBoxBuild(1,nrows1,ncols1)
ListBoxSetHeading(1,1,'TO DO')
ListBoxSetHeading(1,2,'Info 1')
ListBoxSetHeading(1,3,'Info 2')

@ Build list box 2
Put 2 into nrows2
Put 3 into ncols2
ListBoxBuild(2,nrows2,ncols2)
ListBoxSetHeading(2,1,'FINISHED')
ListBoxSetHeading(2,2,'Info 2')
ListBoxSetHeading(2,3,'Info 2')

You could then experiment with various Listbox functions for setting cell values, moving from one list to another etc.
The easiest way to do this is to use a button for each listbox function you are testing.


By the way, if you don't like the look of listboxes then you could make your own using a Canvas control.
Canvas controls are much more work but their graphics are prettier.









33
Development Progress / July 2022
« Last post by Malkom on July 31, 2022, 06:12:40 PM »
Here are very brief details of HN 4.2 progress for July 2022.


(1) HyperNext Studio v4.2 for Windows
 - working on replacing the installer with just a zip archive for using HN etc.
  - previous HN releases placed the files in locations recomended by the OS producers,
    which can cause problems for some users and might not be future proof.
  - now the user will simply unzip the HN apps archive to their desktop or wherever.
  - the help docs, example projects and necesary dependendencies will all be in this HN folder.
  - users can also create their own project folders on desktop, documents folder or wherever.
  - unfortunately double-clicking an HN project or player file will not launch the relevant HN app.

 v4.2 for Windows can be released once:
 - this new release method is fully working.
 - more testing has been done.


The aim is to get HN v4.2  out for both Windows and then older OS  X systems.
Then move onto HN v4.3 using an even newer RB compiler.
Eventually ending up on Windows plus latest Mac OS and Ubuntu etc.
 
34
General / New to HyperNext need direction for learning how to.
« Last post by d-ton on July 31, 2022, 05:04:27 PM »
I would like to make an app similar to a to do task list and a finished task list.  One where you can slide a button from to do list to complete list.  Also be able to slide back to the todo list if needed.  I have read the start up and do not know what section I should play around in next.  Any info would be appreciated. 
35
Development Progress / June 2022
« Last post by Malkom on June 30, 2022, 10:26:40 AM »
Here are very brief details of HN 4.2 progress for June 2022.


(1) HyperNext Studio v4.2 for Windows
 - New Save/Load is now working and independent from bought commercial plugins,
   The Chart project and default project both work fine.
   
 v4.2 for Windows can be released once:
 - more testing has been done.
 - the new installer tested.


The aim is to get HN v4.2  out for both Windows and then older OS  X systems.
Then move onto HN v4.3 using an even newer RB compiler.
Eventually ending up on Windows plus latest Mac OS and Ubuntu etc.
 
36
Development Progress / May 2022
« Last post by Malkom on May 31, 2022, 04:11:48 PM »
Here are very brief details of HN 4.2 progress for May 2022.


(1) HyperNext Studio v4.2 for Windows
 - New Save/Load is now independent from bought commercial plugins,
    - encrypt and decrypt are now working and the module imported into project.
    - now replacing and testing save/load routines.
    HN 4.2 will be the last version to load older projects.

 v4.2 for Windows can be released once these above issues are resolved and it is fully tested.


The aim is to get HN v4.2  out for both Windows and then older OS  X systems.
Then move onto HN v4.3 using an even newer RB compiler.
Eventually ending up on Windows plus latest Mac OS and Ubuntu etc.
 

37
Development Progress / April 2022
« Last post by Malkom on April 30, 2022, 02:26:31 PM »
Here are very brief details of HN 4.2 progress for April 2022.


(1) HyperNext Studio v4.2 for Windows

 - still working on new Save/Load independent from bought commercial plugins,
    HN 4.2 will be the last version to load older projects.
 -  in HN Creator, Preview mode now correctly Previews the card.
 - some improvements to Help system.
 - bug: editing a Control such as button, field etc still makes it invisible at Runtime.

 v4.2 for Windows can be released once these above issues are resolved and it is fully tested.


The aim is to get HN v4.2  out for both Windows and then older OS  X systems.
Then move onto HN v4.3 using an even newer RB compiler.
Eventually ending up on Windows plus latest Mac OS and Ubuntu etc.
 


2) HyperNext v5 work  in progress

Working on single line and multi-line EditFields using code from v4.2 above.

The aim is to get this working on the Windows platform first.
38
Development Progress / March 2022
« Last post by Malkom on March 31, 2022, 04:50:52 PM »
Here are very brief details of HN 4.2 progress for March 2022.


(1) HyperNext Studio v4.2 for Windows

Conversion of EditFields to either TextFields or TextAreas:-
 - Runtime engine and its Run window now finished.
   Preliminary testing shows no bugs.
 - Started work on improving arrays by adding extra search functions.


In April will work on the following:-
 -  bugs caused by movement to new RB compiler etc:-
     - In HN Creator, Preview mode causes the project to Run instead of just Previewing the card.
     - editing a Control such as button, field etc makes it invisible at Runtime.
 - a new Save/Load independent from bought commercial plugins,
    HN 4.2 will be the last version to load older projects.
    This code can be used in HN 5 so it will then be able to load HN 4.2 projects.
 

The aim is to get HN v4.2  out for both Windows and older OS  X systems.
Then move onto HN v4.3 using an even newer RB compiler.
Eventually ending up on Windows plus latest Mac OS and Ubuntu etc.
 


2) HyperNext v5 work  in progress

Still implementing the single line and multi-line EditFields in the Runtime engine.
These can now be implemented as the RB code is now working so allowing a common code base to be used.

The aim is to get this working on the Windows platform first.
39
Development Progress / February 2022
« Last post by Malkom on February 28, 2022, 10:52:09 AM »
Here are very brief details of HN progress for February 2022.


(1) HyperNext Studio v4.x for Windows

Resolved all several hundred deprecated notifications generated by RB 2009-R3 compiler.

Most file path problems caused by RB compiler runtime changes are solved.

Conversion of EditFields to either TextFields or TextAreas.
 - Property toolbar updated.
 - Editor updated.
 - TextResWindow library updated.
 - User defined register window updated.
 - Preferences window updated.
 - now working on code in the Runtime engine and its Run window.


The aim is to get HN v4.2  out for both Windows and older OS  X systems.
Then move onto HN v4.3 using an even newer RB compiler.
Eventually ending up on Windows plus latest Mac OS and Ubuntu etc.
 


2) HyperNext v5 work  in progress

Still implementing the single line and multi-line EditFields in the Runtime engine.
This will be completed after RB code is working so a common code base can be used.

The aim is to get this working on the Windows platform first.
40
Development Progress / January 2022
« Last post by Malkom on January 31, 2022, 12:42:50 PM »
Here are very brief details of HN progress for January 2022.


(1) HyperNext Studio v4.x for Windows

Moved from RB 2008-R1 compiler to RB 2009-R3.

Already some noticeable speed improvements
 - the 30+ second startup delay on splash window has now gone to virtually zero.

Made updates to
 - Special Folders such as Documents etc.
 - Cursors.
 - SQL database.

Now working on
 - file paths.
 - converting 6 types of EditFields to TextFields or TextAreas.

The aim is to get HN v4.2  out for both Windows and older OS  X systems.
Then move onto HN v4.3 using an even newer RB compiler.
Eventually ending up on Windows plus latest Mac OS and Ubuntu.
 


2) HyperNext v5 work  in progress

Still implementing the single line and multi-line EditFields in the Runtime engine.

The aim is to get this working on the Windows platform first.

Pages: 1 2 3 [4] 5 6 ... 10