Visual Studio Putting Class Names in Binary
2 Jun 2006 11:18:13 -0700
Is there a way to get Visual Studio to not put my C++ class names in my
binary files? When I look at the strings in the binary, they show
up...but they are not at all needed. Any ideas?
I would prefer a linker option to take these out, but if not, perhaps
there is a tool to strip them out after the fact.
...
|
ReportViewer textbox.label
Fri, 2 Jun 2006 15:23:18 +1000
Hi,
In reportviewer design time, I set one textbox's label property. so the
report will show a report map. The report actually does show the report map.
I checked the rdlc file, the field has label tag in the report file. so the
setting is saved in the report file.
But when I run time create the report ...
|
Visual studio references newbie question
1 Jun 2006 05:05:09 -0700
Greetings,
I'll try and explain what I think I observed happening. Hopefully
someone has some suggestions.
We started using a trial version of some third-party .NET components.
The references appeared as expected, we were able to add the vendor's
controls on forms, for example, from the Toolbox without in ...
|
Interrupting an running DLL on server
Thu, 1 Jun 2006 07:28:02 -0700
I have to build a client server application in which a serverside module
(DLL) always is running, checking a table in an a database for mutations.
This process may not be stopped.
Client applications must be able to interrupt the running server process
with a function call. After handling the function call ...
|
Multiple instances of the same panel
Wed, 31 May 2006 22:06:26 +0200
I am designing a form (in VS c++ 2005) which needs to get a large amount of
input about a number of different people.
The data for each person is the same.
What I want to do is to design a form and then add some controls to it
(probably in a panel).
Then I want to have multiple instances of that panel defin ...
|
Converting HTML Pages to ASP.NET 2.0 Webforms in VS2005
Wed, 31 May 2006 09:26:33 -0400
Hi all,
I am trying to convert a client's existing intranet site to an ASP.net 2.0
application that we can host for them. In doing so, I want to convert all
of the html pages in the site to aspx pages, so I can implement security,
masterpages, etc. In VS2003, I could simply change the extension to aspx ...
|
Conditional if statement in gridview
Tue, 30 May 2006 19:10:01 -0700
How do I write a “conditional if statement within a grid view, i.e”?
<Columns>
If <asp:boundfield datafield=”projects”> from my sql stmt equals
“all_projects”
then
<asp:boundfield, datafield=”../islgm/projects.aspx?id=”…”>
else
<asp:boundfield, datafield=projects> =”n/a”
<asp:BoundField Hea ...
|
|
|
VS 2005 Release Version Problems
Tue, 30 May 2006 11:55:55 -0500
I figured out the problem. I was hard-coding a file location to an
image file I was using within the program, instead of using the
resource file. So, future note, don't use hard-coded file locations
when using resource files, e.g. "C:/Documents and
Settings/user/desktop..."
--
Melon00
----------------------- ...
|
ListView Group names issue
Tue, 30 May 2006 13:33:01 -0700
I'm using VS 2005 and in design time I can see group names when I add them
and add items to the groups but when I run the project all I can see is
items. Group names just disappear. I am sure it's something stupid and simple
but I can't seem to find a solution ... :-( ...
|
Report with Databinding at runtime (VS2005)
Tue, 30 May 2006 13:05:01 -0700
Hi,
I am currently trying to change the databinding of a report at runtime. I do
this because I use DataSets in my application, but don´t have a connection to
a database all the time. This is the code I tried:
DataSet ds = new InvestmentCalculation();
public frmPrintView(DataSet ds)
...
|