Search found 311 matches

by stu
Mon Mar 19, 2018 4:02 pm
Forum: General NeoAppBuilder Discussion
Topic: Unofficial NeoAppBuilder Update
Replies: 4
Views: 4664

Re: Unofficial NeoAppBuilder Update

Thanks for your effort man. They should give you the project to run... oh wait...
by stu
Fri Jan 05, 2018 12:55 pm
Forum: General NeoBook Discussions
Topic: Neobook Update 2018
Replies: 38
Views: 22637

Re: Neobook Update 2018

Same as with AppBuilder... Open source it, let the community take care... As it stands, its doesnt get any attention from the devs, its probably not selling anymore and its will become abandonware soon enough... Give it a bit of extra life by appealing to other devs will to make it better...
by stu
Tue Nov 14, 2017 6:40 am
Forum: General NeoAppBuilder Discussion
Topic: the question about "File input"
Replies: 13
Views: 9075

Re: the question about "File input"

Making NAB open source is an interesting idea. There are a few commercial and freeware libraries involved, so I'm not sure how to deal with those. Would they need to be removed? Where could the source be hosted - SourceForge? GitHub I'd say. Its the best out there. The commercial libraries will pro...
by stu
Tue Oct 31, 2017 10:21 am
Forum: General NeoAppBuilder Discussion
Topic: the question about "File input"
Replies: 13
Views: 9075

Re: the question about "File input"

I suggest open sourcing NAB and let the community take care of its continued development more or less as a tribute to what Neosoftware once was...
by stu
Tue Sep 19, 2017 10:53 am
Forum: NeoBook en Español
Topic: Oportunidad de Negocio....
Replies: 10
Views: 6477

Re: Oportunidad de Negocio....

David de Argentina wrote:Thanks Stu,

I'm very lucky your mouth does not kiss me...

Do your own nice life and search for your friends.
If anything, I'm helping you here...
by stu
Tue Sep 19, 2017 6:31 am
Forum: NeoBook en Español
Topic: Oportunidad de Negocio....
Replies: 10
Views: 6477

Re: Oportunidad de Negocio....

People don't pay attention to it because its not a good opportunity. In fact its a rip off. Go to CodeCanyon and check the PHP area, you'll find hundreds of superior quality responsive scripts for far less money. Not only that, but you'll get professionally crafted items. Look at the responsiveness ...
by stu
Fri May 12, 2017 11:49 am
Forum: NeoBookDBPro
Topic: Online And Offline
Replies: 3
Views: 3832

Re: Online And Offline

Hi NB Team. Am trying to setup an Accounting Software/Inventory Am almost 50% done with interface design and structure development. My intend is to make the software work online and ofline. If a user has no internet connection, he or she can still uses the software. Once Internet is activated i wan...
by stu
Thu Mar 30, 2017 9:34 am
Forum: NeoBookDBPro
Topic: i want to move up from access to sql
Replies: 12
Views: 7125

Re: i want to move up from access to sql

Good call... Access sucks hard, anyone else saying different is wrong. My personal preference is MS SQL Server. Solid, scalable, consistent, enterprise grade database engine with a massive community. Express version is free and Management Studio its just dump-proof... its supper simple to get up dev...
by stu
Wed Mar 08, 2017 12:16 pm
Forum: General NeoBook Discussions
Topic: Recommended Programming Language
Replies: 15
Views: 5987

Re: Recommended Programming Language

I used Neobook for about 5 years and build some very interesting tools and applications... It was good. But about a year ago I had to step it up and start working with some C# codebases so took training and now I've been programming exclusively that language for 6 months... I'm still learning, obvio...
by stu
Tue Nov 29, 2016 6:42 am
Forum: NeoBookDBPro
Topic: Mysql Evitar registro duplicado
Replies: 3
Views: 2301

Re: Mysql Evitar registro duplicado

You could create a procedure that returns the count of users with the same fn, ln and dob. Then IF Count > 0 'User (maybe) already exist' Else create account. TSQL: [syntax=sql] CREATE PROCEDURE TeacherExist @Count INT, @FirstName VARCHAR(70), @LastName VARCHAR(35), @DoB DATE AS BEGIN SET @Count = (...
by stu
Tue Nov 29, 2016 6:24 am
Forum: NeoBookDBPro
Topic: Formatting Field
Replies: 5
Views: 2784

Re: Formatting Field

If your passwords were stored the way they should be getting stored then it shouldn't be a problem to display that string at all. Not like that's a good idea either, just saying.
by stu
Fri Sep 30, 2016 4:08 am
Forum: NeoBookDBPro
Topic: Query Help
Replies: 6
Views: 2998

Re: Query Help

HackinHoodLogicsTm wrote:
What rdbms are you using? Access? mysql?
Please am using Access
https://support.office.com/en-us/articl ... 5f7484fd0b
by stu
Thu Sep 29, 2016 1:01 pm
Forum: NeoBookDBPro
Topic: Query Help
Replies: 6
Views: 2998

Re: Query Help

HackinHoodLogicsTm wrote:Hi Stu...Please can you explain more into details.

Am stuck with the process

Thanks
What rdbms are you using? Access? mysql?
by stu
Thu Sep 29, 2016 5:09 am
Forum: NeoBookDBPro
Topic: Query Help
Replies: 6
Views: 2998

Re: Query Help

MSSQL:

Code: Select all

SELECT 
    ContributorID, 
    SUM(ContributionAmount) AS TotalContribution 
FROM Contributors 
GROUP BY ContributorID