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 > january 2004 > threads for saturday january 10

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

Single dll or mutli dlls? thanks.
Posted by davidw at 1/10/2004 11:28:50 PM
When I create a web application project, I will get one dll. I can put many functionalities into one dll, or I can put them into several dlls, which way is better? if I put them into one name space in one dll, would that affect the performance? thanks. ...more >>

Datagrid scrolling
Posted by Eyal at 1/10/2004 11:24:24 PM
Hello, i have a datafrid with more rows then can be seen in it,i know how to select the row with the 'currentRowIndex' but it doesnt move the row into the visible section ,can anyone help me with how to make the selected row come into display in the datagrid visible rows (scrolling). thank...more >>

conditional c#
Posted by dave at 1/10/2004 7:54:53 PM
while adding paramters for a stored procedure i have the following line arParams[2] = new SqlParameter("@TopicID", (TopicID==-1)? System.DBNull.Value:TopicID); this does not compile with the following error "Type of conditional expression can't be determined because there is no impl...more >>

Assembly loading failure
Posted by dan NO[at]SPAM actional.com at 1/10/2004 7:51:19 PM
Does anyone have any ideas how to resolve (or at least find the cause of) the following problem that occurs during loading of an application? I've never seen this type of error before and it only happens on one of three machines I have. Thanks. Here's the fusion log entry: *** Assembly Bi...more >>

Setting up a project dependancy
Posted by Christopher at 1/10/2004 7:27:39 PM
I made up a solution. I want to write a .dll and another project to test the ..dll So far I have created the .dll project and the test .exe project in the same solution. I set the .dll project as a dependancy for the .exe project. How do I provide settings for the .exe as to where the header ...more >>

Excel OLE linking
Posted by c duden at 1/10/2004 6:34:50 PM
Excel won't allow documents to be linked to a worksheet in office 2000 when using C# to create an add-in. The following code snippets are what was used in the attempts (there are more permutations of parameters, but for brevity...): // one - based on code from Matt Reynolds' website Excel.W...more >>

Scanners, twain, wia other?
Posted by DB at 1/10/2004 5:21:15 PM
vb.net. What should I look at for acquiring scanner images? Why? WIA? TWAIN? tks, DB...more >>

test bool value
Posted by simon at 1/10/2004 3:38:35 PM
Hi all, I found some code use the if(somefuction == bool) to test the return bool value. What is the reason to do it instead just if(somefunction)? Thank you Simon...more >>



How do I call a function from an <asp:LinkButton> ?
Posted by Fresh_Air_Rider NO[at]SPAM Hotmail.com at 1/10/2004 2:31:02 PM
Hi Could anyone please give me the syntax for calling a function with more than one parameter from an <asp:LinkButton> ? Many thanks John...more >>

Shared memory in .net
Posted by mosquitooth at 1/10/2004 2:00:54 PM
Hi as an "old school" C- developer and someone rather new to .net I've got a question: I'm used to use the Win32- api to create shared memory sections, now is there an equivalent to this API in .net? Thanks a lot mosquitooth...more >>

Cannot Change threading mode
Posted by c duden at 1/10/2004 12:58:49 PM
I am able to add an exisiting office addin project to a blank solution in VS.NET 2003. When I attempt to add it's setup project I get the following error in VS.NET "Cannot change threading mode after it has been set" and the project add fails. Does anyone know why this is occuring? Thanks. ...more >>

empty dataset
Posted by Eva at 1/10/2004 11:34:11 AM
hi, is it possible to create an empty dataset with a schema (i.e table headings and datatypes) the same as one of the tables in my database? Also can i create my own empty dataset with my own coloumn that is not based on a table from my database?...more >>

combobox.items question
Posted by Tonya at 1/10/2004 11:13:57 AM
Hi, I want to write code that will fill my combobox ONLY IF it is currently empty. i need this code to run for the combobox1.selectedindexchanged event. i wanted to know how i can code this. I have tried the following if combobox1.items.count = 0 then 'run the code to add items to th...more >>

visual basic sounds
Posted by John S. Ford, MD at 1/10/2004 10:24:49 AM
I'm familiar with the beep function but is there any function that enables you to cause a beep with a specific pitch and duration in the computer's speaker? John ...more >>

How do I call a function from a hyperlink in C# ?
Posted by Fresh_Air_Rider NO[at]SPAM Hotmail.com at 1/10/2004 8:32:57 AM
Could anyone please tell me how I can call a function from a hyperlink in C# ? Examples of scenarios where this would be useful include :- Loop through a set of records in a repeater and have a hyperlink to edit each record by passing it's record id to another page. Loop through a set of ...more >>

Installing visual studio.NET 2003 from harddisk
Posted by JanakiRaman at 1/10/2004 7:12:52 AM
Hi, Can I install visual studio .NET 2003 from harddisk? Thanks in advance, JanakiRaman S...more >>

Recognize Changes to DataSet
Posted by Larry Stewart at 1/10/2004 6:18:31 AM
I am using VS.NET 2003 and I have a simple WinForm that uses a SQLConnection, SQLAdapter, and a DataSet. I am binding the DataSet values to TextBoxes ( I don't want a grid for this situation). The problem is that I can not get the dataSet to recognize the user has changed a textbox field...more >>

XCopy in .NET
Posted by Brian Link at 1/10/2004 2:43:46 AM
Is there a Platform way to grab an entire directory and copy it? Or will I have to iterate through the files and binary write them? Thanks BLink Brian Link in St. Paul ---------------------- "Just because we have chiseled abs and stunning features, doesn't mean that we too can't not die...more >>

Any native .NET browser implementations?
Posted by Brian Link at 1/10/2004 2:41:03 AM
Browser controls in my VB6 apps were workhorses. I haven't had much luck with performance in the wrapped shdocvw, so I'm wondering if anyone knows of M$ plans to implement a native browser for .NET? Or has anyone else done this on their own? Thanks BLink Brian Link in St. Paul -----------...more >>


DevelopmentNow Blog