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
Ranked #1K
~15.3K People Reached
Favorite Tags
Member Avatar for aditya55

[B]Can anybody tell me that session can be use in windows Form if yes how?.....[/B][/B]

Member Avatar for ChrisHunter
0
561
Member Avatar for Exelio

hi all, i am trying to display a xml file in a datagridview. i am using windows application with C#. say for example, i have a xml file like this, <xml version="1.0" encoding="UTF-8"> <maincategory> <cat1> <title>Category1</title> <link>http://www.w3schools.com</link> <description>&lt;img src=&quot;[URL]http://static.ibnlive.com/pix/sitepix/09_2007/flames_ramsetu90.jpg&quot;[/URL] alt=&quot;some description</description> </cat1> <cat2> <title>Category2</title> <link>http://www.ibnlive.com</link> <description>&lt;img src=&quot;[URL]http://static.ibnlive.com/pix/sitepix/09_2007/rahul_gandhi_white90.jpg&quot;[/URL] some description</description> </cat2> …

Member Avatar for sowmiyar
0
152
Member Avatar for thijscream

hi, i just figured out how to write to a csv file form a textbox, i have the following code: [code] private void BtnOpslaan_Click(object sender, EventArgs e) { string[] lines = { textBox1.Text, textBox2.Text, textBox3.Text, textBox4.Text}; System.IO.File.WriteAllLines(@"C:\output.csv", lines); } [/code] but i was wondering how i can write to the …

Member Avatar for GuggiTanvi
0
207
Member Avatar for Blaine Tuisee

I'm trying to close and application using C# and ASP.NET. I've tried system.windows.forms.application.exit() but it just refreshes the screen. I tried Environment.Exit(0) but that just ended the application and returned an error in the browser. Please help anyway you can!! Thanks!

Member Avatar for RogR
0
3K
Member Avatar for chiragwebmyne

Dear Friend, I have one Window From it will open on clicking on ToolStrip button, UserControl1.cs contain ToolStrip (ToolStrip used as IE ToolBar). Form contain One TextBox and One close Button, I need to open a Form on every new IE window open and keep that Form on IE Only …

Member Avatar for rameez420
0
139
Member Avatar for RobertQQ

Hi all!! I am new to c# and am looking for a site I can go to that has problems for beginners in c#. I tried googling it but was unable to find anything. Does any one know of a site like this? Thanks for the help!!

Member Avatar for kvprajapati
0
249
Member Avatar for IT_Techno

hi every one i need your help to now if there is a way in c# can write int numbers like this 4 -> 0004 or 3 -> 0003 or 25 -> 0025 or 123 -> 0123 or 1234 -> 1234 (no change) i want to generate ID that ID …

Member Avatar for vckicks
0
122
Member Avatar for gp04lch

hi guys, i have a databound listbox. the problem is i can't save the last record i entered without clicking some other record first. the datatable just does not treat it as an added or modified record. why is this so? regards, Han

Member Avatar for gp04lch
0
170
Member Avatar for dc_24l

Hi, ive generated files from a text file to a checklist box. now i want to delete some of it, example i have anna on the first check box and when i check it and click on the delete command the name anna will be removed from the checklist box …

Member Avatar for dc_24l
0
217
Member Avatar for vietnamese

Hi all! In my Windows Forms Application (C# 2005), I am using ListBox but it have a problem when I remove item. listBox.Items.RemoveAt(1); ---> [I]Items collection cannot be modified when the DataSource property is set.[/I] [U][B]Note:[/B][/U] It have just appeared when I used [B]listbox.DataSource = dataTable[/B]; If I dont use …

Member Avatar for camilojvarona
0
99
Member Avatar for pranav_jog

how to avoid form load again after loading the page in asp.net in my case when i am selecting any item from dropdownlist then form is loading again & again & after selecting item second time it's giving me the selected value, so how can i get selected value at …

Member Avatar for greeny_1984
0
2K
Member Avatar for Gaurav arora

HI all i m making a project in which i have added menu named Login which includes items like login, create new user, delete user, change password etc. i want to access these items on the basis of username. e.g. if username is administrator he can access all the items …

Member Avatar for Gaurav arora
0
115
Member Avatar for bondo

I am working on a project that will read in a huge file and insert the data into a SQL database. I can read the document, but all of the XML is incorrect. I get it as an excel spreadsheet, but it's actually about 6 webpages stuck into one document, …

Member Avatar for bondo
0
234
Member Avatar for hiddendragon

how would u diplsay the lowest or highest value of an array that the user entered so u ask the user to enter several number and it goes into an array then how would u display the highest/lowest value in that array to the sreen

Member Avatar for titaniumdecoy
0
2K
Member Avatar for moerpheus

Hi all, I want to be a networker and software developer. My questions are, How many languages to pack? Which languages to pack? I want to know three languages( are they enough?) for sure i want to knw C++ and JAVA. But i dnt knw the third!.... Python?PERL? or?..... Please …

Member Avatar for moerpheus
0
146
Member Avatar for ishlux

Is the syntax is correct..............i am getting blank page...... [code=php] $result = mysql_query("SELECT * FROM autoalto_mail where mail_id='$_request[$a]'" ); [/code] [code=php] <? include('database.php'); $result = mysql_query("SELECT * FROM autoalto_mail where mail_id='$_request[$a]'" ); while($row = mysql_fetch_array($result)) { echo $row['contents']; } mysql_close(); ?> [/code]

Member Avatar for vicky_rawat
0
145
Member Avatar for Gaurav arora

Hi all, i have added the form required in my project. it is showing there in solution explorer window. But i cant access that form through coding. can anyone tell me wt is the problem

Member Avatar for ChaseVoid
0
89
Member Avatar for Renukavani

i have one notepad file. if i right click that shows "open with" option. in that option i want to show all .exe files. don't want to "choose default programs" option. can anyone help me plz how to get that. plz.... if i developed 1 c#.net application. after i wil …

Member Avatar for Renukavani
0
103
Member Avatar for headfirst

Hi php gurus. newbie here needs help. I m having a problem with my login script. Basically it works 95% of the time, but once and a while it doesn't. The session variable doesn't get set, or remembered, and the next referred page fails on the isset check. I tried …

Member Avatar for R0bb0b
0
163
Member Avatar for prabhuraj

iam using following connection string (C#) SqlConnection con = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=D:\WindowsApplication1\Database1.mdf; Integrated Security=True;User Instance=True"); i deployed my project and i installed into client machine. after installed into client machine i cant able access the database.. Error: cant able access specified database path. can anyone tell me how to fix …

Member Avatar for camilojvarona
0
68
Member Avatar for jainendra.shah

hi frds, I want to fetch data from a table who contain approx 10 million data or above. I am able to fetch approx 1 million within 3 min. but this is so slow. and also problem to fetch more then 1 million. I used to data adapter and dataset …

Member Avatar for camilojvarona
0
99
Member Avatar for farooqaaa
Member Avatar for gouki2005

[CODE] int count; for(count=10;count<=1;count--) { Console.write("Hello"); } [/CODE] Why Doesnt appear nothing when I run this code?? have logic for me...

Member Avatar for gouki2005
0
90
Member Avatar for Gaurav arora

hi all, I m making a project in VC# for Airlines reservation. I have taken two comboboxes. one for source city and 1 for destination. i want that the values in the destination combobox must be add according to the value in source combobox. e.g. If i select New York …

Member Avatar for vietnamese
-1
260
Member Avatar for farooqaaa

Hello all, I want to make an application just like Notepad. Write text, save them, open them and thats it. Is there any tutorial for it? Thanks

Member Avatar for farooqaaa
0
147
Member Avatar for njitram

Hiho C# people! I have a problem while compiling this: [CODE]using System; using System.Collections.Generic; using System.Text; using System.Xml; using System.Xml.Linq; namespace ConsoleApplication5 { class Program { static void Main(string[] args) { XDocument test = XDocument.Load(dataPath + "c:\\test.xml"); var result = new XElement("dbs", from test.Descendants("dbs") select new XElement("db", a.Element("id").Value)); Console.WriteLine(result); } …

Member Avatar for camilojvarona
0
180
Member Avatar for preethi_ga

Hi, Im new to this C#. So I have learned VB.NET and also ASP.NET, So now im also thinking to learn C#.NET. but i donno C#. So im confused that whether i have to learn first C#. and then start C#.NET ??? can anyone please enlighten me?

Member Avatar for camilojvarona
0
168
Member Avatar for mrjoli021

i am new to c#. I want to write a windows app that will display a txt file in a new window.

Member Avatar for camilojvarona
0
87
Member Avatar for arupa

write a program to get a name from user and will show like below if name is 'arupa' then a ar aru arup arupa arupa arup aru ar a

Member Avatar for camilojvarona
0
90
Member Avatar for karhong

Hi, I'm wondering, whether is there any other methods to save the shape into a file? Meaning that I've already drag few shape and I wanted to save all the shapes, their position, their colour. What I'm thinking now is, getting all the shape's coordinate, colours, size and save it …

Member Avatar for karhong
0
102