Click here to Skip to main content
15,891,529 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Thread vs Task, seeking advice before I write code, design point of view. Pin
jkirkerx15-Jan-16 6:06
professionaljkirkerx15-Jan-16 6:06 
GeneralRe: Thread vs Task, seeking advice before I write code, design point of view. Pin
Wombaticus15-Jan-16 6:19
Wombaticus15-Jan-16 6:19 
GeneralRe: Thread vs Task, seeking advice before I write code, design point of view. Pin
jkirkerx15-Jan-16 7:13
professionaljkirkerx15-Jan-16 7:13 
GeneralRe: Thread vs Task, seeking advice before I write code, design point of view. Pin
Wombaticus15-Jan-16 7:38
Wombaticus15-Jan-16 7:38 
GeneralRe: Thread vs Task, seeking advice before I write code, design point of view. Pin
jkirkerx15-Jan-16 9:00
professionaljkirkerx15-Jan-16 9:00 
GeneralRe: Thread vs Task, seeking advice before I write code, design point of view. Pin
Wombaticus16-Jan-16 7:22
Wombaticus16-Jan-16 7:22 
GeneralRe: Thread vs Task, seeking advice before I write code, design point of view. Pin
jkirkerx17-Jan-16 6:59
professionaljkirkerx17-Jan-16 6:59 
QuestionHow to alert checked items from checkedlistbox Pin
Daniel Elmnas11-Jan-16 2:46
Daniel Elmnas11-Jan-16 2:46 
Hello people,
I have made a CheckedListBox,

now is my issue here is my code

VB
Public Sub SQL_Columns_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

       MyCbList.Items.Add("Owner", CheckState.Checked)
       MyCbList.Items.Add("Translator", CheckState.Checked)
       MyCbList.Items.Add("Order number", CheckState.Checked)
       MyCbList.Items.Add("Quotation number", CheckState.Checked)
       MyCbList.Items.Add("Area", CheckState.Checked)
       MyCbList.Items.Add("Description", CheckState.Checked)
       MyCbList.Items.Add("Order date", CheckState.Checked)
       MyCbList.Items.Add("Delivery date", CheckState.Checked)
       MyCbList.Items.Add("Source langugage", CheckState.Checked)
       MyCbList.Items.Add("Target langugage", CheckState.Checked)
       MyCbList.Items.Add("No hit", CheckState.Checked)
       MyCbList.Items.Add("Words(75-84)", CheckState.Checked)
       MyCbList.Items.Add("Words(85-94) ", CheckState.Checked)
       MyCbList.Items.Add("Words (95-99)", CheckState.Checked)
       MyCbList.Items.Add("Words (100%)", CheckState.Checked)
       MyCbList.Items.Add("Words (repetitins)", CheckState.Checked)
       MyCbList.Items.Add("Words (CM)", CheckState.Checked)
       MyCbList.Items.Add("Words (Total Words)", CheckState.Checked)
       MyCbList.Items.Add("DTP", CheckState.Checked)
       MyCbList.Items.Add("Ext.hr", CheckState.Checked)
       MyCbList.Items.Add("Int.hrs", CheckState.Checked)
       MyCbList.Items.Add("Cust. Invoiced", CheckState.Checked)
       MyCbList.Items.Add("Estimated Customer Total", CheckState.Checked)
       MyCbList.Items.Add("Estimated TB", CheckState.Checked)

   End Sub


I wonder how do I make item to a string if the item is checked?

thank you in advance
AnswerRe: How to alert checked items from checkedlistbox Pin
Richard Deeming11-Jan-16 3:57
mveRichard Deeming11-Jan-16 3:57 
QuestionWindows service and a Form program, serializing data stored in a file, shared between the 2 programs Pin
jkirkerx9-Jan-16 13:29
professionaljkirkerx9-Jan-16 13:29 
AnswerRe: Windows service and a Form program, serializing data stored in a file, shared between the 2 programs Pin
Dave Kreskowiak9-Jan-16 18:17
mveDave Kreskowiak9-Jan-16 18:17 
GeneralRe: Windows service and a Form program, serializing data stored in a file, shared between the 2 programs Pin
jkirkerx10-Jan-16 7:33
professionaljkirkerx10-Jan-16 7:33 
GeneralRe: Windows service and a Form program, serializing data stored in a file, shared between the 2 programs Pin
Dave Kreskowiak10-Jan-16 7:41
mveDave Kreskowiak10-Jan-16 7:41 
GeneralRe: Windows service and a Form program, serializing data stored in a file, shared between the 2 programs Pin
jkirkerx10-Jan-16 9:40
professionaljkirkerx10-Jan-16 9:40 
AnswerRe: Windows service and a Form program, serializing data stored in a file, shared between the 2 programs Pin
Eddy Vluggen10-Jan-16 4:51
professionalEddy Vluggen10-Jan-16 4:51 
GeneralRe: Windows service and a Form program, serializing data stored in a file, shared between the 2 programs Pin
jkirkerx10-Jan-16 7:38
professionaljkirkerx10-Jan-16 7:38 
GeneralRe: Windows service and a Form program, serializing data stored in a file, shared between the 2 programs Pin
Eddy Vluggen10-Jan-16 11:11
professionalEddy Vluggen10-Jan-16 11:11 
GeneralRe: Windows service and a Form program, serializing data stored in a file, shared between the 2 programs Pin
jkirkerx10-Jan-16 13:27
professionaljkirkerx10-Jan-16 13:27 
AnswerI merged all my common stuff into a common DLL, and got a Access denied from the folder, and not the file Pin
jkirkerx10-Jan-16 13:35
professionaljkirkerx10-Jan-16 13:35 
GeneralRe: I merged all my common stuff into a common DLL, and got a Access denied from the folder, and not the file Pin
Eddy Vluggen11-Jan-16 5:50
professionalEddy Vluggen11-Jan-16 5:50 
GeneralRe: I merged all my common stuff into a common DLL, and got a Access denied from the folder, and not the file Pin
jkirkerx11-Jan-16 6:23
professionaljkirkerx11-Jan-16 6:23 
GeneralRe: I merged all my common stuff into a common DLL, and got a Access denied from the folder, and not the file Pin
Eddy Vluggen11-Jan-16 8:46
professionalEddy Vluggen11-Jan-16 8:46 
Answer[Solved] Finally got it to work Pin
jkirkerx12-Jan-16 8:31
professionaljkirkerx12-Jan-16 8:31 
QuestionForm Close Pin
dha NAA8-Jan-16 0:10
dha NAA8-Jan-16 0:10 
AnswerRe: Form Close Pin
Richard MacCutchan8-Jan-16 1:18
mveRichard MacCutchan8-Jan-16 1:18 

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.