Normal Topic Greek characters in field names (Read 1297 times)
ggathens
Member
*
Offline


No personal text

Posts: 9
Location: Athens, Greece
Joined: Jun 15th, 2005
Greek characters in field names
Jul 3rd, 2005 at 6:56am
Print Post Print Post  
I have a database Table1, with 2 fields, filed1 and field2 with label1 and label2, where label1 and label2 have greek names.

In table view (Shift+F6) in headers can I have
Table = Table1
Field1= Label1
Field2= Label2

and how?

Also, can I use greek in database and field names, so that, I have no problem in programming?

Thanks for your help.
  
Back to top
 
IP Logged
 
The Cow
YaBB Administrator
*****
Offline



Posts: 2530
Joined: Nov 22nd, 2002
Re: Greek characters in field names
Reply #1 - Jul 4th, 2005 at 3:00pm
Print Post Print Post  
Frankly, I am not sure if it would be okay to use Greek letters in field or LE names. Maybe, make a backup, and give it a try to see if there are any side effects.
  

Mark Lasersohn&&Programmer&&Lantica Software, LLC
Back to top
IP Logged
 
ggathens
Member
*
Offline


No personal text

Posts: 9
Location: Athens, Greece
Joined: Jun 15th, 2005
Re: Greek characters in field names
Reply #2 - Jul 5th, 2005 at 5:17pm
Print Post Print Post  
I use greek letters in database and layout names, as in menu tree commands with no problem.

Do I have to do a test in XLookup, XPost and Lookup commands?
  
Back to top
 
IP Logged
 
The Cow
YaBB Administrator
*****
Offline



Posts: 2530
Joined: Nov 22nd, 2002
Re: Greek characters in field names
Reply #3 - Jul 5th, 2005 at 5:19pm
Print Post Print Post  
So long as the ASCII range is maintained (0-128), I don't think there should be a problem. But it is always wise to test before you deploy.
  

Mark Lasersohn&&Programmer&&Lantica Software, LLC
Back to top
IP Logged
 
ggathens
Member
*
Offline


No personal text

Posts: 9
Location: Athens, Greece
Joined: Jun 15th, 2005
Re: Greek characters in field names
Reply #4 - Jul 7th, 2005 at 6:33am
Print Post Print Post  
In application Display Formats, I have define the field type Number with 2 decimals.

If I create a Global Static Variable, the auto numbering function, page 59 in programming guide, gets the right number but with 2 digits after the decimal symbol.

Do I have to use SBasic programming to delete the last 3 chars?

Regards
  
Back to top
 
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2482
Joined: Aug 20th, 2003
Re: Greek characters in field names
Reply #5 - Jul 7th, 2005 at 1:46pm
Print Post Print Post  
Hello,

In Designer Click on the element that stores the automatic number.
Click on the Format tab of the Property Editor
Next to Display Format, Choose "Custom Format"
Next To Decimal Places, Choose "0"
Note: "0" will already appear selected. You will have to drop down the combo box and reselect 0 in order for it to be set.

-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged
 
ggathens
Member
*
Offline


No personal text

Posts: 9
Location: Athens, Greece
Joined: Jun 15th, 2005
Re: Greek characters in field names
Reply #6 - Jul 7th, 2005 at 4:10pm
Print Post Print Post  
Thanks...

One more question please.

I want the user to click on a command button to save a record.
Is there a way to disable the F10 and some other function keys?

Regards
  
Back to top
 
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2482
Joined: Aug 20th, 2003
Re: Greek characters in field names
Reply #7 - Jul 7th, 2005 at 4:29pm
Print Post Print Post  
Quote:
Is there a way to disable the F10 and some other function keys?


Not in the current version but I believe development has it on the list for a future enhancement.

-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Greek characters in field names
Reply #8 - Jul 7th, 2005 at 6:49pm
Print Post Print Post  
[quote author=ggathens  link=1120373780/0#6 date=1120752648]Thanks...

One more question please.

I want the user to click on a command button to save a record.
Is there a way to disable the F10 and some other function keys?

Regards[/quote]

You can use NotifyForm to prevent the form from being saved via any key or mouse means.

On Form Entry
NotifyForm(1)

CommandButton::On Element Entry
NotifyForm(-1)
... Do save and whatever other stuff you want to do
NotifyForm(1)
  

- Hammer
The plural of anecdote is not data.
Back to top
IP Logged