Groups | Blog | Home


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# > may 2004 > threads for sunday may 30

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

Window.open javascript
Posted by Fabrizio at 5/30/2004 11:46:03 PM
HI, I would like to open a popup window on my web application when a user click on a button, BUT ONLY AFTER executing a C# routine that checks for some value. There is any method to do that? Thank you, Fabrizio...more >>


OpenFileDialog Problem
Posted by Nagachandra Sekhar Grandhi at 5/30/2004 11:02:53 PM
I am facing a problem with OpenFileDialog. It is as follows. I opened OpenFileDialog dialog box and selected a folder in it. After selecting the folder when i tried to delete the same folder in Explorer i am getting error saying that cannot delete that folder as some process is using it. After...more >>

TabPage...Better/Simpler way
Posted by meh at 5/30/2004 8:48:11 PM
I'm not sure if I have the right concept going. I am making a custom = TabPage and executing it from a button click event. It works fine I'm = just thinking I might be missing the finer points of the c# language. = If not maybe I'm starting to catch on. Would like = comments...better???...si...more >>

Invoke method
Posted by David at 5/30/2004 7:43:07 PM
How can I Invoke method in my application from other application? Also how can I expose method from Windows Application? ...more >>

grid not expanding with Expand(-1)
Posted by andrewcw at 5/30/2004 6:36:02 PM
I have 3 datasets I rotate to my datagrid I apply a style to each like this and cause the grid ( gridTX ) to expand.. When I look in the debug window at the datasouce attached to the grid, those that work have a tables collection andI can see the List. In the one that is not autoexpanding correct...more >>

StringBuilder question : Adding ASCII control schars ?
Posted by Sagaert Johan at 5/30/2004 5:46:58 PM
Hi I am construncting a string containing some control chars (STX/ETX) I noticed that adding a byte with value 2 is the same as adding a character '2' ??? How can i solve this problem ? Is the stringbuilder restricted to pure readable ascii code contents ? sb.Append(2); // ascii ...more >>

how to use MS Word from client ?
Posted by Chris at 5/30/2004 5:46:53 PM
Hi, - How can I open an existing word document from a C#-client and manipulate that document from within the C#-client ? - How can I open an excel document that is embedded in a word-document ? - How do I read the value of a cell within an Excel document ? I tried using a Word-OLB file (o...more >>

Trajectory with C#
Posted by James at 5/30/2004 5:43:56 PM
Hi there, I'm a beginner level programmer and am wondering how to achieve a Simple Cannon Ball trajectory with c#. See, i know how to work out the initial horizontal and vertical velocity of the cannon ball: double gravity = 9.8; double initialVelocity = 45; double angle = 45; xVel = ini...more >>



GetPriorityClass in Win2003
Posted by Yaniv M at 5/30/2004 5:18:29 PM
Hi, My goal is to verify that a process is alive, therefore I use the GetPriorityClass function, if this API function succeed it means that the searched process is alife, otherwise it died. The problem is that in Windows 2003 this function returns success even if the process is dead. Why it ...more >>

how to get text's color (property)?
Posted by Bad_Kid at 5/30/2004 5:11:41 PM
in richtextbox? (event cursorchanged launchs MessageBox with string what font/color is selected text) ???? please.... ...more >>

Casting to integer
Posted by Robert Strickland at 5/30/2004 2:30:41 PM
I have used VB.Net and now learning C#. I have the following line from vb.net app: id = CType(Request.QueryString("id"), System.Int32) where id is type integer. I am trying the same under C# with: id = (System.Int32)ctx.Request.QueryString["reportid"].ToString(); which gets compile erro...more >>

C# and structs... something odd may even a bug with C#
Posted by James Lapalme at 5/30/2004 12:20:08 PM
Dear All, This code should not compile and execute but is does ... why??? Here is the code ... I'm using Visual Studio .Net 2002 public struct Point{ public int x; public int y; } public class App{ static Point p; public static void Main(){ Point a = new Poi...more >>

How to rotate text?
Posted by pkujchliu NO[at]SPAM yahoo.com at 5/30/2004 12:17:06 PM
I would like to rotate text and draw it starting from certain location, say (10, 20). The problem for me is that it does rotate, but it never draws the text from (10, 20). Will you please tell me where I am wrong? double trangent = Math.Atan2(ptTo.Y - ptFrom.Y, ptTo.X - ptFrom.X); float an...more >>

special enter function !!
Posted by Tor Lund at 5/30/2004 11:09:31 AM
how do i create a function that does "something" every time i press enter. i have used the form.AcceptButton property but it does not override if a button has the focus. then enter will ´click the button and not load my enter "code". can anybody help `?? tor lund ...more >>

/*[NonSerialized()]*/ public event ListEvent ListChangedEx = null;
Posted by Alexander Muylaert at 5/30/2004 10:54:42 AM
How can I prevent an event of beïng serialized? it always give me the error Attribute nonserialized is not valid on this declaration type ... Kind regards Alexander ...more >>

multiple sdi form communcation
Posted by Matt at 5/30/2004 8:39:51 AM
I have one sdi form that instantiates the other. I am trying to figure out how to make the second form feedback information to the first after the user enters it on the second form. I was thinking I should use callbacks but I can't seem to see how. does anyone have a better idea or some sample...more >>

PropertyGrid color picker
Posted by Stephan Ainley at 5/30/2004 1:22:25 AM
Is there a control so I can use the same type of color picker as the PropertyGrid does? Almost like a combo box? thanks ...more >>

C# applications sharing problem with netmeeting
Posted by zzzmey NO[at]SPAM yahoo.com at 5/30/2004 1:01:04 AM
Hi, I've encountered a problem sharing c# application in NetMeeting. The problem is that when I try to share some GUI application, I don't see it on remote computer. Sometimes I see random small parts of application but not whole app. I've tried to share desktop and the app – it's the same effe...more >>

TreeView in ListView
Posted by Mike at 5/30/2004 12:59:40 AM
Hi, Is there the possibility to have a ListView with a column that display = items in a TreeView manner. How can I do that? Thanks. Mike...more >>

Performance Critical applications development using .NET framework
Posted by Nadav at 5/30/2004 12:16:02 AM
Hi All Introduction ********************* I am about to create a mass-storage system such as TSM, EMC Centera, .. Inquir ********************* I am considering using the .NET managed Framework for the development I have created several business application using the .NET Framework/CLR, mayb...more >>


DevelopmentNow Blog