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

.NET (Core and Framework)

 
QuestionRemote debugging : Windows form apps Pin
Md Saleem Navalur24-Oct-05 0:39
Md Saleem Navalur24-Oct-05 0:39 
QuestionImage Converting Pin
idris cinn23-Oct-05 20:46
idris cinn23-Oct-05 20:46 
AnswerRe: Image Converting Pin
Christian Graus25-Oct-05 15:57
protectorChristian Graus25-Oct-05 15:57 
QuestionProcedure to Install Visual Studio.net Pin
Anonymous23-Oct-05 19:56
Anonymous23-Oct-05 19:56 
AnswerRe: Procedure to Install Visual Studio.net Pin
Dave Kreskowiak24-Oct-05 4:41
mveDave Kreskowiak24-Oct-05 4:41 
GeneralRe: Procedure to Install Visual Studio.net Pin
Anonymous24-Oct-05 21:14
Anonymous24-Oct-05 21:14 
GeneralRe: Procedure to Install Visual Studio.net Pin
Dave Kreskowiak25-Oct-05 1:16
mveDave Kreskowiak25-Oct-05 1:16 
QuestionXML Style commnets in .Net Pin
sheerprogrammer23-Oct-05 19:45
sheerprogrammer23-Oct-05 19:45 
QuestionRunning .NET applications on computers without the framework Pin
mihai_152922-Oct-05 11:25
mihai_152922-Oct-05 11:25 
AnswerRe: Running .NET applications on computers without the framework Pin
Dave Kreskowiak22-Oct-05 13:56
mveDave Kreskowiak22-Oct-05 13:56 
GeneralRe: Running .NET applications on computers without the framework Pin
mihai_152923-Oct-05 0:29
mihai_152923-Oct-05 0:29 
GeneralRe: Running .NET applications on computers without the framework Pin
Robert Rohde23-Oct-05 0:49
Robert Rohde23-Oct-05 0:49 
GeneralRe: Running .NET applications on computers without the framework Pin
Ravenash23-Oct-05 12:22
Ravenash23-Oct-05 12:22 
GeneralRe: Running .NET applications on computers without the framework Pin
Dave Kreskowiak24-Oct-05 4:35
mveDave Kreskowiak24-Oct-05 4:35 
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 

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.