User Profile

Collapse

Profile Sidebar

Collapse
GAURAV MANUSMAR
GAURAV MANUSMAR
Last Activity: Mar 20 '14, 03:53 PM
Joined: Feb 13 '14
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Quick deployment of Visual Studio 2010 Ultimate app with SQL Server 2008 Management S

    Is there some way to create a setup file in VS 2010 Ultimate which will also install SQL Server 2008 Management Studio automatically, attach the database along with the application itself?

    This is meant for people who do not have SQL server installed and they should be able to start using the app by running one single setup.
    See more | Go to post

  • About the MX Record Entry of particular hotmail,yahoomail and rediffmail provider

    I am designing one web page which checks the existence of the Email Address on the server

    For that I have the following code.....this code checks the the existence of gmail address for

    e.g xxxx@gmail.com on the Gmail server

    so can anyone please tell me what is the MX Record Entry of Hotmail,Yahooma il and Rediffmail provider.

    Code:
    TcpClient tClient = new TcpClient("gmail-smtp-in.l.google.com",
    ...
    See more | Go to post

  • how to add web page in windows forms project

    Hello there,,,,,,,

    In my project there is one window form and on that form I have one linkLabel control.....

    Now my question is that I want to add one web page into my project ......so that when I click on the

    LinkLabel it must open that web page .....so how can I do it
    See more | Go to post

  • Code:
    private void checkedListBox1_SelectedIndexChanged(object sender, ItemCheckEventArgs e)
    {
    StringBuilder stringBuilder = new StringBuilder();
     
    foreach (var item in checkedListBox1.CheckedItems)
    {
    SqlConnection con = new SqlConnection("Data Source=.;Initial Catalog=email_client;Integrated Security=True");
    con.Open();
    SqlCommand cmd = new SqlCommand(string.Format("select * from address_book
    ...
    See more | Go to post
    Last edited by Rabbit; Mar 1 '14, 05:34 AM. Reason: Please use [code] and [/code] tags when posting code or formatted data.

    Leave a comment:


  • GAURAV MANUSMAR
    started a topic problem regarding to the checklistbox
    in .NET

    problem regarding to the checklistbox

    Hey there,

    I have a checkedListBox and a TextBox......Wh en I Checked item in the checkedListBox it shows the value of the respective item in the TextBox.....Whe n I Checked multiple items in the checkedListBox it shows the values of the respective items in the TextBox separating by {,}"Comma"

    Now my question is that when I unchecked the item in the textBox it must remove the value of respective unchecked items...
    See more | Go to post

  • GAURAV MANUSMAR
    started a topic problem whille restoring the database
    in .NET

    problem whille restoring the database

    I design one application for backup and restore mechanism . When I press on the backup button it will successfully creates the backup file on the selected path. But when I want to restore the same database then that time it showing me an error "RESTORE cannot process database 'email_client' because it is in use bye this session. It is recommended that the master database be used when performing this operation.RESTO RE DATABASE is terminating...
    See more | Go to post

  • multiple selection of items in checklist Box and show respective value in textbox

    I have one CheckListBox and one TextBox....item s of checkListBox is bound to the

    "user_name" column of the table in database and there is one more column "email_id"..... ..my

    question is that when i check multiple items form the checklist box it will show the their

    respected value(email_id) into the TextBox separating with "," (comma operator)...
    See more | Go to post

  • how to avoid to insert same data into database using C#

    There is one database name as "email_book " and in that database there is one table named as "contact_book". ...name and mail_id are the two column which i had been created in that table.......now i want to add data into to my table using form in C# but on the counter part i just want to avoid inserting the repeated data into the table.......whe n user add same mail_id which is already present in the table then it must gives the...
    See more | Go to post
No activity results to display
Show More
Working...