Hello Hanif,
Welcome back to the school.Yes, having a lifetime access is very beneficial because we all are busy people and having full time job/business or other priorities which needs our immediate attentions.
I am glad that you are restarting it.Do let me know if you need any support or help.
[Line: LedMasterLine]
Field : FF1,FF2,FF3
[Field:FF1]
Local: Field: FF1: Set as:$$LocaleString:”Enter your name here”
;;Local: Field: FF1: Info:$$LocaleString:”Enter your name here”
[Field:FF2]
Use: Name Field
Set as: $$Value
[Field:FF3]
Use: Name Field
Set as:#FF2
Set Always: Yes
The above code is showing error, its not showing the field value “Enter your name here”
Dear sir,
What is the use of $$LocaleString or $$Value
below code is also giving the same result :
[Field: My Field]
Use: Name Field
;;Set as: $$Value
;; Set as: $$LocaleString:”Myname is Deepak”
Set as: “My Name Is Deepak Agrawal”
Skip:Yes
if we can directly write set as: “My Name is deepak agrawal”, then what is the significance of $$localstring and $$ Value
Hello Deepak,
Your first priority is to get familiar with the codes and see how it works in action.
use them, make yourself familiar with then move on. Because there is a whole separate chapters on locale-string.
$$ is used to represent a function and $$localstring is a default TDL function same way $$value is also a default Functions in Tally
As the same Name Suggest $$value is to get the userinput Whatever value the user input in the field it will be assigned/set
Again the significance of localstring is explained in its own separate chapter
In short, they are useful to avoid to write unnecessary codes
in TDL we can use same codes/field name n times suppose you have 15 lines in a part and all those lines print differenet text like inv no., invoice date etc in that case you have to add 50 new field but you can just use the name field in every line and set that locally to assign the desired value to it.
Everything can’t be explained in one chapter else it becomes too heavy and to complex to digest so, I explained those things in the later chapter once people make themselves familiar and using them.
Field: Name Field, My field
;;Local: Field: Name Field: Set as: $$LocaleString: “Enter Name Here”
;;Local: Field: Name Field: Skip: Yes
Local: Field: Name Field: Info: $$LocaleString: “Enter Name Here”
[Field: My Field]
Use: Name Field
Set as: $$Value
;;Set as: $$LocaleString: “My name is Surajit”
;;Skip: Yes
But when I run this Programe it show Error” can not understand Bad formula
$$LocaleString: “Enter Name Here” how can i solve
I repeatedly telling people that to learn TDL or coding they need a very good reading ability and to review their code again and again.
$$LocaleString: “Enter Name here”
You kept a gap here after :
It should be $$LocaleString:“Enter Name here”
Also the error message clearly telling where is the mistake
Dear Sir,
In the field and field value part 1 unit. We have two fields in one line 1) Name field 2) My field
we defined only My field [Field: My Field] but what about Name field Define and what is this Local code.
Thanks Sir for such a informative video, easy to understand. I want to know how can we add a new field in desired location i.e in between fields? means…want to add Web Name [New Fld] in between Fax No & Email in LedContact Area, Warm Regards
Thanks for such a informative lesson in easy to understand way. I want to know can we add a new field in between fields which are already there? i.e.want to add new field [WebSite Name] in between Fax Number & Email…Warm Regards
When Name Field and $$LocaleString is used, the first character of the Field, even if it is set to a small letter, the First Initial of the words automatically changes to Capital Letters, is it because of name field attribute?? Does Name Field has Sentence Case as its attribute??
example-
[Line: facebook]
Field: name field, fb
Local : Field : name field : Set as : $$localstring : “facebook”
Local : Field : name field : skip : yes
##whereas we can code like below (note- i removed $$localstring but its still working)
[#Part:ledcontact]
add: Line: facebook
[Line: facebook]
Field: name field, fb
Local : Field : name field : Set as:”facebook”
Local : Field : name field : skip : yes
Hello Sir,
I put code as below, Works properly in tally but my query us how to store information ( E.G. Adhar Card number in my code )
[#Part:LedContact]
Add : Line : LedMasterLine
[Line:LedMasterLine]
Field:Name Field, My Field
Local : Field : Name Field : Set as : $$LocaleString:”Adhhar Card No”
Local : Field : Name Field : Skip : Yes
[Field: My Field]
Use : Number Field
Set as : $$Value
You didn’t added any storage to your field and you didn’t defined any system UDF for the said Storage.
Please refer the DOB Chapter where we added storage to the DOB Field and then defined the system UDF
You have to follow the same system to store adhar number.
I believe all the vidoes are playing without any issue.
Did you checked it in another system through a different network?
Sometimes its your system which can prevent video playing or somthing else
also clear your cookies, Allow protected contents in your chorme media settings
also test it througha differnt browser
Thank You very much you allow me to continue after a long gap
I have started once again and learning my missing chapters
Thanks
Hello Hanif,
Welcome back to the school.Yes, having a lifetime access is very beneficial because we all are busy people and having full time job/business or other priorities which needs our immediate attentions.
I am glad that you are restarting it.Do let me know if you need any support or help.
[#Part: ledcontact]
Add: Line: ledmasterline
[Line: ledmasterline]
Field: my field
[Field: my field]
Use: name field
;;Set as: $$Value
Set as: $$LocaleString: “hardey”
its not proper
I didn’t find any issue in your codes.
You can add a storage as per the course chapter.
[#Part : LedContact]
Add: Line: LedMasterLine
[Line: LedMasterLine]
Field : FF1,FF2,FF3
[Field:FF1]
Local: Field: FF1: Set as:$$LocaleString:”Enter your name here”
;;Local: Field: FF1: Info:$$LocaleString:”Enter your name here”
[Field:FF2]
Use: Name Field
Set as: $$Value
[Field:FF3]
Use: Name Field
Set as:#FF2
Set Always: Yes
The above code is showing error, its not showing the field value “Enter your name here”
HI
hi
Dear sir,
What is the use of $$LocaleString or $$Value
below code is also giving the same result :
[Field: My Field]
Use: Name Field
;;Set as: $$Value
;; Set as: $$LocaleString:”Myname is Deepak”
Set as: “My Name Is Deepak Agrawal”
Skip:Yes
if we can directly write set as: “My Name is deepak agrawal”, then what is the significance of $$localstring and $$ Value
Hello Deepak,
Your first priority is to get familiar with the codes and see how it works in action.
use them, make yourself familiar with then move on. Because there is a whole separate chapters on locale-string.
$$ is used to represent a function and $$localstring is a default TDL function same way $$value is also a default Functions in Tally
As the same Name Suggest $$value is to get the userinput Whatever value the user input in the field it will be assigned/set
Again the significance of localstring is explained in its own separate chapter
In short, they are useful to avoid to write unnecessary codes
in TDL we can use same codes/field name n times suppose you have 15 lines in a part and all those lines print differenet text like inv no., invoice date etc in that case you have to add 50 new field but you can just use the name field in every line and set that locally to assign the desired value to it.
Everything can’t be explained in one chapter else it becomes too heavy and to complex to digest so, I explained those things in the later chapter once people make themselves familiar and using them.
[#Part: Ledcontact]
Add: Line: LedMasterline
[Line: LedMasterline]
Field: Name Field, My field
;;Local: Field: Name Field: Set as: $$LocaleString: “Enter Name Here”
;;Local: Field: Name Field: Skip: Yes
Local: Field: Name Field: Info: $$LocaleString: “Enter Name Here”
[Field: My Field]
Use: Name Field
Set as: $$Value
;;Set as: $$LocaleString: “My name is Surajit”
;;Skip: Yes
But when I run this Programe it show Error” can not understand Bad formula
$$LocaleString: “Enter Name Here” how can i solve
Surjit,
I repeatedly telling people that to learn TDL or coding they need a very good reading ability and to review their code again and again.
$$LocaleString: “Enter Name here”
You kept a gap here after :
It should be $$LocaleString:“Enter Name here”
Also the error message clearly telling where is the mistake
Thank you Sir. It is done.
please how to access repeat units field & Field Value Part 1 & 2
Dear Sir,
In the field and field value part 1 unit. We have two fields in one line 1) Name field 2) My field
we defined only My field [Field: My Field] but what about Name field Define and what is this Local code.
i have completed the session and added one additional attribute added storage at end of the program
How to refresh Tdl . I didnt find refresh TDl Button in tally
its clear i got to know that UDF is of 6 types by this and educational version do not accept the dates so that tdl won’t work over here
Thanks Sir for such a informative video, easy to understand. I want to know how can we add a new field in desired location i.e in between fields? means…want to add Web Name [New Fld] in between Fax No & Email in LedContact Area, Warm Regards
Thanks for such a informative lesson in easy to understand way. I want to know can we add a new field in between fields which are already there? i.e.want to add new field [WebSite Name] in between Fax Number & Email…Warm Regards
When Name Field and $$LocaleString is used, the first character of the Field, even if it is set to a small letter, the First Initial of the words automatically changes to Capital Letters, is it because of name field attribute?? Does Name Field has Sentence Case as its attribute??
Excellent Explanation Of Field & Field Value.
My first question is what is the difference betwee the following :
set as : “My Name is Deepak”
set as:$$LocaleString:”My name is Deepak”
Both the above code dispay the text But what is the actual difference betweent the two.
What is the relevance of $$LocaleString Function , how the above both lines are differend.
What effect will $$LocaleString Will have.
My first question is what is the difference betwee the following :
set as : “My Name is Deepak”
set as:$$LocaleString:”My name is Deepak”
Both the above code dispay the text But what is the actual difference betweent the two.
What is the relevance of funtion $$LocaleString if we can get the same output without using it.
hello sir,
i want to ask
##why we use $$localstring ???
example-
[Line: facebook]
Field: name field, fb
Local : Field : name field : Set as : $$localstring : “facebook”
Local : Field : name field : skip : yes
##whereas we can code like below (note- i removed $$localstring but its still working)
[#Part:ledcontact]
add: Line: facebook
[Line: facebook]
Field: name field, fb
Local : Field : name field : Set as:”facebook”
Local : Field : name field : skip : yes
[Field:fb]
Use:name field
Storage: fbpage
[System:UDF]
fbpage:String:10001
/*
Hello Sir
i want to ask
why to use $$localstring,
whereas without it the code is also working
please tell me the concept why we use $$localstring
see my below code it is working without adding $$localstring
*/
[#Part:ledcontact]
add: Line: facebook
[Line: facebook]
Field: name field, fb
Local:Field:name field:Set as:”facebook”
Local:Field: name field:skip: yes
[Field:fb]
Use:name field
Storage: fbpage
[System:UDF]
fbpage:String:10001
Hello Sir,
I put code as below, Works properly in tally but my query us how to store information ( E.G. Adhar Card number in my code )
[#Part:LedContact]
Add : Line : LedMasterLine
[Line:LedMasterLine]
Field:Name Field, My Field
Local : Field : Name Field : Set as : $$LocaleString:”Adhhar Card No”
Local : Field : Name Field : Skip : Yes
[Field: My Field]
Use : Number Field
Set as : $$Value
You didn’t added any storage to your field and you didn’t defined any system UDF for the said Storage.
Please refer the DOB Chapter where we added storage to the DOB Field and then defined the system UDF
You have to follow the same system to store adhar number.
Sir,
What is the difference between below two codes, when to use them in different situation.
Code 1:
[Field:F1]
Use:Name Field
Set as :”I am Learning Tally TDL with Tally Mentors”
Code 2:
[Field:F1]
Use:Name Field
Set as :$$LocaleString: “I am Learning Tally TDL with Tally Mentors”
both are same. same things can be done by alternate ways. it depends on the user choice.
Nice Explanation…. Thanks Sir.
** Student Name: Sridharan Rajannnan
** Student MaidID: sssvkcasridhar@gmail.com
** Student Whatsup No.: +91952455337
**
** This Codes
*/
[#Part: LedContact]
Add: Line: LedMasterLine
[Line: LedMasterLine]
Field: NameField1, MyField
/*
[Field: NameField1]
Use: Name Field
Info: “Enter Your Name Here:”
*/
[Field: NameField1]
Use: Name Field
Set as: “Enter Your Name Here:”
Skip: Yes
[Field: MyField]
Use: Name Field
Set as: $$Value
Sir, In the above Code, I omitted $$LocalaString, but still it works as the $$LocalaString present. What is the use of $$LocalaString?
your vedios are not playing . pls do the needful
https://support.google.com/chrome/answer/4410268?hl=en&co=GENIE.Platform%3DDesktop
Please check the above articles.
Video or website have no problems
Its might be your system/browser related issue
You will need toa allow cokies
and also allow protected content under media section in browser settings
You can test the website/video with a different system/different network providers sometimes organisation network also blocks certain contents.
Why is Field and Field Value, Part I is not playing any video. It is showing only as an image.
I believe all the vidoes are playing without any issue.
Did you checked it in another system through a different network?
Sometimes its your system which can prevent video playing or somthing else
also clear your cookies, Allow protected contents in your chorme media settings
also test it througha differnt browser
Some videos are playing, some are not. The earlier video of Comments in writing the code is playing.