Click here to Skip to main content
15,902,198 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Form resize issue Pin
Martin.Smith3-Jan-07 1:26
Martin.Smith3-Jan-07 1:26 
AnswerRe: Form resize issue Pin
Christian Graus2-Jan-07 22:32
protectorChristian Graus2-Jan-07 22:32 
GeneralRe: Form resize issue Pin
darkturtle2-Jan-07 22:57
darkturtle2-Jan-07 22:57 
GeneralRe: Form resize issue Pin
Christian Graus2-Jan-07 22:59
protectorChristian Graus2-Jan-07 22:59 
QuestionMultilingual suggestions Pin
shreekar2-Jan-07 19:11
shreekar2-Jan-07 19:11 
AnswerRe: Multilingual suggestions Pin
Johan Hakkesteegt2-Jan-07 22:22
Johan Hakkesteegt2-Jan-07 22:22 
GeneralRe: Multilingual suggestions Pin
shreekar2-Jan-07 22:36
shreekar2-Jan-07 22:36 
GeneralRe: Multilingual suggestions Pin
Johan Hakkesteegt3-Jan-07 0:27
Johan Hakkesteegt3-Jan-07 0:27 
Hi Shreekar,

I definitely recommend the database approach over all others, if future development/extension/maintenance of your app is a consideration, you could even use an xml-file for this purpose, if the app does not use a database to begin with, or if you can't afford it to use too much of the client PC's resources. If it isn't, and you don't have too many languages to worry about, than you should probably stick with your original idea (I wrote one app myself that uses a similar approach, because it only has two languages, and not all forms needed to be translated).

I am sorry to say that I have limited experience only with adapting the installation process, but I do know that pretty much anything is possible with the VB.NET installation project, and I am sure there are some walkthroughs available, or someone else may well have built something similar already. On the other hand, you could save yourself a little trouble, by installing/starting the app in a default language (say yours), and offering the user a choice on startup, which will then be saved somewhere

For buttons, again I recommend symbols/pictures over text, and the use of tool tips (stretch automatically). Label / field width is something I have struggled with myself, and there are four approaches that I know of:
1. Make sure the label is a little bigger than the longest possible string that will be fed to it. You could make some function that will determine the size of a label based on the string length, but you would still need to keep the space on the form open for the label to grow (= same difference). The good news is, that labels can be set to wrap text, so you can size them vertically if you have to.
2. Dialog boxes/temporary forms. With a function to determine the size, you don't have to worry about a label not fitting the form.
3. Use symbols on the labels, and feed the text to a tool tip per label.
4. Use text (Multiline: true) or list boxes, instead of labels and format them to look like labels (BackColor: Control, BorderStyle: None). These can use scrollbars.

Johan

My advice is free, and you may get what you paid for.

GeneralRe: Multilingual suggestions Pin
shreekar3-Jan-07 0:31
shreekar3-Jan-07 0:31 
GeneralRe: Multilingual suggestions Pin
Johan Hakkesteegt3-Jan-07 0:35
Johan Hakkesteegt3-Jan-07 0:35 
QuestionIOException at the time of writing text to a newly file Pin
vivek_cs2-Jan-07 19:10
vivek_cs2-Jan-07 19:10 
AnswerRe: IOException at the time of writing text to a newly file Pin
shreekar2-Jan-07 19:22
shreekar2-Jan-07 19:22 
AnswerRe: custom ctrls Pin
Christian Graus2-Jan-07 19:26
protectorChristian Graus2-Jan-07 19:26 
QuestionPls Help me!! Listbox contains Pin
somagunasekaran2-Jan-07 17:33
somagunasekaran2-Jan-07 17:33 
AnswerRe: Pls Help me!! Listbox contains Pin
Johan Hakkesteegt2-Jan-07 22:39
Johan Hakkesteegt2-Jan-07 22:39 
QuestionRead Only Files Pin
jady842-Jan-07 12:18
jady842-Jan-07 12:18 
AnswerRe: Read Only Files Pin
MatrixCoder2-Jan-07 12:46
MatrixCoder2-Jan-07 12:46 
GeneralRe: Read Only Files Pin
jady843-Jan-07 10:27
jady843-Jan-07 10:27 
GeneralRe: Read Only Files Pin
MatrixCoder3-Jan-07 14:38
MatrixCoder3-Jan-07 14:38 
AnswerRe: Read Only Files Pin
Colin Angus Mackay2-Jan-07 12:46
Colin Angus Mackay2-Jan-07 12:46 
GeneralRe: Read Only Files Pin
jady843-Jan-07 10:26
jady843-Jan-07 10:26 
QuestionGraph implementation Pin
maisa.sh2-Jan-07 11:52
maisa.sh2-Jan-07 11:52 
AnswerRe: Graph implementation Pin
Christian Graus2-Jan-07 13:22
protectorChristian Graus2-Jan-07 13:22 
QuestionDataGridView DataSource changing !! Pin
kindman_nb2-Jan-07 11:06
kindman_nb2-Jan-07 11:06 
AnswerRe: DataGridView DataSource changing !! Pin
kindman_nb2-Jan-07 11:12
kindman_nb2-Jan-07 11:12 

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.