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 > march 2004 > threads for monday march 15

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

AssemblyInfo - AssemblyVersion (build and revision)
Posted by Marcin Floryan at 3/15/2004 11:47:11 PM
Hello! I have my version defined in the AsseblyInfo as follows: <Assembly: AssemblyVersion("1.1.*")> And VB.NET 2003 automaticly inserts build number and revision. I would like to ask two questions: 1. How are those two elements generated (when they increment?) 2. Is there any way to reset t...more >>


bool or Boolean?
Posted by soosan at 3/15/2004 10:28:46 PM
hi what is the difference between bool and Boolean in c#. when i declare a variable using either it works! what is the difference? ...more >>

How to recover corrupted IIS log file
Posted by anon at 3/15/2004 7:10:30 PM
Hello, I have a 7.5 MB IIS 5.0 log file...at least that's what windows says the file is. When I open it or try to download it, I get zippo, an empty notepad window, or an empty file when trying to FTP and download it. I need this log file as it's one of the busiest days ever and now it's ...more >>

Form Size and Resolution
Posted by GailW at 3/15/2004 6:36:06 PM
I created a form in a .NET project that was 760 x 612. I was unable to extend the height beyond the 612 so I closed the project and changed my desktop resolution from 800x600 to 1024x768. I reopened my project an the form appeared but the controls were no longer visible. If I opened the Propert...more >>

Looking for c# tech interview questions
Posted by bill at 3/15/2004 6:12:35 PM
Anyone see any articles or websites that have some prewritten c# technical interview questions? I did find this one: http://www.techinterviews.com/index.php?p=54. But am looking for more. I like some of the questions in the above link but many are just useless trivia. I want someone who c...more >>

Visual FoxPro Forms and Visual Studios DotNet
Posted by HomeyDaClown at 3/15/2004 4:56:07 PM
I see in visual foxPro how to create a form for entering data. Is there a way to incorp this into a visual studio program?...more >>

Automatic Service start up problem on Booting the System
Posted by Madhava Patro at 3/15/2004 3:16:08 PM
Hi I have a Service which has a problem Starting Automatic on the Boot up (other times when i start from the Services Dialog it starts fine), It gives me the following Error in the Event Viewer 1> Timeout (30000 milliseconds) waiting for the RTEC System Service service to connect. 2> The RT...more >>

Upgrading VB6 containing excel vba code to .Net
Posted by john33 at 3/15/2004 2:41:05 PM
I am attempting to upgrade a project written in VB6 that contains Excel VBA code obtained by running macros, copying and pasting the code to VB6. When this project is upgraded to .NET, the upgrade wizard defines an object in an "UpgradeSupport.vb" module as Public ExcelGlobal_definst = New Excel.Gl...more >>



DataRow problem or bug in C#?
Posted by Eddie B. at 3/15/2004 2:36:15 PM
I am trying to create a new row with the values from textboxes. When I create the first row it works fine but when I click the button to create another row it only wverwrites the existing row. this is what I am doing. Toward the bottom (about 8 uncommented lines from bottom) where DataRow first...more >>

Send an array to another page
Posted by Pepehammer at 3/15/2004 2:00:12 PM
Hi there guys! I need to send an array from one page to another How can i do this? Thanks ...more >>

.NET Problem
Posted by mikemagnetic at 3/15/2004 1:36:07 PM
I just installed the newest version of .NET. Now when I go to the Administrative Tools and double click on the Microsoft .NET Framework 1.1 Configuration option, it comes up with this message: Snap-in failed to initialize. Name:.NET Framework 1.1 Configuration CLSID:{some guid} Also if I try t...more >>

Control hardware with a dll
Posted by christophe_d_k NO[at]SPAM yahoo.com at 3/15/2004 1:01:24 PM
Hello, I am busy with a project now that have to do hardware controlling with the com port. They gave me a dll file for that (with the functions to control the hardware in it). But now how can I use this dll file from my vb.net like I should use a com object. Or is this not possible and ho...more >>

Disable garbage collection?
Posted by Bob at 3/15/2004 12:10:26 PM
Is it possible to disable garbage collection for a limited period of time during a critical section of code? I did find the gcConcurrent runtime setting, but from what I read, it can still halt your application. Our app has a requirement to send a command in a specified period of time from the ...more >>

No need for installation but just copy??
Posted by DraguVaso at 3/15/2004 11:06:33 AM
Hi, I read in an other thread that it is not necessary to do an installation of an application: Just copying everything in a directory is enough. Is this really true? Even if there are new dll's etc included? If this would be true this would be a great advantage to deployment on client-comp...more >>

No need for installation but just copy?
Posted by DraguVaso at 3/15/2004 11:02:23 AM
Hi, I read in an other thread that it is not necessary to do an installation of an application: Just copying everything in a directory is enough. Is this really true? Even if there are new dll's etc included? If this would be true this would be a great advantage to deployment on client-comp...more >>

DNS::Resolve
Posted by Andrew van der Stock at 3/15/2004 10:25:58 AM
Hi there, I'm getting some bizarre results. I'm using Visual Studio 2003 Enterprise Edition, with Managed C++.=20 I try the following: (server is a string).=20 if ( server ) { try { IPHostEntry *he =3D Dns::Resolve(server); // we only care about the first A record in...more >>

How to step into com interop from .net?
Posted by Jie at 3/15/2004 10:25:30 AM
Hi, I use com interop in my VB.Net window application. I would like to step into the COM written in VB 6. I have checked the option of "Unmanaged code debugging" in the .Net project property window. What else should I do to step into the VB codes? I am using .net framwork 1.1. Thanks for your he...more >>

Interop between C# and C++
Posted by Michael at 3/15/2004 10:21:05 AM
Hi All I am very new to the .Net development and now I am facing a challenge that I will need to call a class member function developed in C++ ( visual studio 6) by a C# program an illusion will be C+ class a public void test() C I need to call that test function and I am not sure how...more >>

Show records in ASP.NET
Posted by Pepehammer at 3/15/2004 10:19:40 AM
Hi there ; I got the following problem, I hope you can help me out guys! I need to display some records from a table, and I need to insert in every row a checkbox, to select some of those records. Once a selected some of those, I need to be able to identify'em and make updates in the table ...more >>

How do you import a .bmp file into an sql database?
Posted by Jim at 3/15/2004 10:16:06 AM
I want to save a logo in an sql database but have been unable to find any examples of how to do this through VB Keeping the logo file on a local C:\ folder is not allowed by laboratory policies Thanks in advance for your help Ji ...more >>

Outlook programming in VB.Net
Posted by rajesh NO[at]SPAM solutionsoftware.com at 3/15/2004 9:26:10 AM
Please take a look at the following code snippet. Dim OutlookApplication As Outlook.Application Dim OutlookNameSpace As Outlook.NameSpace Dim outlookAppointmentItem As Outlook.AppointmentItem OutlookApplication = New Outlook.Application() OutlookNameSpace = OutlookApplication.GetNamespace(...more >>

Impersonation and LinkLabels result in SecurityException
Posted by jmaanine NO[at]SPAM paju.oulu.fi at 3/15/2004 5:58:15 AM
Hello, we have an app developed with VS.NET and C#. The user interface has a login-screen, which performs login and impersonation of given Windows-user. The impersonation token is created with a P/Invoke on ::LogonUser() and the actual impersonation is accomplished by .NET framework's Windows...more >>

openning iexplore
Posted by raju at 3/15/2004 1:16:08 AM
Hi, Currently am working with one window based application in C#. I would require to open a iexplore from my application. Now am able to open using "System.Diagnostics.Process.Start", but my requirement is i want to open one iexplore with some path also i want to pass some parameters. For exam...more >>

IDisposable Interface
Posted by rajesh NO[at]SPAM solutionsoftware.com at 3/15/2004 12:24:39 AM
I am new to .NET programming and OOPS. I am interested in knowing about Dispose method. They are + What are the circumstances under which we should implement the IDisposable interface. + What would I loose if do not implement the IDisposable interface. + I am invoking instances of certain cus...more >>


DevelopmentNow Blog