Search found 1290 matches

by dpayer
Wed Jan 25, 2017 1:28 pm
Forum: NeoBookDBPro
Topic: NeoBookDBPro and MS Access ".accdb" format
Replies: 6
Views: 5457

Re: NeoBookDBPro and MS Access ".accdb" format

ive been sticking with .mdb ever since,, and recently creating a new database, trying it out to see if it is supported by now.. but, it says, unknown databasefile type... so i guess, .accdb is not supported.. Not true. .accdb is simply the newer version of Access. .mdb is the older version You can ...
by dpayer
Wed Jan 25, 2017 1:25 pm
Forum: General NeoBook Discussions
Topic: Publications on a network
Replies: 15
Views: 5473

Re: Publications on a network

I encourage you to look into the free MySQL database server. You can run it on almost any windows machine. http://www.wampserver.com/en/ You can easily copy table data from your Access DB to this. You can then make your DB application talk to that server. You won't need to download a huge database t...
by dpayer
Mon Jan 23, 2017 10:23 am
Forum: General NeoBook Discussions
Topic: copyingfile status
Replies: 3
Views: 1849

Re: copyingfile status

Showing the exact status is a bit difficult as you would have to measure the percentage of input you have accomplished. It is simpler to display an animated graphic showing movement of some sort before you begin to load the large file, then announce afterward with a popup or new graphic stating &quo...
by dpayer
Tue Jan 03, 2017 3:26 pm
Forum: General NeoBook Discussions
Topic: copy file from webserver
Replies: 10
Views: 3723

Re: copy file from webserver

No the name of file is right. You can't argue the fact that this URL does not reach the file you want : http://www.schulportal.bremerhaven.de/lizenz.txt Make sure the capitalization of the file name is right. Please find the right URL. I am sure the download file command will work if you have the r...
by dpayer
Wed Dec 28, 2016 9:32 am
Forum: General NeoBook Discussions
Topic: Find Function
Replies: 2
Views: 1514

Re: Find Function

Hi guys When i use the "Find" Command to find text in a ListBox in "Current" page, it will find the Text, and then the next and the next etc. But when i put the ListBox in a container, it will find only the first text, but not the next. Any help please There are many ways to loc...
by dpayer
Fri Dec 09, 2016 2:40 pm
Forum: NeoBookDBPro
Topic: Debugging DBPro commands (doesn't step)
Replies: 4
Views: 4497

Re: Debugging DBPro commands (doesn't step)

Mishem, thanks for responding but I did not post all my code, only the part that I was having a problem with. In this particular case, a previous action made the condition true and the app continued as expected to the next debugbreakpoint command. I then attempted to have it step, using the step but...
by dpayer
Thu Dec 08, 2016 8:14 am
Forum: NeoBookDBPro
Topic: Debugging DBPro commands (doesn't step)
Replies: 4
Views: 4497

Debugging DBPro commands (doesn't step)

I ran into a problem while updating some code. I want to make sure i understand the expected functionality of DBPro and Neobook. In my code, I set up several points to examine where my error is by using the "debugbreakpoint" command (see code below). While running the code in the developme...
by dpayer
Thu Dec 01, 2016 1:26 pm
Forum: NeoBookDBPro
Topic: Formatting Field
Replies: 5
Views: 2784

Re: Formatting Field

I already did that (Hiding the column) but i taught there was a way to display the string as Password characters (*******) Thanks Hiding something with ****** is a method built into browsers so typed letters can't be seen. Databases store data. You decide how to show the data. Having said this, the...
by dpayer
Fri Nov 18, 2016 3:34 pm
Forum: NeoBookDBPro
Topic: Lentitud al abrir tablas
Replies: 2
Views: 1731

Re: Lentitud al abrir tablas

En vez de OpenTable usa una consulta con un select top 100 o cosa por el estilo salu2 You need to open the table before you can select anything. Is the database on the same machine as the application or are you trying to do this over a network/internet? That would cause issues. You could also try o...
by dpayer
Fri Nov 18, 2016 3:16 pm
Forum: General NeoAppBuilder Discussion
Topic: ListBoxMoveItem and Save problem
Replies: 8
Views: 4175

Re: ListBoxMoveItem and Save problem

StarterPack wrote:Hi gaev
Ok i understand.. thank you so much
Take a look at a Listbox function I created. It synchronizes the variable used to set the initial listbox contents with any additions / changes that are made to the list.

http://neosoftware.com/community/viewto ... 22&t=21587

It may be helpful.
by dpayer
Wed Oct 26, 2016 9:55 am
Forum: General NeoBook Discussions
Topic: Undocumented feature if and exclamation mark
Replies: 6
Views: 6326

Re: Undocumented feature if and exclamation mark

This subject (of the handling of ! Exclamation Mark) deserves a (Pinned) Topic on these Forums ... so we can add all sorts of examples (and how each one is resolved) ... all in one place. Later, perhaps replicated to the Help file. Ditto (an American expression meaning "I agree with what was s...
by dpayer
Thu Jul 28, 2016 8:50 am
Forum: General NeoBook Discussions
Topic: Unique Identifier
Replies: 2
Views: 1706

Re: Unique Identifier

If you don't mind CREATING a unique identifier, try this (GUID):

http://neosoftware.com/community/viewto ... #p11207570

If you are looking for something unique on their computer, that is a different issue.
by dpayer
Fri Jun 17, 2016 2:40 pm
Forum: NeoBook en Français
Topic: Afficher le nom du PC [resolu]
Replies: 2
Views: 3481

Re: Afficher le nom du PC

You can get the machine name using a DOS variable and either copy it to the clipboard or to a file. Example: In a cmd.exe window type this: echo %computername% |clip and then paste the result from the clipboard or echo %computername% > file.txt and then read the value from the file.txt file. You can...
by dpayer
Mon May 23, 2016 11:27 am
Forum: PlugIn Discussions
Topic: ksGif Plugin
Replies: 5
Views: 3562

Re: ksGif Plugin

Thank you!
by dpayer
Fri May 20, 2016 7:26 am
Forum: General NeoAppBuilder Discussion
Topic: old pubs in AppBuilder
Replies: 16
Views: 7388

Re: old pubs in AppBuilder

To be quite honest, I don't see why a windows EXE program should access local files and an AppBuilder application should not. Is there a bias in favor of EXE programmers? Yes, there is a bias in favor of EXE programmers - FOR CERTAIN THINGS. I do NOT want to have a webpage be loaded in an IFrame th...