|
Ah bugger...you could always decompile System.Data.dll, modify the IL, then recompile it
Jeremy Kimball
Catapultam habeo. Nisi pecuniam omnem mihi dabis, ad caput tuum saxum immane mittam.
(I have a catapult. Give me all the money, or I will fling an enormous rock at your head)
|
|
|
|
|
Does anyone know how to synchronize 2 database files
(apply the changes on both) in C#
I've tried to add to project references to both Microsoft Active Data Objects 2.7 and Microsoft Jet Replication Objects (2.6?).
and I've read some examples in VB
ms-help://MS.VSCC.2003/MS.MSDNQTR.2003FEB.1033/dnacc2k/html/jrorep.htm
it didn't help much

|
|
|
|
|
hai there,
Give me detailed description about Visual Source Safe 6.0c. how can integrate with my .Net projects. Show me some link for detailsed description.
Advance thanks
hai, feel free to contact
Sreejith SS Nair
|
|
|
|
|
Install it, configure it in VS.NET's Tools-<Options, then add your projects to source control by right-clicking and selecting Add to Source Control (or from the File-<Source Control) menu. Note, with VSS 6.0 you can either add a solution (not a good idea in most large development projects where developers may want their own solutions with whatever projects they're responsible for) or a single project - you cannot add multiple projects without problems.
From there, you just check out your files, edit them, test them, then check them back in. Never check-in incomplete code (i.e., that won't compile), otherwise you'll cause problems for anyone else.
The best way to learn is to just try it and check out all the options available. It's really not difficult and there's really not a lot of articles that explain the simple stuff - more so just how to managed certain types of projects like ASP.NET sites, which can be a hastle because of their nature. For those types of articles, just see http://msdn.microsoft.com[^].
Microsoft MVP, Visual C#
My Articles
|
|
|
|
|
Quick Question : How is remote debug setup?
Sounds simple enough, but there are a few hurdles in the way :
1) I dont have physical access to the machine that will be debugged
2) I cannot install Visual Studio on it, nor run the VS install and just select remote debug tools.
3) The machine I am debugging from is in a standard windows domain, the machine i am debugging to is in a DMZ and cannot see domain logon details - therefore I cannot add myself as a "Debugger Users"
4) I have tried running the debug server with "-anyuser" in "-tcpip" mode but VS still tells me I cannot connect as I need to be part of the "Debugger Users" group
So in summary I need to configure/install remote debugging by transferring the necessary files across the network and then running it in such a way that I am prompted for a user/pass when connecting to the remote debug services or allowing remote debug for any connecting user.
I have followed the instructions located at :
http://msdn.microsoft.com/library/en-us/vsdebug/html/vctskInstallingRemoteDebugMonitor.asp[^]
But this just presents me with :
Visual C++ Remote Debug Monitor(x86) Version 7.10.3077
But I need to be able to debug J#, VB .NET, C#
Any help is greatly appreciated
post.mode = postmodes.signature;
SELECT everything FROM everywhere WHERE something = something_else;
> 1 Row Returned
> 42
|
|
|
|
|
Without physical access or security rights on the remote machine, you're pretty much sunk. You may need to bring IT in on this one, if you can pull them away from all their important work...you know, solitaire, civ, playing XBox in the back room, that sort of stuff.
Once you get install the remote debugging tools, you're pretty much set and you obviously know what you're doing from there.
Microsoft MVP, Visual C#
My Articles
|
|
|
|
|
If you can't install the debugger tools how do you debug it? Remote Debugger is not a way to work around the lack of debugging tools but a tool to use in special cases and this doesn't sound like its applicable.
You are pretty much stuck without a little help from IT. Remote Deubgging is very iffy when crossing sub-net boundries in the first place let alone a machine sitting in a DMZ (connections between the DMZ and trusted nets should be limited by any sane IT admin). Then there is the question of how domains are configured going between the trusted net and the DMZ. They very well maybe completely seperate domains which adds a wrinkle. Besides, installing the Remote Debugger on a production machine might be a security hazard that maintainers don't want to deal with.
The best thing I can recommend is setting up another machine that closely approximates the machine/system in question. Simply put it might be impossible to get the Remote Debugger to work out of a machine in the DMZ because of security policies in place. Without further input from your IT staff who knows what is going wrong. Hopefully you aren't tinkering with live machines in the first place!
|
|
|
|
|
Hi,
I want to use Keypress event in my windows form. When user press enter that time i want to catch that event. and how to use the keypress event because in visual c# i never seen ASCII keys. Tell me how to catch keypress event and use ASCII values for trap the key which is press by the user.
Thank You for Help,
(Hemant Uttam Mane)
|
|
|
|
|
Web or Win Form?
There are some events and properties in WinForm to see keyboard: KeyPreview, KeyPress, KeyDown etc. See EventArgs and KeyData, KeyChar, KeyCode properties.
Hi,
AW
|
|
|
|
|
There's many ways of doing this. If you want to catch these in your derivative class, override OnKeyDown . External to your class, handle the KeyDown event. This is to catch and potentially "handle" the key without it being passed to the target window. If you don't care about stopping it from being dispatched, you can handle either KeyPress or KeyUp .
In there, you actually use the KeyEventArgs - not the EventArgs like the other response mentioned - to get the Keys enumeration member for pressed keys, or just the ASCII character value itself. See the documentation for the KeyEventArgs members for more details.
If you want to catch keys throughout your application (say, for configurable hot keys), implement the IMessageFilter class and add your implementing using Application.AddMessageFilter . You get a Message structure that contains the message (such as WM_KEYDOWN ) and you can get the data from the WParam and LParam properties. You can also return true to signal that you've handled it and the message should not be dispatched.
Microsoft MVP, Visual C#
My Articles
|
|
|
|
|
i am using visual studio to make some histogram graphs and pie graphs of standered divation but the programme does not recognize the graphics.h header file. how should i make the graphs and please tell what should i do to this heard file (graphics)
help me in graphics
|
|
|
|
|
This is C# forum not C forum. Post this in VC++ forum.
Mazy
"One who dives deep gets the pearls,the burning desire for realization brings the goal nearer." - Babuji
|
|
|
|
|
C# doesn't use header files. You'll have to rewrite the C++ constants, structures, function headers, whatever your trying to use in the header file, into C# code.
RageInTheMachine9532
|
|
|
|
|
I want to use a variable (or constant) in following class property:
[EventTrackingEnabled(true),ObjectPooling(true,1,50)]
public class Aktualizacje : ServicedComponent
{...
instead of number 50 in many classes in many projects of one solution. Is it possible? Thx in adv
Hi,
AW
|
|
|
|
|
You can declare constants and use those in your attributes, but not variables. Since attributes are metadata, the values must be defined at compile-time, not at runtime.
Microsoft MVP, Visual C#
My Articles
|
|
|
|
|
Just overload the constructor, very handy with attributes. Remember attributes are readonly because they are stored in metadata, and hence, can be changed at runtime.
|
|
|
|
|
|
Hi friends
I have a problem. I have a login form in visual C# in which user must enter username amd password and then click login. If username or password is blank then one messegebox display that "Please enter username and password". After that i want to exit that sub. In Visual besic .Net there is command "EXIT SUB". In visual C# there is a static method call Application.exit but it is for close the whole application but i want only to exit the event and application should not be close.
Please reply me as early as possible
Thank you.
(Hemant Uttam Mane) 
|
|
|
|
|
Application.Exit() static method. See help
Hi,
AW
|
|
|
|
|
He said he didn't want to call that and exit the whole application.
Microsoft MVP, Visual C#
My Articles
|
|
|
|
|
|
normally you can exit a sub (in C# it's called method) with return....like this:
public void Login()
{
return;
}
|
|
|
|
|
Hi,
I have a structure declared with bit fields in one of the C++ dll I am calling in my c# application. How can I change it to C# type struct?
typedef unsigned int UINT32;
typedef struct DEV_TYPE
{
UINT32 ReadCdR :1;
UINT32 ReadCdRw :1;
UINT32 ReadDvdRom :1;
UINT32 ReadDvdRam :1;
UINT32 ReadDvdMinusR :1;
UINT32 ReadDvdMinusRw :1;
UINT32 ReadDvdPlusR :1;
UINT32 ReadDvdPlusRw :1;
UINT32 WriteCdR :1;
UINT32 WriteCdRw :1;
UINT32 Reserved0 :1;
UINT32 WriteDvdRam :1;
UINT32 WriteDvdMinusR :1;
UINT32 WriteDvdMinusRw:1;
UINT32 WriteDvdPlusR :1;
UINT32 WriteDvdPlusRw :1;
UINT32 TapeDrive :1;
UINT32 Reserved :15;
} DEV_TYPE;
I have read in MSDN that C# does not support bit fields. Is there any method to implement this structure in C#? Pls help..
Thanks
Vini
|
|
|
|
|
Use BitArray(sealed) or BitVector32 or try to create new class using uint and next define set/get properties:
private uint a=0;
public uint A
{
set { A=value; }
get { return a; }
}
public uint A0
{
set { a &= 0xFEU; if(value>0) a+=0x1U; }
get { return a & 0x01U; }
}
...
Hi,
AW
|
|
|
|
|
I got it with BitVector32 BitVector32.CreateSection Method and get/set methods.
Thanks
Vini
|
|
|
|