Click here to Skip to main content
15,887,979 members
Home / Discussions / C#
   

C#

 
GeneralRe: xml carriage return Pin
arkiboys13-Jan-09 23:04
arkiboys13-Jan-09 23:04 
GeneralRe: xml carriage return Pin
J4amieC13-Jan-09 23:37
J4amieC13-Jan-09 23:37 
GeneralRe: xml carriage return Pin
arkiboys13-Jan-09 23:41
arkiboys13-Jan-09 23:41 
QuestionHow can I get selected value from crystal report Pin
Ali 11013-Jan-09 19:59
Ali 11013-Jan-09 19:59 
QuestionAdd Icon / JPG into Cell [DataGridView] Pin
M Riaz Bashir13-Jan-09 19:59
M Riaz Bashir13-Jan-09 19:59 
AnswerRe: Add Icon / JPG into Cell [DataGridView] Pin
dan!sh 13-Jan-09 21:13
professional dan!sh 13-Jan-09 21:13 
QuestionRemoting: Problem unregistering channel - System.Net.Sockets.SocketException : Only one usage of each socket address (protocol/network address/port) is normally permitted Pin
devvvy13-Jan-09 18:55
devvvy13-Jan-09 18:55 
QuestionSendkeys.Sendwait Pin
channbear13-Jan-09 18:38
channbear13-Jan-09 18:38 
i am making a program wherein i have a replica of a keyboard. The user will tap any key on the keyboard on what he would like to type. He can select the input language to English,Japanese Hiragana and Japanese Katakana. I'm using Sendkey.Sendwait to send the character tapped by the user to the textbox. My problem is when I select Hiragana or Katakana for the input language and type, sometimes the characters that I type will disappear. It will appear when the user will tap again a key to the keyboard. Please help me...

below is a snippet of my code...this will just display the alphabets...when the letter is tap...

if (m_LastStr!=null && m_LastStr.EndsWith(" ")) // added for the correction asked by anand
{
SendKeys.SendWait(m_LastStr + "\n");
SendKeys.Flush();
m_LastStr = null;
}

if (((Button)sender).Text[0] > 'A' && ((Button)sender).Text[0] < 'Z') // to handle shift effect
{
m_LastStr = m_LastStr + ((Button)sender).Text.ToLower();
SendKeys.SendWait(m_LastStr);
}
else
{
m_LastStr = m_LastStr + ((Button)sender).Text;
SendKeys.SendWait(m_LastStr);
}

SendKeys.Flush();
QuestionHow to generate XML report using SQL Server Reporting Services Pin
DipaliG13-Jan-09 18:25
DipaliG13-Jan-09 18:25 
AnswerRe: How to generate XML report using SQL Server Reporting Services Pin
ColinM12313-Jan-09 18:50
ColinM12313-Jan-09 18:50 
GeneralRe: How to generate XML report using SQL Server Reporting Services Pin
ColinM12313-Jan-09 18:50
ColinM12313-Jan-09 18:50 
QuestionSmallest and fastest way to store numeric data in a file Pin
Reanalyse13-Jan-09 15:40
Reanalyse13-Jan-09 15:40 
AnswerRe: Smallest and fastest way to store numeric data in a file [modified] Pin
Luc Pattyn13-Jan-09 16:35
sitebuilderLuc Pattyn13-Jan-09 16:35 
AnswerRe: Smallest and fastest way to store numeric data in a file Pin
PIEBALDconsult13-Jan-09 16:51
mvePIEBALDconsult13-Jan-09 16:51 
AnswerRe: Smallest and fastest way to store numeric data in a file Pin
Guffa13-Jan-09 17:20
Guffa13-Jan-09 17:20 
AnswerRe: Smallest and fastest way to store numeric data in a file Pin
Mark Churchill13-Jan-09 17:42
Mark Churchill13-Jan-09 17:42 
GeneralRe: Smallest and fastest way to store numeric data in a file Pin
Reanalyse13-Jan-09 19:22
Reanalyse13-Jan-09 19:22 
AnswerRe: Smallest and fastest way to store numeric data in a file Pin
CPallini13-Jan-09 22:01
mveCPallini13-Jan-09 22:01 
QuestionObtain All Information from an Ocx [modified] Pin
angral13-Jan-09 14:41
angral13-Jan-09 14:41 
AnswerRe: Obtain All Information from an Ocx Pin
Henry Minute13-Jan-09 16:56
Henry Minute13-Jan-09 16:56 
GeneralRe: Obtain All Information from an Ocx Pin
angral13-Jan-09 18:05
angral13-Jan-09 18:05 
Questionanimations\video Pin
mjmim13-Jan-09 14:39
mjmim13-Jan-09 14:39 
AnswerRe: animations\video Pin
EliottA13-Jan-09 14:45
EliottA13-Jan-09 14:45 
QuestionDatasets / SQL [modified] Pin
CrimeanTurtle200813-Jan-09 13:42
CrimeanTurtle200813-Jan-09 13:42 
AnswerRe: Datasets / SQL Pin
leckey13-Jan-09 14:36
leckey13-Jan-09 14: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.