Click here to Skip to main content
15,890,123 members

Raj Lal - Professional Profile



Summary

Follow on Twitter LinkedIn      Blog RSS
65,836
Author
1,752
Authority
2,899
Debator
90
Editor
16
Enquirer
189
Organiser
2,420
Participant

 

Groups

Below is the list of groups in which the member is participating

United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.
This is a Collaborative Group
This member has Member status in this group

41 members

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralWelcome to my page Pin
19-Oct-05 12:42
suss19-Oct-05 12:42 
GeneralRe: Welcome to my page Pin
_AK_21-Aug-06 21:27
_AK_21-Aug-06 21:27 
GeneralRe: Welcome to my page Pin
Raj Lal31-Aug-06 8:09
professionalRaj Lal31-Aug-06 8:09 
GeneralRe: Welcome to my page Pin
_AK_31-Aug-06 18:10
_AK_31-Aug-06 18:10 
GeneralRe: Welcome to my page Pin
korupally2-Dec-06 0:28
korupally2-Dec-06 0:28 
GeneralRe: Welcome to my page Pin
Raj Lal2-Dec-06 6:25
professionalRaj Lal2-Dec-06 6:25 
GeneralRe: Welcome to my page Pin
korupally3-Dec-06 17:23
korupally3-Dec-06 17:23 
GeneralRe: Welcome to my page Pin
Raj Lal4-Dec-06 7:22
professionalRaj Lal4-Dec-06 7:22 
korupally wrote:
private void frmMain_Load(object sender, System.EventArgs e)
{
strCulture = RegistryAccess.GetStringRegistryValue(@"Language","en-US");



This particular function is caled to find out whether the user has used earlier the application and set a default langaage for the application

RegistryAccess.GetStringRegistryValue(@"Language","en-US");

It will read the value from [HKEY_CURRENT_USER\Software\CODE PROJECT\GLOBALIZATION SAMPLE] in the registry run regedit to find this value
If the value [Language] is already there it wil take the value from there

OR

WHEN THE APPLICATION IS RUN THE FIRST TIME AND THERE IS NO VALUE FOR Laaguage in that registry key the last parameter [ "en-US"] in the function set
the value of [Language] to be "en-US" and create the key HKEY_CURRENT_USER\Software\CODE PROJECT\GLOBALIZATION SAMPLE

korupally wrote:
Here your getting the value of strCulture from the registry for the default language english[I think so]. Here i think language is a key word understand by the registry and 'en-US' is the default language. I think that here we are getting the registry value for the particular language which we want to use in our application [like french,german etc.,] i think first we have to get that particular registry value from the registry and later we will use it in our application. To do this why u have declared the two global constants and why u have assigned the two values "Code project" and "Globalization sample".
[private const string COMPANY_NAME = "CODE PROJECT";
private const string APPLICATION_NAME = "GLOBALIZATION SAMPLE";]


Now you undersand we are saving the value of the DEFAULT LANGUAGE IN REGISTRY
where should we save it in a user created Registry key so that user created registry key is

HKEY_CURRENT_USER\Software\COMPANY_NAME \ APPLICATION_NAME

whose value comes to

HKEY_CURRENT_USER\Software\CODE PROJECT\GLOBALIZATION SAMPLE

if your company name is verizon inc and your product name in Invoice applicatin you can initialize them as verizon and verizoninvoice

and the Key created in registry will be

HKEY_CURRENT_USER\Software\Verizon\Verizon Invoice

HOPE this helps










General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.