Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008


all groups > c# > march 2005 > threads for saturday march 12

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

.Net
Posted by perspolis at 3/12/2005 9:57:52 PM
hi all I have already .Net framework 1.0347.then I first I uninstall it and after that install .Net framework 1.1..unfortunately now when running visual studio,it says u musy install C# compiler again :(.. does it need to install it??or can i configure it to work?? ...more >>

sql and ?
Posted by perspolis at 3/12/2005 9:23:52 PM
Hi all I used SqlServer to manage my data. SqlServer has a promlem in updating ntext and Image fields. I have a table which includes some field like ntext and Image. when I want to update this table,I get an error that says "Can't update ntext and Image field together." how can I update this ...more >>

Cannot invoke main method from assembly via reflection
Posted by Manfred Braun at 3/12/2005 8:46:25 PM
Hi All, I am able to invoke some methods from an instance of a loaded assembly, but I am not able to invoke the loaded assemblie's "Main" method. I try it this way: Assembly assembly = Assembly.LoadFrom(config.exec.assemblyName); tRunnable = assembly.GetType(config.exec.typeName); object r...more >>

working with user created classes
Posted by Serdar C at 3/12/2005 5:38:49 PM
hi everyone.. i have a problem that i couldnt find the answer through the web.. maybe i am asking the wrong question.. but here comes my problem.. ---------------------------------- using System; namespace NeuralNetwork { public class SCNeuralNetwork { private double activ...more >>

Sms through web services? possible??
Posted by .:.:. igor_sb .:.:. at 3/12/2005 4:50:46 PM
How to send sms via ws? Is there anyone who tryed this? I've found http://www.esendex.com and it works great but it's trial..you have only 5 messages... so I'm searching some webservicess which aren't trial, and on which you don't have to register... just unlimited free sms :)) I'm very int...more >>

Adding update management to my app...
Posted by noam_a_jacobs NO[at]SPAM yahoo.ca at 3/12/2005 3:59:29 PM
Hi, A tech question for those smart cookies with update management experience. We use a product called EasyUpdate, from www.AutoUpdatePlus.com, to manage the updates of our app after it has been delivered to the client. From our perspective, it is great. However, we are now keen to purchase...more >>

Random numbers (part II)
Posted by BOOGIEMAN at 3/12/2005 3:58:31 PM
//Why this doesn't work : using System; using System.Threading; class RandomObjectDemo { public static void Main( ) { Thread.Sleep( 1 ); int RND01 = randObj.Next( ); double RND02 = randObj.NextDouble( ); Console.WriteLine("RND...more >>

Enhanced Metafile support in the RichTextBox Control?
Posted by Chuck Bowling at 3/12/2005 3:50:23 PM
The subject line says it all. Anybody know if the RichTextBox control supports enhanced metafiles? ...more >>



Where to sell an app?
Posted by Keith Smith at 3/12/2005 3:06:50 PM
I realize this is not a marketing newsgroup - and I promise I won't turn this thread into a big marketing conversation. I wrote a small app that may be useful to many people - nothing earth shaddering, but it is quite helpful. Is there a site that I can sell it on with minimal hastle? C...more >>

ASP.NET and Excel._Worksheet.SaveAs
Posted by Jac at 3/12/2005 2:13:02 PM
Hey, We wrote a ASP.NET application and use excell for our reports. But on my localhost everything works fine. The excell-file is saved and opend. But when I try to excecute on the real machine I receive following error trace : [COMException (0x800a03ec): The file could not be accessed. ...more >>

Problem about StreamReader and StreamWriter
Posted by R.L. at 3/12/2005 12:39:38 PM
See the code below, var 'content ' is suppose to be "Hello!", not "". Who knows why? Thanks ---------------------------------------- string text = "hello!"; MemoryStream stream = new MemoryStream(); StreamWriter streamWriter = new StreamWriter(stream, Encoding.ASCII); streamWriter.Write...more >>

Stack Trace Data
Posted by Anthony Nystrom at 3/12/2005 11:55:02 AM
Does anyone know of an way to get the stacktrace data for a given assembly Process (in process) getting it for the app running from the app running is no problem... What I am looking for is getting it from a running assembly from another. Meaning a reading app the wites the stack trace for a d...more >>

DataSet
Posted by Krishna Kumar at 3/12/2005 10:51:24 AM
Hi, I am searching for file name in database. From SQL Server Stored Procedure i get data into DataAdapter. From DataAdapter i fill into dataset, and i show the records in datagrid. From 2 lakh record, my stored procedure checks for validation and give me 10 records. It takes much time. ...more >>

Web Svc VS remote component hosted in IIS
Posted by JJ at 3/12/2005 10:29:02 AM
A current requirement I am facing is the all business objects be stateless remote components hosted in IIS. I am partial to web services myself. However, it is insisted that IIS hosted remoting be used. They insist that it is much, much faster. I don’t necessarily disagree with that poi...more >>

Application Level Events
Posted by thechaosengine at 3/12/2005 10:08:08 AM
Hi Everyone, In asp.net you have the Global.asax file that allows you to handle and exceptions that have slipped through the net in your code. It also allows you to handle application level events in a central place. Is there a similar mechanism for dealing with global events and exception...more >>

help!!I'm stuck here!
Posted by alyssa at 3/12/2005 9:23:06 AM
I have written this to show table in the database on this datagrid...but when i implement my click event i had an error msg and i don't know how to correct it...here's the code.. private void Form1_Load(object sender, System.EventArgs e) { this.sqlDataAdapter1.Fill(this.dsCall_Details_R...more >>

Saving files locally downloaded from the net
Posted by bernardpace NO[at]SPAM yahoo.com at 3/12/2005 8:48:53 AM
Hi, I am downloading data from the Internet using the following lines. networkStream = tcpClient.GetStream(); // tcpClient specifies port + ip StreamReader streamReader = new StreamReader(networkStream); response = streamReader.ReadLine(); After doing correct parsing of the downloaded co...more >>

WebControl/Cache-Control question
Posted by Nadav at 3/12/2005 8:17:08 AM
Hi, I am new to WebControls, I have created a WebControl that is used to present an image, the image bing presented is created on runtime, each client side button click causes the image to change, this require to prevent this image from being cached, I have tried to play around with: Conte...more >>

datagrid - are shown as a white rectangle with a red cross
Posted by Thomas at 3/12/2005 8:12:21 AM
hi, - I use the datagrid without a real database, only to display my memory data and it works fine. - If I install the application at an other computer the datagrid doesn't work and disappear, a white blank area with a red cross are shown instead. - it never happened, if I compile the appli...more >>

execute "big" stored procedure - insert data in SQL Database
Posted by elime4x NO[at]SPAM hotmail.com at 3/12/2005 7:50:55 AM
Hi all We currently have a strange problem with calling a Stored Procedure (SQL Database) in our C# Project. The only error I get is "System error" which says a lot :) Background: We have several stored procedures to Insert and update datas in our SQL database. Some stored procedures are s...more >>

Problem setting "SelectedValue" in ComboBox using .Net CF
Posted by charliewest at 3/12/2005 6:39:03 AM
Using .Net CF, i have created a 2 dimension ArrayList, and "binded" this list to a ComboBox control using the "DataSource" property. I have set the DisplaySource and ValueMember properties as well. The control populates well, both the display values, and selected values. However, when i try...more >>

How to build Fax Server by C#?
Posted by Tom at 3/12/2005 4:59:03 AM
Receive Fax 1. I need to develop a C# program to listen the incoming fax through DID modem which supports Class 2.0 - the Post 1992 Standard. 2. After receiving the fax data from modem, the C# program converts fax to jpg. Sending Fax 1. Convert MS Word doc file to JPG. 2. Conv...more >>

I need help
Posted by Bilqiis at 3/12/2005 4:43:01 AM
I want you to explain to me how to manage an project by using inheritance to create several classes that are distinct but share common functonality -- My strength lies with my Creature....more >>

How to: Implement "Click" event in a TreeView Control using .Net C
Posted by charliewest at 3/12/2005 4:17:07 AM
I would like to implement the following functionality: When a user taps a (child) treeNode, an event fires which allows me to get the selected treeNode's TAG object, determine it's values, and then load a new form based on those values... Intellisense shows the "Click" event, however, this...more >>

wat's does it mean?
Posted by alyssa at 3/12/2005 3:51:03 AM
i'm getting an error saying 'identifier expected' the code is float discount=1.05; please correct my mistakes..thans...more >>

Problem finding WebBrowser Find
Posted by rossum at 3/12/2005 1:44:34 AM
I am using Visual C# Express Beta, though I suspect that my question has more to do with .NET than with C# specifically. I have written a form with a Web Browser in it. At the top I have a button bar. What I want to do is to have a [Find] button which searches for user-entered text in the HTM...more >>

difference build and rebuild
Posted by Wilfried Mestdagh at 3/12/2005 1:39:01 AM
Hi, I'm using C#2005 beta. In menu I find 'build solution' and also 'rebuild solution'. Can someone tell me the difference ? Because if you click again on 'build' then you do a rebuild not ? Maybe it's my english :( -- rgds, Wilfried http://www.mestdagh.biz...more >>

version number
Posted by frazan at 3/12/2005 1:29:58 AM
Hi, maybe it's a stupid question... I never have understood the real meaning of software version number, and when I must change it? There's some standard, where over Internet, can I find it? I think something like these examples: (.net - automatic)1.0.2300.27500(why so big numbers?); (other) ...more >>

Help!I'm stuck!
Posted by alyssa at 3/12/2005 1:05:02 AM
Hi guys.. I'm getting an error saying that --->C:\Documents and Settings\Yeoh Cheng Lin\My Documents\Visual Studio Projects\CallBillingSystem\CallBillingSystem\Calculate_rates.cs(35): 'float' does not contain a definition for 'Checked' wat's does it mean? here's r my code.. if (Discount....more >>

Math.round
Posted by alyssa at 3/12/2005 1:01:02 AM
Hi guys, Does C#.NET support Math.round? I get an error msg saying that System.Math does not contain the a definition for 'round'. So what can i do to make my calculation round to 2nd decimal point? here are my code.. --> start_time = Math.round (((call_start/100) * 60)*60); Please correct my...more >>


DevelopmentNow Blog