Search found 1290 matches

by dpayer
Wed May 18, 2016 7:04 am
Forum: PlugIn Discussions
Topic: tmPing Conflict
Replies: 9
Views: 5132

Re: tmPing Conflict

Hi all, I have a problem with tmPing as it conflicts with another plugin and neobook app hangs on sartup. I need to check that there is an actual internet connection out to the world, not just that an internet connection is ok. I want to Ping an address so know for certain that the www is available...
by dpayer
Wed May 18, 2016 6:57 am
Forum: General NeoBook Discussions
Topic: buttons position in dimensioning projects
Replies: 20
Views: 10997

Re: buttons position in dimensioning projects

Whis is the correct form to display an imagen? the foto is in C:/windowed.jpg "[]http://imagen_file:///C:/windowed.jpg[/]" Dixan, there are some fundamentals you are mixing up. HTTP: is "hypertext transfer protocol" used as a method to move files from a webserver over the intern...
by dpayer
Thu May 12, 2016 7:12 am
Forum: NeoBook en Español
Topic: Abrir una ventana de internet
Replies: 4
Views: 2669

Re: Abrir una ventana de internet

Hola a todos De que forma podría verlo dentro del navegador web de neobook cada una de las cámaras cuando pulse el botón correspondiente?. Gracias a todos y saludos It sounds like your URL has a target statement that opens a new window. Look at this page for ideas on using target statements. http:/...
by dpayer
Thu May 12, 2016 7:05 am
Forum: General NeoBook Discussions
Topic: New server for forum?
Replies: 32
Views: 15364

Re: New server for forum?

Dave: The Forum software is acting up again ... have to Login each visit ... even after clicking on the "Delete all board cookies" link. Unless the change in host also involved a change in software (version), I can't see how it is phpBB ... in the last ten years (prior to this change), I ...
by dpayer
Mon May 09, 2016 7:46 am
Forum: NeoBook Suggestions
Topic: Functions should also be saved in Archive Backup
Replies: 2
Views: 3905

Re: Functions should also be saved in Archive Backup

It should be possible to embed the function file (a text file with no file extension) in your pub and then extract it and use it. I am not sure about the syntax but I think you'd do a call "[pubdir]myfunction" "[%1]" "[%2]" etc referencing the file from the file system.
by dpayer
Sat Apr 23, 2016 8:40 am
Forum: General NeoBook Discussions
Topic: About TextEntry
Replies: 7
Views: 4186

Re: About TextEntry

dpayer, this works great, just what i need. Just out of curiosity, if i set my textentry to 400 width, can i also tell the script to write only that lenght? Should not be a problem. But if you are truly acting out of curiosity, then just try it and see if it works first! Then if there are problems,...
by dpayer
Thu Apr 21, 2016 2:48 pm
Forum: General NeoBook Discussions
Topic: About TextEntry
Replies: 7
Views: 4186

Re: About TextEntry

updated: StrReplace "[textentry1]" " " "" "[textentryupdated1]" "" StrLen "[textentryupdated1]" "[text1len]" If "[text1len]" ">" "[MaxStrLen]" SendKeys "" "{Tab}" Endif Put this i...
by dpayer
Thu Apr 21, 2016 10:10 am
Forum: General NeoBook Discussions
Topic: About TextEntry
Replies: 7
Views: 4186

Re: About TextEntry

How about something like this: StrLen "[textentry1]" "[text1len]" If "[text1len]" ">" "[MaxStrLen]" StickyNote "-1" "-1" "Maximum entry [MaxStrLen] characters" "500" SubStr "[textentry1]" "1"...
by dpayer
Wed Apr 20, 2016 11:04 am
Forum: General NeoBook Discussions
Topic: New server for forum?
Replies: 32
Views: 15364

Re: New server for forum?

ping neosoftwarecom.ipower.com Pinging ipower-62.ipower.com [66.96.130.62] with 32 bytes of data: ping neosoftware.com Pinging neosoftware.com [50.63.174.181] with 32 bytes of data: Looks like the provider aliases many addresses to its main domain name. Possibly all on the same box with multiple IPs.
by dpayer
Fri Apr 15, 2016 2:46 pm
Forum: PlugIn Discussions
Topic: Opening DB from remote origin (accdb)
Replies: 3
Views: 2723

Re: Opening DB from remote origin (accdb)

Are we talking about accessing this DB over the internet?

Why don't you look into VPNs so clients accessing the DB will be on the same (virtual) network?
by dpayer
Fri Apr 15, 2016 9:43 am
Forum: General NeoBook Discussions
Topic: Find and ListBox Question
Replies: 1
Views: 1489

Re: Find and ListBox Question

Try this: ListBoxGetItem "ThisListboxName" "[ThisListboxSelected]" "[FoundItem]" InputBox "Edit Item" "Edit entry" "[FoundItem]" ListBoxChangeItem "[ThisListboxName]" "[ThisListboxSelected]" "[Founditem]" SetVa...
by dpayer
Fri Apr 08, 2016 7:53 am
Forum: NeoBook Action Commands
Topic: Using the [self] variable
Replies: 13
Views: 7512

Re: Using the [self] variable

David Guessing that this is related to your quest here ... which is in turn related to your quest for making new/improved ListBox related Functions ... may I suggest that you just ask users to specify the required variables in their Call s to your Functions e.g. ... Call "someFunction" &q...
by dpayer
Thu Apr 07, 2016 1:31 pm
Forum: NeoBook Functions - VBScript & JavaScript
Topic: Listbox Plus Function
Replies: 4
Views: 7563

Listbox Plus Function

In an effort to improve on my previous listbox function I have created something that I think is probably more helpful for most who will use it. Here is a compiled demo. http://iowalink.com/images/ListBoxPlus.png usage: call lbplus "[%1]" "[%2]" [%1] = ListboxName,InitialContentV...
by dpayer
Thu Mar 31, 2016 6:45 am
Forum: NeoBookDBPro
Topic: record list of my choosing
Replies: 1
Views: 1804

Re: record list of my choosing

One idea is to include a field that describes the order you want your display to come in. Then use a SQL query dbpSQLexec "MYDB" "SELECT MYFIELD1, MYFIELD2, MYFIELD3 FROM MYTABLE ORDER BY MYORDERFIELD" You don't need to include the MYORDERFIELD in the select so it won't show up. ...
by dpayer
Thu Mar 31, 2016 6:18 am
Forum: NeoBook Action Commands
Topic: Using the [self] variable
Replies: 13
Views: 7512

Re: Using the [self] variable

Sorry Gaev,

I did miss your original post. That does clear it up. Thanks.

I will change my function to have the necessary details in the call.

Working on it now.