Localization and Messaging Editor Search


Author
Message
Derek Price
Derek Price
StrataFrame User (195 reputation)StrataFrame User (195 reputation)StrataFrame User (195 reputation)StrataFrame User (195 reputation)StrataFrame User (195 reputation)StrataFrame User (195 reputation)StrataFrame User (195 reputation)StrataFrame User (195 reputation)StrataFrame User (195 reputation)
Group: Forum Members
Posts: 51, Visits: 376
I must be missing something here, but when using the Localization and Messaging Editor, how do I search for a value or key? In Visual Studio in the Forms Designer, it's possible to right-click on a control and get the search key or value functionality. Where is this in the actual Localization Editor?



Thanks,

Derek
Replies
Greg McGuffey
Greg McGuffey
Strategic Support Team Member (4.8K reputation)
Group: Forum Members
Posts: 2K, Visits: 6.6K
Ohhh...tab after new...nice BigGrin Yeah that makes it way more palatable. Thanks for the tip!
Trent Taylor
Trent Taylor
StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 7K
Yeah...and it will ALWAYS bring up the right object and include any required namespacing, etc. Me likey! BigGrin
Edhy Rijo
E
StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)StrataFrame VIP (6.4K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
A year ago when I was getting into .NET I knew I should go with VB.NET since coming from a VFP environment the majority suggested VB.NET instead of C#, so far I love the whole .NET and specially when comparing the VS IDE with the VFP IDE I am more than happy I made the jump, still I am getting to know VB and will wait for a new small project to start working on C#, also I want to see all the new improvement to both languages coming in the new VS2010 before getting too deep Hehe.



Thanks both for sharing those experiences.

Edhy Rijo

Greg McGuffey
Greg McGuffey
Strategic Support Team Member (4.8K reputation)
Group: Forum Members
Posts: 2K, Visits: 6.6K
Edhy Rijo (07/08/2009)
A year ago when I was getting into .NET I knew I should go with VB.NET since coming from a VFP environment the majority suggested VB.NET instead of C#, so far I love the whole .NET and specially when comparing the VS IDE with the VFP IDE I am more than happy I made the jump, still I am getting to know VB and will wait for a new small project to start working on C#, also I want to see all the new improvement to both languages coming in the new VS2010 before getting too deep Hehe.




I have to say I'm happy that I started with VB. Keeping the language sort of close limited what I was learning, which was a ton. There was all the OOP features, the .NET framework and the SF framework.



Now that I'm much more comfy with .NET OOP, and the frameworks, the jump to C# has been pretty easy. Now, when I go back to vb, there seem to be a lot of extra semi-colons! Blink



The latest thing I'm not liking about C# (though I mostly like it better now) is the switch statement. This is somewhat analogous to the select/case statement but it is more limited. Here is something I do often in VB that is not possible in C#:



Select Case Me.PanelManager1.CurrentPage.Name

  Case Me.PanelManagerPage1.Name

  Case Me.PanelManagerPage2.Name

End Select




This is not possible in C#. The case elements must be resolvable at compile time. Thus they can use variables of strings of primitive types, strings or other primitive types. Oh well.
Trent Taylor
Trent Taylor
StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 7K
Unless you are dynamically changing the panel names, then this is totally possible. You would just entry it as a string:



switch(panelName)

{

case "Panel1":

{

}break;

case "Panel2":

{

}break;



}

Greg McGuffey
Greg McGuffey
Strategic Support Team Member (4.8K reputation)
Group: Forum Members
Posts: 2K, Visits: 6.6K
Well, I'm not dynamically changing the panel names, I just really hate things like this as constants. So what you suggest is exactly what I was attempting to avoid. Sad What does happen a lot during development is that I might change the name of the control (in this case the panel page) and in VB the automatic refactoring just handles it (the case statement is updated). With this (string contants) I'd have to remember to go fix it. Likely I wouldn't remember and I'd have to track down the bug. Hopefully they'll update this soon in C# (as they've stated that VB and C# will be equivalent languages, with features being introduced in both at the same time...not sure it applies to this but a guy can hope). Oh well. At this point I mostly prefer to work in C#, but I'm more convinced now that which language you choose is really just a preference (except for the stupid compile all the time thing with vb). Thanks for the info.
Trent Taylor
Trent Taylor
StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 7K
Well, when you are in the middle of development and changing names, OK. But if you go back in after this is working and start changing names then that is like playing Russian Roulette. The very same argument could be made for any single piece of code that has a string key, dictionary, etc. So while you may refactor your code while developing it you would also still recall this needs to be modified. But if you are changing "keys" after this code is already working, then you obviously would have a good reason, but this really should be a moot point. But that is just my point of view. Smile
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Threaded View
Threaded View
Derek Price - 16 Years Ago
Trent L. Taylor - 16 Years Ago
Derek Price - 16 Years Ago
Derek Price - 16 Years Ago
Trent L. Taylor - 16 Years Ago
Derek Price - 16 Years Ago
                         I have already added the search...it makes life MUCH nicer!!! It will...
Trent L. Taylor - 16 Years Ago
                             Hi Trent,

Could you mention some of the things that will...
Edhy Rijo - 16 Years Ago
                                 It would be easier to just look at the What's New topic once released....
Trent L. Taylor - 16 Years Ago
Keith Chisarik - 16 Years Ago
Trent L. Taylor - 16 Years Ago
Keith Chisarik - 16 Years Ago
Trent L. Taylor - 16 Years Ago
                 OK, I give....what's a root data type? :ermm:
Greg McGuffey - 16 Years Ago
Trent L. Taylor - 16 Years Ago
                         Almost ;)

So, is a root type just a structure? Is there...
Greg McGuffey - 16 Years Ago
                             Correct. But the one thing you cannot do in VB has to do with an...
Trent L. Taylor - 16 Years Ago
                                 Just wanted to clarify one thing on this as well, doing this type of...
Trent L. Taylor - 16 Years Ago
                                     I've been reading up on this and I'm not sure I'm seeing what C# can...
Greg McGuffey - 16 Years Ago
                                         Yeah, I suppose that the Narrowing would be similar. In truth, didn't...
Trent L. Taylor - 16 Years Ago
                                             I was just curious. I had read a lot about the differences between C#...
Greg McGuffey - 16 Years Ago
                                                 Well, let me give my two cents on the languages...and give you some...
Trent L. Taylor - 16 Years Ago
                                                     Great post Trent! Much to chew on.

I do have a few...
Greg McGuffey - 16 Years Ago
                                                         [quote]I believe if this was solved, we probably wouldn't be having...
Trent L. Taylor - 16 Years Ago
                                                             So, the next step: suggestions to a developer to move from VB to C#....
Greg McGuffey - 16 Years Ago
                                                                 Well, this is easier said than done. It is my opinion that new...
Trent L. Taylor - 16 Years Ago
                                                                     Thanks Trent.
Greg McGuffey - 16 Years Ago
                                                                         OK, so I decided to give C# a little test drive. I have a little...
Greg McGuffey - 16 Years Ago
                                                                             [quote] Now the language isn't to hard, I'm picking that right up....
Trent L. Taylor - 16 Years Ago
                                                                                 I've done some more test driving, this time on another machine. All...
Greg McGuffey - 16 Years Ago
                                                                                     [codesnippet]My brain still wants to put types after the variable when...
Trent L. Taylor - 16 Years Ago
                                                                                         Ohhh...tab after new...nice :D Yeah that makes it way more palatable....
Greg McGuffey - 16 Years Ago
                                                                                             Yeah...and it will ALWAYS bring up the right object and include any...
Trent L. Taylor - 16 Years Ago
                                                                                                 A year ago when I was getting into .NET I knew I should go with VB.NET...
Edhy Rijo - 16 Years Ago
                                                                                                     [quote][b]Edhy Rijo (07/08/2009)[/b][hr]A year ago when I was getting...
Greg McGuffey - 16 Years Ago
                                                                                                         Unless you are dynamically changing the panel names, then this is...
Trent L. Taylor - 16 Years Ago
                                                                                                             Well, I'm not dynamically changing the panel names, I just really hate...
Greg McGuffey - 16 Years Ago
                                                                                                                 Well, when you are in the middle of development and changing names,...
Trent L. Taylor - 16 Years Ago
Derek Price - 16 Years Ago
Derek Price - 16 Years Ago
Trent L. Taylor - 16 Years Ago

Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search