Hi, guys! I believe I still haven't gotten my point across clearly, so here I try again. Forget about the readFile function entirely (yes, I have read the...
I would opt to keep the text file in the manifest, there are a lot of dumb users out there and creating loader apps to support a main app just opens up the...
We're facing this on all of our applications, and here's what our decisions have been: 1. If a table is truly static, we have the raw data in a text file that...
very simple with a function: Function Pad(VartoPad,PadLen,PadStr) Dim NewStr, PadtoLen NewStr = VartoPad PadtoLen = PadLen - Len(VartoPad) If PadtoLen > 0 Then...
Hi Leslie, I'm writing such an app (to distribute a database) at the moment, will provide it as a subroutine in the forum, which can then be used standalone or...
Opps! a typo, here is the code again, it does not work? Global Code: Dim TheMonths() TheMonths = { 1: "January", 2: "February", 3: "March", 4: "April", 5:...
Hi Leslie, yes, but the wish was to get something like 01.01.2012 - incl. leading zeroes. Of course it can be done, but it is a bit tedious. And if you sell...
Hello George, I use now the function edatum = Format(now, "dd.mm.yyyy") If edatum.length = 9 Then edatum = Left(edatum,3) + "0" + Right(edatum,6) I have build...
Just put some logic around it!!!!! if Day(Now) < 10 then theDay = "0" + Day(now) else theDay = Day(now) end if that will give you "01" get the picture!!...
I have this code im the global code: Dim days(), years(), months() months = { 1: "January", 2: "February", 3: "March", 4: "April", 5: "May", 6: "June", 7:...
You dont have to use formatDate to get what you want, you could use this: myDate = Day(Now) +"," + Month(Now) + "," + Year(Now) would give you "1,1,2012" Best...
My app requires a database that has approx 800 data rows with 26 elements in each row. This data is vitial in performing calculations in the user interface...
This discussion concerns deploying apps from a server that is not hosted on Apple Store or any store whereby they want 30% of the take! What i'm looking for is...
I think you will find that by removing the orange highlight box in Android in 1.4.2, George has removed the highlighting from ALL the controls except buttons,...
Hi, I think you should sort out the connect/read bluetooth bit first, that is certainly the most difficult part, and I'm not sure it can be done at all. Only...
Hi, that's true, and is stated in the description of ReadFile. It makes some sense, as the local version doesn't use the cache or the manifest file. So you...
You should be able to use your Ipad. Start with the tutorial and tech notes. All of the sample apps by defaault are deployed to the NSBasic server and you can...
Hi Udo, I agree, the FormatDateTime is quite restricted as it only allows the preset formats, and even with those it doesn't reflect the local language...
Correct. There is no format() function documented in NS Basic/App Studio. Since it is not documented, it is subject to change by us. Please do not use this...
It work's localy with F5 in Safari! Unfortunately you can't select the browser - on the list? - you wan't to use for F5. So you would have to uninstall Chrome....
Hi, Tom, OK, but that's only true if you do it from a deployed version of your app. If you do it via F5 and chrome locally, it doesn't work, that's my ...
Hi Johann, That's what Readfile does! Read the language reference, please. Quote: READFILE will read filename which can either be deployed with the app or be...