Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
70% Quality Score
Upvotes Received
6
Posts with Upvotes
4
Upvoting Members
5
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
Ranked #1K
~11.6K People Reached
Favorite Tags
Member Avatar for hackit

Hiii... I am a beginner to c#. I want to know how to get date from the console window in c#. As i want that on the console window user is asked to enter the date in (dd/mm/yy) format. And then i can extract the day in a variable iDay, …

Member Avatar for Mike Askew
0
2K
Member Avatar for syd919

Hello I have a problem with customizing my menu, I created a new mvc web application. Visual studio has created a default menu but I wanna add a background image like an image with "Home" or About instead of the default one. here is my code. <body> <div class="page"> <div …

Member Avatar for IbrahemShehata
0
119
Member Avatar for syd919

Hello guys I have an xslt file I want to extract data from. I am new to xslt but at the moment I can perform basic operations like looping through the nodes and creating element and attributes. My problem is that I want to select a particular value from a …

Member Avatar for Mike Askew
0
132
Member Avatar for syd919

Hello guys, I have a problem convrting to an int in xslt. My xslt is: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:tem="http://tempuri.org/"> <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> <xsl:template match="/"> <xsl:call-template name="ConnectConsumer"/> </xsl:template> <xsl:template name="ConnectConsumer"> <tem:callRule> <xsl:for-each select="/"> <xsl:for-each select="ConsumerDetails"> <xsl:for-each select="Score"> <xsl:element name="tem:arg0"> <xsl:value-of select='format-number(Score,"#" )'/> </xsl:element> </xsl:for-each> </xsl:for-each> </xsl:for-each> </tem:callRule> </xsl:template> </xsl:stylesheet> …

Member Avatar for Mike Askew
0
164
Member Avatar for kalaban

First I want to say thank you to those who help me in my project last year espicially to sir ardav and to this site itself. now I'm in my (hopefully) last year of my college and now I'm thinking of "Online Establishment Finder System" as my final project. But …

Member Avatar for Incognitus
0
154
Member Avatar for arunkumars

Hi all, I know that one advantage of method overloading is that the implementation can be overridden for the same method name, but wanted to know how is that going to be an advantage for us. All the links explain how to do it, and not why to do it …

Member Avatar for Mitja Bonca
0
224
Member Avatar for kim_boto

Guys please help me out here,i have a windows login form that needs to connect to my sql server 2005 database and check wether the username and password is correct or not.how can i do that please help me out here...

Member Avatar for syd919
0
144
Member Avatar for c#_fem

I want to enable choosing which image to display after a button click. Could you please give me an example? Thanks This is what I have so far : protected void Button10_Click(object sender, EventArgs e) { Image1.ImageUrl = @"C:\img\Desert.jpg"; Image1.ImageAlign = ImageAlign.Left; } It won't display anything after I run …

Member Avatar for c#_fem
0
179
Member Avatar for megha_ct

Hi I am new to XSLT and I need help on following XML conversion. I have following xml input and need to convert to another XML structure using XSLT . Please can somebody provide me the XSLT for this conversion. <?xml version = "1.0" encoding = "UTF-8"?> <Inputs xmlns = …

Member Avatar for syd919
0
349
Member Avatar for syd919

xslt Hello guys, I hope everyone is well. I didnt know where to post this particular problem so I just put it under general, I apologize if its the wrong place. this is one of my first few attempts to get the xml data to a specific xml format. Its …

0
82
Member Avatar for syd919

Hello guys, I just deployed my site and when I try to view through the browser I get "403 - Forbidden: Access is denied." error. this does not happen when I replace index.aspx in the wwwroot folder with index.html. I would really appreciate any advice on this thank you.

Member Avatar for JorgeM
0
892
Member Avatar for syd919

Internal Server Error 12 minutes ago|LINK Hello Guys, I need help deploying my little website I am designing. I have my index.html file in the wwwroot folder and my web.config file is there too. the contents of the web.config file are: <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <defaultDocument> <files> <add value="index.html" …

Member Avatar for JorgeM
0
76
Member Avatar for infinitus

Hello guys im having a problem and i dont see where i made error. Im tryting to write something into XML file. Also how do you read textbox input and save it into XML ?? Cheers for help :) public class CourseName { string _name; public CourseName(string name) { this._name …

Member Avatar for skatamatic
0
163
Member Avatar for Becha

hi can someone help me to make a calculator as required? Create class Calculator. This class must contain the following features: constant PI constructor that accepts two integers, operand1 and operand2 method for writing values ​​and operand2 operand1 methods for calculating the four operations - addition, subtraction, division and multiplication …

Member Avatar for Sahil89
0
126
Member Avatar for castajiz_2

Hi guys, as you can see i have a problem with the array , i don t know how to put every remainder in the array and then loop it to get the reverse order, it seems that the array is being overwrited every time the while loop goes and …

Member Avatar for castajiz_2
0
163
Member Avatar for skp03

Hello friends i am working in VS2010 C# Windows application, i have created a application in which some what like security application i have added a form1 in which i have included a button ie... button1 and a textbox ie... textbox1 in button1 i have added a code like [CODE] …

Member Avatar for thines01
0
265
Member Avatar for arsheena.alam

Hi Friends!! I am coming across this problem that whenever I am trying to retrieve the data in a dataset through SQLDataAdapter and Dataset, it is taking around 10 min to get the data on the localhost. And when I am running the same code on the live server it …

Member Avatar for arsheena.alam
0
285
Member Avatar for dujgaran

Do the following tasks: Task 1 Create an enumerated type named AccountType for representing different types of bank accounts (checking and savings). You will create two variables by using this enum type, and set the values of the variables to Checking and Deposit. Task 2 Design a class named BankAccount …

Member Avatar for syd919
0
232
Member Avatar for syd919

Hello Guys, I hope you are all doing fine. I have a Linq to SQL problem. My entity class is as follows; [CODE]using System; using System.Data.Linq; using System.Data.Linq.Mapping; namespace SilverlightGrid.Web.TableMappings { [Table(Name = "Travel_Meal")] public class Travel_MealDetails { [Column(IsPrimaryKey = true)] public Guid MealID { get; set; } [Column(Name = …

Member Avatar for thines01
0
152
Member Avatar for syd919

Hello people,I hope everyone is well. I am having problems with my connection string. It seems its not detected at all. I am designing a Silverligtht app with a Linq to SQL connection for the data. Here is my code.[CODE] ConnectionStringSettings settings = ConfigurationManager.ConnectionStrings["DataConnect"]; string connection = settings.ConnectionString; DataContext dataContext …

Member Avatar for thines01
0
248
Member Avatar for syd919

Does anyone know if silverlight supports making a menubar like in windows forms?

0
63
Member Avatar for syd919

Hello people,I hope everyone is well. I am having problems with my connection string. It seems its not detected at all. I am designing a Silverligtht app with a Linq to SQL connection for the data. Here is my code.[CODE] ConnectionStringSettings settings = ConfigurationManager.ConnectionStrings["DataConnect"]; string connection = settings.ConnectionString; DataContext dataContext …

0
59
Member Avatar for syd919

Hello people, I hope everyone is well. I have just started learning silverlight and retrieving data through Linq to SQL. I have a problem with retrieving certain coulums from the table. I can retrieve through an object that retrieves all the columns but I don't want this. i managed to …

Member Avatar for syd919
0
133
Member Avatar for syd919

Hey guys does anyone have links to free silverlight 5 eBooks??? I would really appreciate any help.

Member Avatar for syd919
-1
69
Member Avatar for kirtee2209

Hi I have a listview in a C# windows form. I have created 2 columns and set their size by using the Columns Property. The Scrollbar property is set to true and listview has been set as Details. The issue I am having is that when the listview is being …

Member Avatar for kirtee2209
0
2K
Member Avatar for Amiet Mhaske

Hey guys Hello, I am new a programmer. I am learning C, C++ and C#. But in future I am planning to make some serious applications using C#. Those applications would be based on LAN environment. So which books should I start to read for network programming using C and …

Member Avatar for syd919
0
166
Member Avatar for Theanonymous

I need to write a program that calculates the squares of all numbers that are contained in a file of floating point numbers. The obtained new numbers form a new file. Like this : if the file contains the numbers 1, 2.5, 0.1, the numbers 1, 6.25 and 0.01 form …

Member Avatar for finchh
0
290
Member Avatar for benchz23

i need to make a program that would display the figure as shown below. using a DO-WHILE structure and a method to implement the task. a C++ program. output: 0 0 2 0 2 4 0 2 4 6 0 2 4 6 8 0 2 4 6 8 10 …

Member Avatar for Fbody
0
169
Member Avatar for xyzt

Hi all I'm designing a multithreaded application which has long running threads. I need to check some condititons in the main thread, interrupt the threads and end the program if the conditions are true. But i'm not sure if this is the correct/safest way. Here's my pseudo: [CODE]main() { boost::thread …

Member Avatar for thekashyap
0
172
Member Avatar for syd919

Hello I am new to actionscript and i didnt know which forum to post in and may someone plz guide me to the right on. I want to play a simple animation in actionscript 2 and I keep getting an error Here is my code: [code=php] import flash.events*; stop(); dude.stop(); …

0
49