© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
C#C
C#•3y ago•
23 replies
5124

Visual Studio 2022 winforms problem

Eror: CS1061

private void btn_Giris_Click(object sender, EventArgs e)
{
    if (!string.IsNullOrEmpty(txt_KullaniciAdi.Text))
    {

        using (WisdifyData data = new WisdifyData())
        {
            Kullanici kullanici = data.kullaniciAl(txt_KullaniciAdi.Text);

            if (kullanici != null)
            {
                Menu me = new Menu(kullanici); // ### Problemm CS0144
                me.Show();                      // ### Problemm CS1061

            }
            else
            {
                MessageBox.Show("Kullanıcı adına sahip bir kişi bulunamadı.", "Bulunamadı", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
    }
    else
    {
        MessageBox.Show("Lütfen boş bırakmayınız.","Uyarı",MessageBoxButtons.OK,MessageBoxIcon.Warning);
    }
}
private void btn_Giris_Click(object sender, EventArgs e)
{
    if (!string.IsNullOrEmpty(txt_KullaniciAdi.Text))
    {

        using (WisdifyData data = new WisdifyData())
        {
            Kullanici kullanici = data.kullaniciAl(txt_KullaniciAdi.Text);

            if (kullanici != null)
            {
                Menu me = new Menu(kullanici); // ### Problemm CS0144
                me.Show();                      // ### Problemm CS1061

            }
            else
            {
                MessageBox.Show("Kullanıcı adına sahip bir kişi bulunamadı.", "Bulunamadı", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
    }
    else
    {
        MessageBox.Show("Lütfen boş bırakmayınız.","Uyarı",MessageBoxButtons.OK,MessageBoxIcon.Warning);
    }
}


I wrote the error code numbers in the code, I couldn't find a solution
C# banner
C#Join
We are a programming server aimed at coders discussing everything related to C# (CSharp) and .NET.
61,871Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

✅ Seperating files, WinForms, Visual Studio
C#CC# / help
2y ago
Visual Studio 2022 Extension
C#CC# / help
3y ago
❔ Visual Studio 2022 Error
C#CC# / help
4y ago
❔ visual studio community 2022
C#CC# / help
4y ago