Click here to Skip to main content
15,888,610 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Running .NET applications on computers without the framework Pin
Christian Graus23-Oct-05 12:52
protectorChristian Graus23-Oct-05 12:52 
AnswerRe: Running .NET applications on computers without the framework Pin
VOXVOXVOX5-Dec-05 6:34
VOXVOXVOX5-Dec-05 6:34 
QuestionMonitoring Exceptions from the core Pin
thebread22-Oct-05 1:18
thebread22-Oct-05 1:18 
QuestionExceptions Weight Pin
Paolo Ponzano21-Oct-05 9:06
Paolo Ponzano21-Oct-05 9:06 
AnswerRe: Exceptions Weight Pin
S. Senthil Kumar21-Oct-05 21:49
S. Senthil Kumar21-Oct-05 21:49 
GeneralRe: Exceptions Weight Pin
Paolo Ponzano23-Oct-05 5:00
Paolo Ponzano23-Oct-05 5:00 
GeneralRe: Exceptions Weight Pin
Daniel Grunwald23-Oct-05 7:53
Daniel Grunwald23-Oct-05 7:53 
Questioncharacter exchange brings wrong result Pin
axel.schmidt@t-online.de20-Oct-05 21:00
axel.schmidt@t-online.de20-Oct-05 21:00 
Hi
I found a very strange result after trying to exchange some characters:

Public Shared Function change_char(ByVal s As String, ByVal from_char As String, ByVal to_char As String) As String
While s.IndexOf(from_char) > -1
s = Mid(s, 1, s.IndexOf(from_char)) + to_char + Mid(s, s.IndexOf(from_char) + 2, s.Length)
End While
Return s
End Function

If I call this function with german character ÄÖÜ.., everything is OK,

mytext="ÄÖÜßäöüß"
Dim s As String
s = change_char(mytext, "ä", "ae")
s = change_char(s, "Ö", "oe")
s = change_char(s, "ü", "ue")
s = change_char(s, "Ä", "Ae")
s = change_char(s, "Ö", "Oe")
s = change_char(s, "Ü", "Ue")

but

s = change_char(s, "ß", "ss")

goes wrong and bring unlimited ss, because it finds even after the change to ss the character ß.

Does anybody have an explanation for that?

Thanks in advance



Axel Schmidt
AnswerRe: character exchange brings wrong result Pin
lmoelleb21-Oct-05 4:06
lmoelleb21-Oct-05 4:06 
GeneralRe: character exchange brings wrong result Pin
axel.schmidt@t-online.de21-Oct-05 4:50
axel.schmidt@t-online.de21-Oct-05 4:50 
GeneralRe: character exchange brings wrong result Pin
lmoelleb21-Oct-05 6:24
lmoelleb21-Oct-05 6:24 
QuestionILDASM Pin
Nuray20-Oct-05 4:20
Nuray20-Oct-05 4:20 
AnswerRe: ILDASM Pin
S. Senthil Kumar20-Oct-05 5:27
S. Senthil Kumar20-Oct-05 5:27 
GeneralRe: ILDASM Pin
Nuray20-Oct-05 6:15
Nuray20-Oct-05 6:15 
GeneralRe: ILDASM Pin
S. Senthil Kumar20-Oct-05 20:56
S. Senthil Kumar20-Oct-05 20:56 
QuestionStrong Named Assemblies Pin
kapildhir 19-Oct-05 19:38
kapildhir 19-Oct-05 19:38 
AnswerRe: Strong Named Assemblies Pin
S. Senthil Kumar20-Oct-05 5:34
S. Senthil Kumar20-Oct-05 5:34 
GeneralRe: Strong Named Assemblies Pin
Anonymous20-Oct-05 19:24
Anonymous20-Oct-05 19:24 
QuestionHow to free the display of the form/control? SuspendLayout() can not work. Pin
zhyluopro19-Oct-05 7:25
zhyluopro19-Oct-05 7:25 
AnswerRe: How to free the display of the form/control? SuspendLayout() can not work. Pin
Ravenash23-Oct-05 12:28
Ravenash23-Oct-05 12:28 
QuestionWinform app looping... how can I find out where? Pin
nzmike18-Oct-05 18:28
nzmike18-Oct-05 18:28 
AnswerRe: Winform app looping... how can I find out where? Pin
Dave Kreskowiak19-Oct-05 2:34
mveDave Kreskowiak19-Oct-05 2:34 
AnswerRe: Winform app looping... how can I find out where? Pin
S. Senthil Kumar20-Oct-05 5:17
S. Senthil Kumar20-Oct-05 5:17 
GeneralRe: Winform app looping... how can I find out where? Pin
nzmike20-Oct-05 12:39
nzmike20-Oct-05 12:39 
AnswerRe: Winform app looping... how can I find out where? Pin
Ravenash23-Oct-05 12:36
Ravenash23-Oct-05 12:36 

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.