User Profile

Collapse

Profile Sidebar

Collapse
sentimental37
sentimental37
Last Activity: Mar 31 '14, 08:11 AM
Joined: May 17 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • sentimental37
    started a topic Fetch Reviews from homewarranty reviews

    Fetch Reviews from homewarranty reviews

    Reviews of my company are posted on this site.
    www.homewarrant yreviews.com/reviews/landmark-home-warranty.


    I want to fetch the review posted there on my site in a simple HTMl page. How can i achieve this.
    See more | Go to post

  • Updating Changes Made in silverlight datagrid to database

    I am using a datagrid in my Silverlight App. I have binded columns of that datagrid to an observable collection which is being filled by data from WCF service at Page Load. I want that whatever changes i make to datagrid at runtime, i.e modify something or add a new row, or delete a row. it should get updated permanently to the database on click of Save button. How can i achieve it.

    My Silverlight Page XAML.

    Code:
    
    
    ...
    See more | Go to post

  • sentimental37
    started a topic GET Values from table in a recursive manner

    GET Values from table in a recursive manner

    I am trying to work with C# and i am stuck here. My problem is i want to retrieve the count of all the users in a specific side. Let me Explain. Here is my table snapshot with sample data.


    Now what i want exactly is that i get the count of users in a specific side as i give a user id as a parameter.The data is stored in MS Sql Database and i have to implement this on a website so efficiency of code is also a issue.
    ...
    See more | Go to post

  • sentimental37
    started a topic CancelAsync not working..

    CancelAsync not working..

    I am pasting a code which i have made in VS...al is fine bt cancelasync method of background worker is not working..so please help me out what is missing.



    Code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading;
    using System.Threading.Tasks;
    ...
    See more | Go to post

  • Total No. of errors defined in .Net Framework 4.0

    Hi friends
    I want to know that how many total no of errors are defined in .net framework 4.0 or in c#. I know this is somewhat nonsense question but i say that whenever we do some wrong in VS it show errors,so it must be defined somewhere so can i get a listing of total errors in .Net 4.0
    See more | Go to post

  • sentimental37
    replied to how to install the .net framework
    in .NET
    It is actually very simple. Just download the .Net Framework setup and
    run it. For further explanations please give the details as which version you want to install
    See more | Go to post

    Leave a comment:


  • thanks for the response. Actually this question just struck in my mind and i thought that can i make program without using the concept of class.
    See more | Go to post

    Leave a comment:


  • sentimental37
    started a topic Make a C# program without using class

    Make a C# program without using class

    Hi everyone,
    Is there any way or trick to make a program that executes without using any class or class concept
    See more | Go to post

  • How to display data from a sql query in a listview?

    hi i m using the following code
    Code:
                SqlCommand cm2 = new SqlCommand("Select * from cand_details where cand_id='"+candid+"'",con);
                dr = cm2.ExecuteReader();
    this return the following :
    Max Payne
    timmy smoth
    abc aha
    and so on.............

    I want to display this data in a list view i have on the form named listView1. How...
    See more | Go to post

  • use switch case to compare label1.text.length

    hi i m using the following code in if-else can i use the same in switch case
    Code:
     if (label1.Text.Length <= 87)
                {
                 //do something
                }
                else if(label1.Text.Length <=174)
                {
                   //do something
                }
                else if (label1.Text.Length <=261)
                {
                   //do something
    ...
    See more | Go to post

  • sentimental37
    started a topic Working with lusrmgr.msc in c#

    Working with lusrmgr.msc in c#

    hi guys i am in a institute and there i need to manage the client computers and i want to build an application which would run on a server.It should connect all clients in my network and should be able to change their users account password automaticaly. I dont want any type of manual work just users should enter their employee code and the system should give them a machine no on which they have to go and should change that machines password and...
    See more | Go to post

  • How to use the commands of command prompt or run Shortcuts in a program

    Hi guys, i m developing an application in which i want to run the commands of the command prompt without starting cmd at that time just input commands in a text box and they should run and the same with shortcuts of run.how to do this plzzzz help""??????
    See more | Go to post

  • How to use the con.ChangeDatabase if i want to change my database

    I want to change the database in my app. where i m using access as backend and C# as frontend.I saw con.ChangeDatab ase but i dont know how to use it plzzz help
    See more | Go to post

  • How to create a table in access 2007 with AutoNumber Datatype

    I want to create a table in access 2007 by query not in design view. My table should look like;
    Serial AutoNumber
    Name Text
    Country Text
    I am using the following query:
    CREATE TABLE Details (Serial AutoNumber, Name TEXT, Country Text)


    But its returning an error (Sysntax error in field definition ) with AutoNumber Highlighted .Plzz help
    See more | Go to post

  • Disable keyboard shortcut keys while my program runs

    hello everybody,
    iwant to disable all the keyboard shortcuts while my program runs i.e. when my program runs no one could access internet,open start menu,opent taskmanager, open registry,or open windows explorer.how to do it????????????? ??????????????
    See more | Go to post

  • how to copy data of one table to another table through query with a condition

    I want to copy the data generated by a query into a new table in access2007.how to do it.I want to do it through c#.I m sending the database.
    See more | Go to post

  • C# program for how to make a program run so that no other windows component run?

    I am developing a test engine in C#.I want that when i run my test engine no other windows component like run,Internet explorer,task manager,Explore r an others should not run except cmd i.e it should the control the complete windows and other windows components should run only when the test is over how to do it.I am just thinking of disabling keyboard for that time but how to do it
    See more | Go to post

  • Random selection of records in access 2007 through c#

    Hello everybody,
    I am developing a c# application in which i am using access2007 database. I want to select random records from the database through an access query in c#.but i am not able to do so.the format of my database is as:-
    tblQuestions-QuestionNo.Ques tion,Ans1,Ans2, Ans3,CorrectAns wer
    now i want to select random questionNo. and related fields and display them on my form.how to do this.plzzzzzz
    ...
    See more | Go to post

  • How to select random records from access 2007 database through c#

    Hello everybody,
    I am developing a c# application in which i am using access2007 database. I want to select random records from the database through an access query in c#.but i am not able to do so.the format of my database is as:-
    tblQuestions-QuestionNo.Ques tion,Ans1,Ans2, Ans3,CorrectAns wer
    now i want to select random questionNo. and related fields and display them on my form.how to do this.plzzzzzz
    ...
    See more | Go to post

  • Yes i want to wrap the text of radio buttons how to do it
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...