|
Re: A CodeDOM Problem. Can anyone solve it ??
6/10/2004 9:21:39 AM
(Total replies: 0)
|
| Hello friends,
I've got solution myself, of my previous problem where I've to generate code for the object properties like [System.Drawing.Point], [System.Drawing.Size], [System.Drawing.Color] etc. where I don't know the type. The solution is the use of [System.ComponentModel.Design.Serialization.InstanceDescriptor] class where I can get the information what constructor has to be used for the construction of that Object value and the parameters information.
Anyways, I'm posting the code ... |
|
|
|
A CodeDOM Problem. Can anyone solve it ??
5/29/2004 3:58:48 AM
(Total replies: 1)
|
| Hello friends,
Could anybody help me how to generate .NET CodeDOM graph for object properties ? e.g. if I've to generate a statement like the below:
this.Location = new System.Drawing.Point(10,10);
How I'm going to do it where I don't what the Type of property is ? The property value (input) is in string. I've to first convert it to its appropriate data type and then generate statement. I've managed to get the Type of the property @ run time and generated the statements for primitive ... |
|
|
|
How to generate code using CodeDomSerializer ??
6/10/2004 9:20:10 AM
(Total replies: 0)
|
| Hello friends,
I've created a Windows Form populated it with controls.
Now I've to generate the source code @ runtime for creating that form.
I've implemented IDesignerHost, INameCreationService, ITypeDescriptorService etc. in my project. The form I've created is through IDesignerHost.CreateComponent (or something like that I don't remember). But when I'm generating source code using CodeDomSerializer, it'll only generate a skeleton not the body of InitializeComponent method i.e. the ... |
|
|
|
Limited IME Support in .NET (Indic Applications) ??
2/5/2004 6:17:55 AM
(Total replies: 0)
|
| Hello friends,
I'm developing an Indic Application in .NET where I needs input in Indic Script (like Hindi) from user. So, I've decided to use the IME support for input in Hindi language. The application works fine with Hindi Typewriter (IME provided in Windows XP) but fails with the IME provided by WebDunia.com (downloadable from BhashaIndia.com Downloads Section).
I've checked the ImeMode property of all Controls. What's the problem. ??
Thanks, in advance |
|
|
|
Re: Drag controls from List control onto a form
12/23/2003 4:21:35 AM
(Total replies: 0)
|
| Hello rekha,
I think you need a designer host kind of thing. Check out this site:
http://www.windowsforms.net/default.aspx?tabindex=5&tabid=47&ItemID=13&mid=142
I hope it is helpful to u.
Bye 4 Now,
Luv Ashish Shukla alias Wah Java !!
|
|
|
|
|
|
|
Beginning Smart Card Programming
12/23/2003 5:14:04 AM
(Total replies: 0)
|
| Hello friends,
I'm Ashish Shukla alias Wah Java!!
I'm beginning Smart Card Programming (mean just reading data from a Smart Card through Smart Card reader). I've preferred .NET platform.
Can anyone tell me where to begin ??. Any "Hello, World" tutorials, programs, articles are appreciated. I don't want to program for any specific Smart Card Reader. So, Microsoft standards tutorials will be required
I'm a .NET programmer since last 1 yr. See, ... |
|
|
|
Is .NET Reflection slow ??
12/19/2003 10:17:56 AM
(Total replies: 0)
|
| Hello friend,
I'm writing a Java .NET Interoperability bridge in Java (in C++ through JNI). Actually, I'm hosting CLR into my java apps. So, that java code will be able to call .NET code.
But since, ObjectHandle.Unwrap() method returns a Object instance, how to invoke methods of any particular class.
So, I've decided to use reflection i.e. type.InvokeMember(obj, ...) something like this (not exactly since I'm not sitting with .NET Framework docs).
I want to know whether invocation ... |
|
|
|
In what way .NET is portable ??
12/3/2003 6:37:59 AM
(Total replies: 1)
|
| Hello friends,
I want to know in what way is .NET portable.
Is it portable across OS. ??
Is it portable across CPUs ??
And what is portable ??
Is its source code is portable or the binary code (i.e. MSIL EXE) is portable ??
Thanks,
Ashish Shukla alias Wah Java !!
Wah Java !! |
|
|
|
Re: Making Thumbnail of a form
12/3/2003 6:43:14 AM
(Total replies: 0)
|
| Hi ArunTheNCR,
I think that there's no direct function in .NET Framework. Perhaps, you've to use Win32 API (through P/Invoke). ?? Just refer MSDN, on how to get screenshot. I'm sorry since I am unable to predicate the actual functions as I'm not sitting on my PC.
OK
Bye 4 Now,
Luv Ashish Shukla alias Wah Java !!
Wah Java !! |
|