Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~14.2K People Reached
Favorite Tags
Member Avatar for bhavna_816

I have created an aplication in C# windows application version 1.1 to display some records in a datagrid. The datasource of the datagrid is datatable and not any database.I want tht when we edit any cell of a particular column and press "Enter" it should show a Message Box let's …

Member Avatar for Reverend Jim
0
4K
Member Avatar for bhavna_816
Member Avatar for bhavna_816

When we click on the Hyperlink of subject a new HTML Page should be pop up and shows the body of the mail. I have written two perl codes first is for displaying the page with folders with subject another perl code having function to show the body.How can I …

Member Avatar for hsincredible
0
370
Member Avatar for bhavna_816

I have a datatable which is having n no. of rows and each row has a unique field say ID. Now I want to get a particular row for a specified ID. eg. there are 5 rows in a datatable and the id's are 1,2,3,4 and 5 and if I …

Member Avatar for rickyenjohns
0
220
Member Avatar for bhavna_816

hi all, i want to run the slide show say ten slides and then close it programaatically , but in my code given below it opens the slide show and closes immediately ... .. please give me a solution to this problem [code]Microsoft.Office.Interop.PowerPoint.Application ppApp = new Microsoft.Office.Interop.PowerPoint.Application(); ppApp.Visible = MsoTriState.msoTrue; …

Member Avatar for Geekitygeek
0
306
Member Avatar for karkar_87

I need some help regarding Paging on a Gridview. I have a few dropdownlists and textbox and a gridview. At first load, the gridview will be populated with data from the sql server. And, I did a search and it works for the first page. When I press the second …

Member Avatar for bfbfb
0
132
Member Avatar for bhavna_816

I have to add a not null column in a table. I am using [code]IF NOT EXISTS(SELECT * FROM information_schema.columns WHERE column_name = 'xyz' AND table_name = 'abc') BEGIN ALTER TABLE abc WITH NOCHECK ADD xyz MONEY NOT NULL END[/code] It gives me error ALTER TABLE only allows columns to …

Member Avatar for Saranya_kamaraj
0
264
Member Avatar for bhavna_816

I am facing a problem. I have an enum which further goes as some string values. Now I have a check or validation for that particular enum type as if it is null, then display some error message. But when I give nothing for the particular parameter, it takes the …

Member Avatar for sknake
0
134
Member Avatar for bhavna_816
Member Avatar for bhavna_816

I want to add some custom properties as well as the existing properties should remain same in the controls. Some of the controls can have the extended properties, but some controls like Textblock are sealed so can not be able to inherit other controls from the existing control. Anybody have …

0
68
Member Avatar for bhavna_816

I am very new to SharePoint... I need to know two things: 1. How to work on a single website with multiple developers? 2. How to deploy the SharePoint website or webapplication on production server or client machine? Do anybody know some answer or some links which can help me? …

Member Avatar for Fred Mackie
0
82
Member Avatar for bhavna_816

I want to create a list of hyperlink buttons, and the bulleted list should contain some images before the link. For example > how > can > i > get > this So in place of ">" i need different images, how can i do that in Silverlight? Thanks in …

0
58
Member Avatar for bhavna_816

I have created a C# Windows application in .NET 3.5, it runs the powerpoint slideshow and closes all the existing slideshows and should only run the new .ppt application. In C# when I run this application with putting breakpoints it runs fine and gives no error. But when I run …

Member Avatar for bhavna_816
0
935
Member Avatar for bhavna_816

I am creating a folder watcher application. If a new powerpoint file gets added in the folder it should get started automatically. So if I put .pps file into the folder then and I say [code]System.Diagnostics.Process.Start(fullPath);[/code] it works fine. This is not the case with .ppt files Only the powerpoint …

Member Avatar for LizR
0
614
Member Avatar for bhavna_816

I am working with Silverlight website with released version 2. I have created a website with have some xaml pages, I want to show contents dynamically it might be aspx page or simple html page, contents of which can be loaded on the xaml page at runtime on a button …

0
68
Member Avatar for bhavna_816

When I go to the design window and drag some control say label in that, I can't be able to see that. When I switch to Source control, I can the tag like [code] <?xml namespace="" prefix="asp" ?> <asp:Label ID="Label1" runat="server" Text="Label">ABCD</asp:Label> [/code] Also in properties window I can't see …

Member Avatar for dweaver6
0
151
Member Avatar for bhavna_816

I have a text file say log file. i have to extract all the characters between "<" sign and ">" sign. i.e. between <> and put it into the database and log file is of kind Sun, 24 Jun 2007 21:49:49 GMT: Received request </abc/abc.gif>, from <111.1.11.11>:<1111> at domain <localhost/abc.net> …

Member Avatar for Muhammad Afnan
0
169
Member Avatar for bhavna_816

I want to select data from ranges like Column1 Column2 25000 10 50000 20 75000 30 I want records like upto 25000, I get 10 upto 50000, I get 20 upto or more than 75000, I get 30 Can anybody suggest me a simple query for that? Thanks in advance,

Member Avatar for jais0n
0
83
Member Avatar for bhavna_816

I have a webservice which accesses some methods from the Business layer. I made a website which uses this webservice, I have given the WEb reference for that web service. I want to call a WebMethod which uses some structures from the business layer. I am populating the business layer …

0
61
Member Avatar for bhavna_816

I have two XMls having same node and different data(innertext) I want to compare these two xmls and if there is any change then save the new one into the database and if both are same then do not save the data How can I compare these XML data? say …

0
72
Member Avatar for bhavna_816

I am displaying a GridView on some specific criteria which is entered by some textboxes say studentid, studentname as input from textbox and show records in GridView. For this I m using a stored procedure which returns a datatable based on inputs came from textboxes. I want an Edit button …

Member Avatar for bhavna_816
0
139
Member Avatar for bhavna_816

I am using SQL Server 2005, I have some select and update statements in my query with WHERE clause I want to prevent these queries from SQL injection attacks. What are the steps and precautions to be taken for SQL Injection attacks? Does anybody have suggestions? Thanks in advance,

Member Avatar for TCBW
0
116
Member Avatar for bhavna_816

Does anybody know javascript function to call WebService I have a webservice written in .NET2.0 and I want to call the webservice by JAvascript function and store the data got from the function on local comp by opening save dialog box in javascript itself Do anybody have any idea?

Member Avatar for hp900
0
74
Member Avatar for bhavna_816

I have a login page where I have my own label and texboxes which take input username and password, and there is a function in which there is a SP which validates username and password stored in the database. My code in Login.aspx.cs is such that I call that function …

Member Avatar for ericstenson
0
148
Member Avatar for bhavna_816

I am joining two tables with INNER JOIN and I am getting duplicate entries. I used DISTINCT but its not working. Do we have some other keywords for the same? Thanks in advance,

Member Avatar for tesuji
0
63
Member Avatar for bhavna_816

There is aspx page where I am displaying a GridView with some data about basic details about a person. In that GridView there is a hyperlink, which navigates to a new aspx page where I am displaying the detailed information about particular person in some controls like text boxes etc. …

Member Avatar for bhavna_816
0
124
Member Avatar for bhavna_816

I have a table which have person's name as Prefix, firstname, lastname, address as three different columns. I want to get all records when fire a query like SELECT * from Persons where name= 'abcd' I want such query which can search in all three columns, it means abcd can …

Member Avatar for gunso4050
0
146
Member Avatar for bhavna_816

I have a datatable which is having n no. of rows and each row has a unique field say ID. Now I want to get a particular row for a specified ID. eg. there are 5 rows in a datatable and the id's are 1,2,3,4 and 5 and if I …

Member Avatar for corwing
0
105
Member Avatar for bhavna_816

I want to get two columns data from two tables which are not dependent to each other i.e. no key common in both they are not related to each other. I can't use JOIN because it needs where clause which uses a common field from both tables. I just want …

Member Avatar for aardvax01
0
173
Member Avatar for bhavna_816

Can we do like this in enums enum myStringEnum { enumItem1 = "value 1", enumItem2 = "value 2", etc } i.e.spaces in the string value, I know we can assign int value to enum but I m not sure whether string values (with spaces) can be assigned to enums. If …

Member Avatar for fishsqzr
0
177