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 > dotnet general > december 2004 > threads for friday december 3

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

Possible TRY...CATCH...END TRY
Posted by Nay Myo Aung at 12/3/2004 10:36:16 PM
Hi All! I think I discovered a possible improvement on .NET Framwork's TRY...CATCH...END TRY statement. I guess most developers might also have been discovered that at some point in their .NET development process but continued to ignore the problem due to their workloads. The word is RET...more >>


Form foreground freezing up...
Posted by (tantiboh NO[at]SPAM hotmail.com) at 12/3/2004 10:33:34 PM
I've got a program that is heavily processor intensive when it's being run. At seemingly random intervals, the program's foreground locks up and doesn't refresh until it has completed its processes. The lockup doesn't occur every time the program is run, though rest assured it will occur if the prog...more >>

JIT question
Posted by Manco at 12/3/2004 8:08:07 PM
When you compile a DLL or EXE from VS.NET, does it by default compile the code into MSIL and then during execution the methods are individual JITed? I thought the default was to compile to native x86 code on Windows. But then what I've done is use the ILDASM to examine a PE I produced, and I w...more >>

Setup log for VS Net Architect?
Posted by Ron Ruble at 12/3/2004 6:19:00 PM
Does the VSNET Architect install (MSDN Universal) create a log file, and if so, where? I have an unusually heavily secured IE configuration, and FireFox set up as my default web browser. When attempting to check for VStudio updates at the end of the install, I get the message "Visual Studi...more >>

LIB FILE
Posted by Dave at 12/3/2004 3:13:38 PM
Hi, I am writing a C# application that need to use an old c++ code in lib files from vc++ 6 can i do that? Can i import lib file to C# app and how? Can you give me some examples code how to do that? Thanks ...more >>

If the project-path will be changed
Posted by Peter Stojkovic at 12/3/2004 3:08:59 PM
I have the following problem: I have a solution in path C:\AAA\CustomerA Now I have a second project: Then I copy everyThing to C:\AAA\CustomerB Bit inside the new project everything is looking to C:\AAA\CustomerA It is not possible to input relative pathes !! What is the solution ...more >>

Drawing with C#
Posted by robert at 12/3/2004 1:57:02 PM
Hello, I want to develop a simple flow chart with C#. Means some connected rectangles and I want to give the rectangles titles. It were excellent when it is also possible to define a beginning and a ending node. Can anybody help me or can recommend me any samples? thx robert...more >>

Returning an error message when something goes wrong
Posted by Simon at 12/3/2004 1:28:33 PM
Hi everyone, I'm wondering what you're supposed to do when you call a method that is required to perform some action but that action subsequently fails. More specifically, how do you get a custom message back so that you can provide some useful information to the application user? It see...more >>



Display row number in DataGridView
Posted by dimension at 12/3/2004 11:55:28 AM
Hi, is it possible to display the Row number in the in the row selection column in a DataGridView (this is the "column" before your first column...when you click on it, it highlights the entire row). also, i have put code in the SelectedIndexChange event of the DataGrid view to display t...more >>

App.config question. Me is stuck good :-(
Posted by Simon at 12/3/2004 11:48:34 AM
Hi everyone, I really need help with the following: It's common in app development to create numerous projects under one solution that as a whole combine to become your final application. For example I have a solution that has four subprojects - 3 class libraries and 1 windows forms app....more >>

Does Brushes.Black return a new Brush object (that must be disposed)?
Posted by Einar Høst at 12/3/2004 11:26:03 AM
Well, subject says it all really... Thanks, Einar -- "If it was so, it might be; and if it were so, it would be; but as it isn't, it ain't. That's logic" -- Lewis Carroll ...more >>

tiff files, compression, colordepth
Posted by Maurice Mertens at 12/3/2004 9:53:43 AM
Hello, I'm having troubles with saving a tiff-file with a certain compression and colordepth. This is the code I use: ---------------------------------------------------------------------- private sub MakeTiff dim imgSource as new bitmap(strTifSourceFile) Dim TiffCodecInfo A...more >>

Dictionary, Enumeration and Remove
Posted by Dave Arkley at 12/3/2004 8:37:10 AM
I have a type Dictionary<int, List<int>> oKP = new Dictionary<int, List<int>>(); Im populating the dictionary so that a key is associated with a list of integers. I then remove some, or possible all integers from the list by using foreach: foreach (int i in oKP.Keys) { foreach (int ...more >>

Excel-.NEt
Posted by mathon at 12/3/2004 7:19:01 AM
Hello, I want to develop a little application, which extracts some values of an excel sheet and displays this values with a rectangle or a circle in a form. Are there any example how to implement such things? regards mathon ...more >>

Calling a databind method on a webform in a ascx file
Posted by Stephen at 12/3/2004 5:49:03 AM
Hey everyone. I was wondering if someone could help me with a small problem. I have designed a user control and I would have inserted it on a aspz page (WebForm1). The User control is being used to help with the navigation through a datagrid. The control handles all the paging issues and on t...more >>

Adding button to form programatically
Posted by Simon Green at 12/3/2004 5:09:02 AM
Hi You peops are probably going to get sick of me over the next few weeks :) I am trying to add a button via code when an existing button is clicked. I have the following bits of code (missed out unimportant stuff) At module level: Dim WithEvents Button2 as Button At button1 click ...more >>

Basic form problem
Posted by Simon Green at 12/3/2004 3:29:06 AM
Hi, I'm working through some documentation trying to learn vb.net and came across the following code snippet: form1.location = new point(200,200) If I enter this within form1 code I get an error (and intellisense doesn't offer the property) however if I enter 'me.location =....' everyth...more >>

Problem with Microsoft Ole DB Provider for Oracle
Posted by jose.joao NO[at]SPAM cgd.pt at 12/3/2004 2:45:13 AM
Hi, I have win2000, and I installed Microsoft .Net and the Oracle 8.1.7 Client. In .Net I could connect to a oracle database, using the Microsoft Ole Db Provider for Oracle. After that I had to install Oracle Forms 6 and Oracle Reports, and for that propose it was necessary to install a new ...more >>

Datagrid sort
Posted by ETX at 12/3/2004 2:45:05 AM
Hello, My question is about the datagrid sorting. I have a datatable that is filled up with the data retrieved from an SQL query.I use that datatable as source for my datagrid. I would like to make the datagrid sortable by each of the columns but I don´t want to run the SQL query again. The ...more >>


DevelopmentNow Blog