|
-
Sep 14th, 2008, 07:59 PM
#1
Thread Starter
Banned
[RESOLVED] [2005] Very weird with combobox
Hi guys
I find it very weird with my project. Every time when I use the combobox to read from English to Chinese language then select the button to disable it, it reads the list1 item fine without a problem but when I attempt to read from Chinese to Korean, suddenly I get the error!
Error:
OutOfMemoryException was unhandled
Insufficient memory to continue the execution of the program.
Code:
Private Sub cmdApply_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdApply.Click
If ComboBox1.SelectedItem = "English" Then
List1.Items.Clear()
List1.Items.Add(My.Resources.RuntimeStrings_EN1.test)
End If
If ComboBox1.SelectedItem = "中国话" Then
List1.Items.Clear()
List1.Items.Add(My.Resources.RuntimeStrings_CN1.test)
End If
If ComboBox1.SelectedItem = "中国话" Then
List1.Items.Clear()
List1.Items.Add(My.Resources.RuntimeStrings_KO1.test)
End If
End Sub
Here is the list of my combobox items
this is the test
这是测试
이것은 테스트
If I don't read from English to Chinese just Korean, it will be reading the list1 item as it will be reading fine without receive the error! I don't understand where the problem is coming from and I don't understand why the methods don't ever like each other. The reason why I get this error as it is because the system is out of memory exception. I cannot be able to get my situation to executive this issue. Do you have any idea how to resolve it??
Thanks,
Mark
-
Sep 15th, 2008, 09:14 AM
#2
Thread Starter
Banned
Re: [2005] Very weird with combobox
No one know how to solve it??????
-
Sep 18th, 2008, 09:25 AM
#3
Thread Starter
Banned
Re: [2005] Very weird with combobox
guys??????????? anyone?????????
-
Sep 19th, 2008, 07:22 PM
#4
Thread Starter
Banned
Re: [2005] Very weird with combobox
-
Sep 20th, 2008, 08:58 AM
#5
Thread Starter
Banned
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|