@George Don't want to bother you. When will the fix be available? Best regards Christian...
5913
George Henne
ghenne
Sep 2, 2011 2:17 pm
It's in the next build. In the meantime, you can rename the .bu file. Please excuse brevity and typos. I'm on a mobile device....
5914
Christian Probst
winvetpro
Sep 2, 2011 2:29 pm
i have deployed an app that reads data from a text file wih readfile. I know it must be deployed and it is but shouldn't it work offline too? It does nit on...
5915
Christian Probst
winvetpro
Sep 2, 2011 2:40 pm
i mean addItem. i don't see a bu file?...
5916
John Calhoun
johncalhoun16
Sep 2, 2011 2:56 pm
George: Is it possible to force the manifest to be checked within an app? I use the javascript getfile sample (in NSB) to read a file on my server. When the...
5917
Christian Probst
winvetpro
Sep 2, 2011 3:01 pm
In the program folder - ok, got it....
5918
George Henne
ghenne
Sep 2, 2011 3:24 pm
I will send you the file when I am back in the office. Please excuse brevity and typos. I'm on a mobile device....
5919
Lee Church
lchurchmts
Sep 2, 2011 4:06 pm
I have a data entry form and a list form with grid in my application. I cannot find a reliable method to have the grid refresh after the add of a new record....
5920
alanrichey42
Sep 2, 2011 9:54 pm
What I am doing is trying to build a replacement MSGBOX as like many other people I don't like the way that the URL appears at the top of the standard one, and...
5921
George Henne
ghenne
Sep 2, 2011 9:56 pm
Don't work too hard on this. We have a project here for this very same thing. Please excuse brevity and errors. I'm on a mobile device. ... Don't work too hard...
5922
alanrichey42
Sep 2, 2011 10:30 pm
Too late :-)...
5923
anigarzat
Sep 3, 2011 2:59 am
I mean scrolling/browsing. Open a database, using dblib functions, and then be able to scroll the data, choose a record to open a form to edit the record. Any...
5924
George Henne
ghenne
Sep 3, 2011 4:49 pm
Whenever you start an app, the manifest file is checked for changes. That's why we insert a timestamp line at the end with the time of deployment - it will...
5925
George Henne
ghenne
Sep 3, 2011 7:28 pm
I can reproduce this here. It works OK in other browsers and on Android devices, so it's looking like an iOS bug. Let's hope it gets fixed in iOS 5!...
5926
George Henne
ghenne
Sep 3, 2011 7:34 pm
What are the processes at each end? Why not send it as a string?...
5927
cschuchert
Sep 3, 2011 11:52 pm
Currently results of calculations are added to a textarea control but eventually the text goes beyond its borders. It won't scroll on my itouch or android...
5928
George Henne
ghenne
Sep 4, 2011 10:38 am
Yes, you need to use the HTMLview. Remember to do setInterval(HTMLview1_ref.refresh(),100) after you update the text....
5929
cschuchert
Sep 4, 2011 8:17 pm
Thanks, but I found the answer by googling. If I use 2 fingers in the textarea box, it scrolls on my itouch as well as my Toshiba Thrive....
5930
johann
johvog
Sep 5, 2011 3:45 am
Hi, Where can I find some good info on using json in nsbasic? Thanks. Johann...
5931
johann
johvog
Sep 5, 2011 4:38 am
Hi, I saved your sample app on my home screen and an image loads when the app launches, but I also get an error message (black box) which might signal a...
5932
Udo
uhen01
Sep 5, 2011 6:24 am
Hello, I need the function to get the color of a pixel in a picturebox. And I want to set the color of a pixel. The function of setcolor and getcolor doesen't...
5933
tniessen1
Sep 5, 2011 9:01 am
Hi, pardon me if this is obvious, but I really can't figure this out: I want to use a twodimensional array of strings, so I define in global code: Dim...
5934
Christian Probst
winvetpro
Sep 5, 2011 9:27 am
req.status is zero but req.responseText contains the data correctly. Is req.status = 0 also a valid state for XMLHttpRequest (on at least Safari) ? Best...
5935
Christian Probst
winvetpro
Sep 5, 2011 9:37 am
I consider to check for req.readyState = 4 and req.status != 404. Any better idea? Best regards Christian...
5936
George Henne
ghenne
Sep 5, 2011 10:54 am
Did you see this blog post? <http://www.nsbasic.com/blog/?p=425> JSON ends up being pretty easy to use....
5937
George Henne
ghenne
Sep 5, 2011 10:58 am
It's probably the image file: it is not referenced in the manifest. It should be in the NETWORK: section, as follows: NETWORK: ...
5938
George Henne
ghenne
Sep 5, 2011 11:07 am
Good catch! It seems iOS 4.x is reading the file properly, but returning a status code of 0 instead of 200. I changed line 9 of the sample from If...
5939
George Henne
ghenne
Sep 5, 2011 11:11 am
Here's the answer: <http://stackoverflow.com/questions/667045/getpixel-from-html-canvas> In brief, data = PictureBox1.getImageData(x, y, 1, 1).data color = new...
5940
George Henne
ghenne
Sep 5, 2011 1:23 pm
The first thing to try is to convert array references from () to [ ]. Parenthesis are used for function calls; square brackets for array references. NS Basic...
5941
George Henne
ghenne
Sep 5, 2011 1:26 pm
Is the Grid hidden when you call Populate() from a different form?...