all groups > dotnet general > october 2005 > threads for tuesday october 11
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
Deployment Setup Project?
Posted by Charles A. Lackman at 10/11/2005 11:49:26 PM
Hello,
I am making as setup/deployment project in Visual Studio.NET and would like
to know how to change the top Picture and the Icon from the default one of a
computer to something I create. Is there a way to add a pic to the msi
setup project?
Thanks,
Chuck
... more >>
Failed to initialize huge arrays
Posted by dpriver NO[at]SPAM gmail.com at 10/11/2005 8:59:42 PM
I have to initialize a huge constant array of structures(60000~100000),
used as a lookup table , but it failed with
System.InvalidProgramException
when the items reach 18400. and if I change the item type from struct
to class,
the threshold is 35000 . It seems that there a size limition when
... more >>
Cannot replace parenthesis using regex.replace?
Posted by Stephane at 10/11/2005 6:49:02 PM
Hi,
I'm trying to replace parenthesis using Regex.replace but I'm always having
this error:
System.ArgumentException: parsing ":-)" - Too many )'s. Parameter name: :-)
Here's my code:
Regex.Replace(input,":-)","img",RegexOptions.Compiled |
RegexOptions.IgnoreCase);
Any idea why? ... more >>
Hashtables: readding a removed object
Posted by midnightswan NO[at]SPAM gmail.com at 10/11/2005 5:39:33 PM
Hi,
I've got a hashtable that contains of list of remote network Player
objects. The unique key used is the Player's IP address as a string.
The problem I'm getting is when a Player disconnects I do a
_RemotePlayer.remove[ipKey];
However, if the Player joins the game again and I add a ... more >>
ILMerge requires unavailable framework version (2.0.7?)
Posted by Oz Sozen at 10/11/2005 3:43:02 PM
I want to use ILMerge in my project, but it requires a framework version that
I cannot find the download for (2.0.7.... something). The latest I can see is
2.0.5. Does anybody know where I can find this framework or a version of
ILMerge that works with an earlier framework.
Thanks.
... more >>
App.Path
Posted by Lou at 10/11/2005 2:10:51 PM
Whats the .Net equivelant to VB6 app.path
... more >>
AppDomain.Unload
Posted by Mirano at 10/11/2005 12:42:01 PM
Hi everybody.
I load an assembly into another AppDomain, not a default one. As there is no
way to unload the assembly, I need to unload the domain. This is where the
app hangs.
The problem is this assembly has references to one dll, currently not
performing any work.
I tried this:
1. Set... more >>
Active Directory Application Access Managment
Posted by DEWright_CA NO[at]SPAM online.nospam at 10/11/2005 12:19:03 PM
I have a plan to use AzMan to manage a application I am developing for a gov.
agency. My problem is how do I deploy the security schema once it has been
created? I am using DeKlarit to develop the overall app, so the creation and
establishment of the rights is not a problem.
Is it a manual ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Simple For..Next query
Posted by Bails at 10/11/2005 12:03:41 PM
Hi all. I am trying to write some code for a "Lotto" program (hey its a bit
of fun) It creates 3 profiles of numbers and extrapolates a full 36 game
card from them.
On the 3rd profile ask's a question like "please enter a number between 15
and 36, but one that has NOT been used in Profile 1... more >>
Copy Files
Posted by Lou at 10/11/2005 10:35:27 AM
How Do I get the Windows Copy File dialog?
-Lou
... more >>
Problem with path reference
Posted by Nattydreadlock at 10/11/2005 8:13:53 AM
I just upgraded my app from 1.1 to 2.0 (asp.net)
Something strange is happening.
I make a link (dynamically) to an external .css - file:
The output is something like this:
<link href="/orders/css/company.css" rel="stylesheet" type="text/css">
if I run the app the page is certainly not fol... more >>
How to prevent a project from referencing an assembly in the GAC
Posted by mje11 NO[at]SPAM hotmail.com at 10/11/2005 7:30:35 AM
Hi there
I have a class library project (AssemblyA) and a 'test' project grouped
under the same solution. AssemblyA is strongly-named and I have a
version of the assembly in the GAC.
In the test project I have added a project reference to AssemblyA. If I
make changes to AssemblyA (e.g. add ... more >>
Global.asax problem after converting to 2.0
Posted by Nattydreadlock at 10/11/2005 7:03:42 AM
Hello,
I tried to convert my ASP.NET 1.1 project to ASP.NET 2.0.
Apart from some warnings most things went fine.
There was one error though. When I try to run my project it keeps
saying: "Could not find type "myapp.Global""
This error is located in the global.asax-file.
When I conv... more >>
Will it run on .NET 1.1?
Posted by Cat at 10/11/2005 6:25:22 AM
Let's say I've compiled an application with .NET SDK 2.0 beta 2. If I
didn't use any 2.0 feature, will the output exe run on .NET 1.1? That
is, the source code is originally written for .NET 1.1.
Another related question. If I build an application with the Visual
Studio 2005 RTM, will the outp... more >>
Missing icons for installed products when IDE loads
Posted by CodeMonkey at 10/11/2005 3:13:14 AM
Hi all,
I hope this isn't a symptom of something more serious, but when I start
Visual studio 2003, the icons that used to be shown underneath
"installed products from the visual studio family" are now missing and
there's just an empty space.
Is there a fix for this?
Thanks
Andrew
... more >>
Auto Newlines
Posted by Reuben at 10/11/2005 2:22:03 AM
Hi.
I was wondering if anyone knew how to obtain the average char width for the
default font used on labels. That or how to obtain the Graphics object for a
Bitmap object. I'm trying to write some code that would automatically add
newline codes (\n in C#) to a String so that it doesn't exceed... more >>
Peer to peer
Posted by Marius Horak at 10/11/2005 2:13:30 AM
Ages ago (1980s) Datapoint (Databus) had basic peer to peer capability.
Do we have anything in DotNet?
MH... more >>
Stored Procedure to tidy up table
Posted by Skc at 10/11/2005 12:56:02 AM
I have a table with fields that contain values with inverted commas - i.e.
"AAA" "BBB" etc... for field 1,2.
How do I create a stored procedure that goes through the whole table and
take out the inverted commas?
skc... more >>
help with managing .dll dependancies
Posted by Simon Matthews at 10/11/2005 12:35:03 AM
Hi,
I have created multiple .dll's mostly representing libraries used by
multiple projects. The dll's are often dependant on each other , for example:-
..dll1 dependant on .dll2 dependant on .dll3
Managing releases of these libraries has become difficult as a change to
..dll1 in the exa... more >>
Help in creating Setup Project
Posted by at 10/11/2005 12:00:00 AM
I got trouble in creating Setup Project
i use VS.Net and don't know how to create Setup Project which can add my win
app into "Windows Startup"
(which this win app can start when windows start)
can anybody give me some hints!!!
thanks!
... more >>
datagrid and custom collection object synchronization
Posted by Sanjin at 10/11/2005 12:00:00 AM
I have custom collection that is bind to the System.Windows.Forms.DataGrid.
My custom collection business object has property Quantity.
public event System.ComponentModel.PropertyChangedEventHandler
QuantityChanged;
private int quantity;
[System.ComponentModel.Bindable(true)]
public int Q... more >>
explorer context menus
Posted by Doug Bell at 10/11/2005 12:00:00 AM
Hi,
If I modify my Registry adding a new key HKEY_CLASSES_ROOT\*\shell\Use My
App\command with a (Default) Value of C:\Program
Files\Doug\DotNetApps\MyApp.exe "%1" then right clicking on files in the
Explorer Windows opens the context menu with the option "Use My App" and
selecting this runs My... more >>
|