NetTalk Central

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - clarion

Pages: [1]
1
Your Views and Comments / Re: Forum slow
« on: September 09, 2008, 11:46:08 AM »
I Answer myself, Mutch faster now  8)

2
Web Server - Ask For Help / Re: Entry field (String) reads 0,50 as 50
« on: April 15, 2008, 02:48:54 PM »
Thank You !!

Now it works

Did I mention I think NetTalk  is a great product  ;D

Cheers
Tor-Bjarne

3
Web Server - Ask For Help / Re: Entry field (String) reads 0,50 as 50
« on: April 10, 2008, 12:12:01 PM »
Hi,

I Just want to read the , as the decimal point

So a 0,5 (1/2) is interpreted at 0.5 (US)

When I Specify 6.`2 I usually tell cw that , is the desimal (fraction) portion.

But with 4.30 when I have a format(6.`2) on a string field (that shows up correctly) as 0,5 (registered in an win32 app), and Edit this in my web-app using the same format (6.´2), when the field is displayed in the update screen it shows correctly 0,5 .

if I hit [Save], it gets stored as 5

What differences from the previous version is that I could do some sort of workaround, typing the-us-decimal-point 0.5 (But the format was 6.`2), then the data was saved correctly and displayed as 0,5 (as my format still is 6.`2) .

Now however if I enter 0,5 or 0.5 it is still saved as 5,0 (would be 5.0 with a format of 6.2)

In other words, I would like to enter

1,2 = 1.2 (us)
1.500,44 = 1,500.44 (us)
1,5 = 1.5 (us)

and so forth

Cheers
Tor-Bjarne

4
Web Server - Ask For Help / Re: Entry field (String) reads 0,50 as 5,0
« on: April 08, 2008, 04:52:53 PM »
Hi,

I`ve downloaded the Nettalk Official release, 4.30 and upgraded cw to 6.3 9058
copyed one web filer from examples with subfolders (replacing my own)

Still using @n6.`2 as the format of the field.

But still 0,5 shows up as 5,0, but now 0.5 also shows up as 5,0 ?

Is there somthing I do wrong ?

I do a calculation on the field after save with CalcTid routine.

CalcTid Routine
          If TIM:Tid_Til > TIM:Tid_Fra
            Tmp_Tim$  = TIM:Tid_Til - TIM:Tid_Fra
          Else !S¤L
            Tmp_Tim$ = (24 * 360000) - ((24 * 360000) - TIM:Tid_Til)
            Tmp_Tim$ = ((24 * 360000) - TIM:Tid_Fra ) + Tmp_Tim$
          End


         TIM:Timer = Tmp_Tim$ / 360000
         TIM:Timer = TIM:Timer - TIM:Fratrukket !TIM:Fratrukket now has 5,0 in stead of 0.5
         !------------------------------- Minustid
         TT:Time_Type_Id = TIM:Time_Type_Id
         If Access:Time_Type.TryFetch(TT:Key_ID)
         End
         if TT:MinusTime = True
          TIM:Timer = TIM:Timer * -1
         End

    Display

5
Web Server - Ask For Help / Re: Entry field (String) reads 0,50 as 50
« on: March 26, 2008, 04:24:18 PM »
Great !! Thank you!

Cheers
Tor-Bjarne

6
Web Server - Ask For Help / Entry field (String) reads 0,50 as 50
« on: March 10, 2008, 03:08:28 PM »
Hi,

In my dict, I have the format of @n6.`2, it shows correctly as 0,50 but when saving I get 50 (have to use .50 as a work around) .

I Downloaded the lasted version of today, and copied one script folder from a example.

cw 6.3 (9057), ABC , Netalk 4.30 (latest)

More info can be supplied if needed :)

Cheers
Tor-Bjarne

7
Hi.

After installing the today() version, it works again  ;D

cheers
Tor-Bjarne

8
Your Views and Comments / Forum slow
« on: March 09, 2008, 10:44:15 AM »
Hi,

First of all, wery gratefull that this forum exist :)

But for me it is a real pain to use, as it is incredible slow ?
Could the reason be I`m connecting to it from Norway ? low bandwith ? what ?

I have a PHPBB forum myself with approx. 1000 users, near 3.000 posts, and it is warp speed compared to this :)
(http://www.vivi.no/phpBB2/index.php)

Not a big problem, but if everyone else also experience this, well ...

Cheers
Tor-Bjarne

9
Web Server - Ask For Help / Read-Only field get changed automaticly ?
« on: March 09, 2008, 10:32:33 AM »
Hi,

Have a field timer with a format of @n-14.`2 (norwegian way of showing numbers), when I do an Update og a browse with this field, It is displayed correctly, but back in the browse it has a wrong value.

No embedcode, just templatedriven browse and form. using Nettalk 4.30 prerelease of march, Cw abc, 6.3 (9057)


 I made som screen dumps, linked inn below.:

1. Browse displays with correct value (record made by an Win32 exe)


2. Update displays correct, and "Timer" field is correctly Read-Only


3. Back in the browse, the value has changed to 25,00


4. And if i press "Change" the value displays correct (now offcourse changed to 25,00), but with next save the browse shows 25.000,00, then 250,00 etc.

I Have found a work around, using "display" instead of "String" but, then "I have to actually do some work" :)

Anybody ?

Cheers
Tor-Bjarne

10
Web Server - Ask For Help / Re: Locator
« on: December 17, 2007, 03:47:27 AM »
IT Works !!!  ;D

What a happy man I am today, this solved my search.

Was for a moment afraid I could only use "the built in search" with the Unchanging unique ID sort of field, that would make this useless for mee.

Thank you wery mutch Bruce Eh.. did I mention it`s a great product (But you probably already know that :) )

Cheers
Tor-Bjarne

11
Web Server - Ask For Help / Re: ThisView{prop:filter}
« on: December 17, 2007, 03:08:42 AM »
Hi,

Thank you for Your reply Bruce, now I have done some more research and found the error.

I have a key on the status field (for reporting) where the "Exclude Empty Keys" where ticked, this should not matter according to documentation (Filters are more flexible, since they don't require any special key manipulation, but they are much slower) but it does.

When I tick of this checkbox, recompile, my prop:filter starts working with the 0 value in the filter expression??

So next question (probably on the usergroup) is this behaviour a bug in 9057 or have I just completly missed the point from the documentation :)

Cheers
Tor-Bjarne

12
Web Server - Ask For Help / Re: Locator
« on: December 16, 2007, 05:21:19 AM »
Hi,

Thank you for your reply :)

I Know about the "Default locator Field" , it just dont work as expeted (for mee) , I`ve set the default locator to be the Item:Description field of my Item table, Locator type = "Contains".

But the only values I can search on is the value in the field that is pointed to by "Unique, Unchanging Key" (Item:ID).

Does the Item:Description field need to bee in a key to?

Cheers
Tor-Bjarne

13
Web Server - Ask For Help / Locator
« on: December 14, 2007, 11:36:41 AM »
Hi,

As stated in the documentation use a "unique key", I did, just made a autonumber ID field type Long, but the locator I would like to search a text field of the table, no help in searching the ID field (as I dont know the ID I`m searching for  :) ).

So my Question is.: Is the Locator field suppose to work as a "Search & find" or is it a locator/Search  only working the Unique key`s field ?

Cheers
Tor-Bjarne

14
Web Server - Ask For Help / ThisView{prop:filter}
« on: December 14, 2007, 07:48:58 AM »
Hi,

I`m quite new to Nettalk web, but here we go,

Using CW 6.3 (9057) & Nettalk 4.29

Have a table called overf where I want to filter on a cople of fields named Fort and Status, the value in the status field is 99 or 0 (zero) but the NetBrowse filter does not accept 0 in the status fileld.

Filter that shows "all" records
ThisView{prop:filter} = 'OVE:Fra_Lokasjonnr = ' & p_web.GetSessionValue('AKS:Kundenr') &' And OVE:Fort=0'

Shows records regardless of value in the status field, when I add the filter below, only record containing the value 99 shows, not the ones with the Statuts = 0

ThisView{prop:filter} = 'OVE:Fra_Lokasjonnr = ' & p_web.GetSessionValue('AKS:Kundenr') &' And OVE:Fort=0 And OVE:Status<=99' 

I Also tried
ThisView{prop:filter} = 'OVE:Fra_Lokasjonnr = ' & p_web.GetSessionValue('AKS:Kundenr') &' And OVE:Fort=0 And ( OVE:Status=0 or OVE:Status=99)

Same result, I have Offcource records with Status=0 (and fort=0 and Fra_lokasjonsnr = p_web.GetSessionValue xxx

???

Cheers
Tor-Bjarne

Pages: [1]