Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6710555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:02:10+00:00 2026-05-26T08:02:10+00:00

Using VB.Net (Windows Application) Gridview and Textbox When I enter the number or character

  • 0

Using VB.Net (Windows Application)

Gridview and Textbox

When I enter the number or character in the textbox, that value should blink in the gridview.

For Example,

GridView has

 ID Name

001 Jagan
002 Raman
003 Antony
........

.
When the following data is entered,
Textbox1.text = 01 (then ID:001 should Blink in Gridview),
Textbox1.text =Raman (then Name: Raman should Blink in Gridview)

How can I do this?

Need VB.Net Code. Please help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T08:02:11+00:00Added an answer on May 26, 2026 at 8:02 am

    It’s very simple.Add timer to your form,sets its interval to 100 millisecond and in timer1_Tick event toggles textbox appearance as below.

        int flag = 1;
        private void timer1_Tick(object sender, EventArgs e)
        {
            if (flag == 1)
            {
                textBox1.ForeColor = Color.Blue;
                textBox1.Font = new Font("Tahoma", 9, FontStyle.Bold);
                textBox1.BackColor = Color.WhiteSmoke;
                flag = 2;
            }
            else
            {
                textBox1.ForeColor = Color.Black;
                textBox1.Font = new Font("Tahoma", 9, FontStyle.Regular);
                textBox1.BackColor = Color.White;
                flag = 1;
            }
    
        }                  
    

    You can apply more specific designing style which would blink your textbox’s text.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using VB.Net Windows application Form (Gridview and Textbox) GridView1 ID Name 001 Rajan 002
Im using c# .net windows form application. i have a datagrid view. It has
Im using c# .net windows form application. I have created a database which has
I am using clickonce to distribute my VB.net windows application. It has several prerequisites,
I am used to Windows application development using C# .Net. Now that I got
Im using c# .net windows application form. I have created many databases with many
Using VB.NET Windows Based Application In my software I am using a login page,
Im using c# .net windows form application. i have a SQL database with 5
Im using c# .net windows form application. I have many databases created using sql
Im using c# .net windows form application. I have loaded names of all the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.