Click here to Skip to main content
15,890,579 members
Home / Discussions / C#
   

C#

 
GeneralRe: XML MySql error Pin
Rıza Berkay Ayçelebi14-Aug-17 18:41
Rıza Berkay Ayçelebi14-Aug-17 18:41 
GeneralRe: XML MySql error Pin
Richard MacCutchan14-Aug-17 21:29
mveRichard MacCutchan14-Aug-17 21:29 
AnswerRe: XML MySql error Pin
Pete O'Hanlon15-Aug-17 0:24
mvePete O'Hanlon15-Aug-17 0:24 
GeneralRe: XML MySql error Pin
jschell16-Aug-17 6:31
jschell16-Aug-17 6:31 
QuestionHow to create a virtual disk storage software in c # Pin
Nguyễn Mạnh Sơn13-Aug-17 4:24
Nguyễn Mạnh Sơn13-Aug-17 4:24 
AnswerRe: How to create a virtual disk storage software in c # Pin
Dave Kreskowiak13-Aug-17 4:42
mveDave Kreskowiak13-Aug-17 4:42 
AnswerRe: How to create a virtual disk storage software in c # Pin
Eddy Vluggen13-Aug-17 6:12
professionalEddy Vluggen13-Aug-17 6:12 
QuestionScrollEventType.EndScroll in panel scroll bar did not work Pin
Lawliet072710-Aug-17 19:05
Lawliet072710-Aug-17 19:05 
Hi good day to all, I'am using a panel that have scrollbar in vertical. I want to display a new value of scroll bar when i end scrolling and I use this code

        private void panel1_Scroll(object sender, ScrollEventArgs e)
        {
            if (e.Type == ScrollEventType.EndScroll)
            {
                MessageBox.Show(e.NewValue.ToString());
            }

        }
but it does not work, but when i use a single vertical scroll bar and use it this code :
        
     private void hScrollBar1_Scroll(object sender, ScrollEventArgs e)
        {
            if (e.Type == ScrollEventType.EndScroll)
            {
                MessageBox.Show(e.NewValue.ToString());
            }
        }
it will work, I thought i can use the same code but it fails, Is their any way to do that?

Thank you in advance

AnswerRe: ScrollEventType.EndScroll in panel scroll bar did not work Pin
BillWoodruff10-Aug-17 19:40
professionalBillWoodruff10-Aug-17 19:40 
QuestionFind garbage object in form designer file ? Pin
Member 245846710-Aug-17 18:52
Member 245846710-Aug-17 18:52 
AnswerRe: Find garbage object in form designer file ? Pin
BillWoodruff10-Aug-17 19:34
professionalBillWoodruff10-Aug-17 19:34 
GeneralRe: Find garbage object in form designer file ? Pin
Member 245846711-Aug-17 21:52
Member 245846711-Aug-17 21:52 
GeneralRe: Find garbage object in form designer file ? Pin
Pete O'Hanlon15-Aug-17 1:40
mvePete O'Hanlon15-Aug-17 1:40 
GeneralRe: Find garbage object in form designer file ? Pin
Member 245846717-Aug-17 19:33
Member 245846717-Aug-17 19:33 
QuestionAsp.net c# Pin
Hrishikeshkamble10-Aug-17 7:13
Hrishikeshkamble10-Aug-17 7:13 
AnswerRe: Asp.net c# Pin
Richard Deeming10-Aug-17 8:33
mveRichard Deeming10-Aug-17 8:33 
QuestionEmbedded image in Resource reported error ? Pin
Member 24584679-Aug-17 22:06
Member 24584679-Aug-17 22:06 
Questionworking around 'using wrapped MemoryStream immutability ? Pin
BillWoodruff9-Aug-17 17:53
professionalBillWoodruff9-Aug-17 17:53 
AnswerRe: working around 'using wrapped MemoryStream immutability ? Pin
Richard Deeming10-Aug-17 1:16
mveRichard Deeming10-Aug-17 1:16 
GeneralRe: working around 'using wrapped MemoryStream immutability ? Pin
BillWoodruff10-Aug-17 3:47
professionalBillWoodruff10-Aug-17 3:47 
GeneralRe: working around 'using wrapped MemoryStream immutability ? Pin
Richard Deeming10-Aug-17 4:01
mveRichard Deeming10-Aug-17 4:01 
QuestionEntity Framework 4 mapping problems Pin
Member 109427609-Aug-17 13:19
Member 109427609-Aug-17 13:19 
AnswerRe: Entity Framework 4 mapping problems Pin
Gerry Schmitz11-Aug-17 5:55
mveGerry Schmitz11-Aug-17 5:55 
GeneralRe: Entity Framework 4 mapping problems Pin
Member 1094276011-Aug-17 9:11
Member 1094276011-Aug-17 9:11 
Questionquery to retrieve Gujarati Pin
Member 129573749-Aug-17 0:44
Member 129573749-Aug-17 0:44 

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.