 |
|

|
You also need to supply a lot more information than just that in your question. What are you having a problem with, that type of thing.
|
|
|
|

|
Need help for cross page posting,what type of data should post and how many pages use this data
|
|
|
|

|
Nope. There's still not a question there. That's just a vague wishlist.
What code have you got written? What, exactly, is the problem and what have you tried? Oh, and this question should be asked in the ASP.NET forum.
|
|
|
|

|
Hi Tanaji
Please elaborate more on your specific needs or technical gap to achieve a certain goal.
Cheers,
Edo
|
|
|
|

|
How to Firing event when creating instance of a class in C#.net?
Do i set the event in Class Constructor?
MASTER
|
|
|
|

|
I am not sure what you really want to do.
But, if you receive any kind of delegate as a constructor parameter, you can call it.
You can also call static events.
Surely you will not be able to call instance events as they will not be assigned yet... so, receiving them as a constructor parameter will solve that case.
Does this help?
|
|
|
|
|

|
now i have made a on screen keyboard but how to enter the characters in to a notepad using this on screen keyboard i have tried many times to enter in to it but it was not successful.....
how to do this guys?.
i forgot to mention i have designed it in vb...
|
|
|
|

|
srinivasankrishnaa wrote: i have designed it in vb.. Then please use the Visual Basic forum[^].
One of these days I'm going to think of a really clever signature.
|
|
|
|

|
how to create shortcut keys using vb...
for ex:"ctrl+o" for opening...
|
|
|
|

|
In the Windows Form Designer, click on the menu item that you want to execute when the shortcut is entered.
Use the Shortcut property of that menu item to set the shortcut that will cause that menu item to execute.
Recompile.
Test.
|
|
|
|

|
how to add two or three key combinations to work
any examples.........
|
|
|
|

|
The shortcut key combinations listed in the Shortcut property ComboBox are the only ones available for you to use.
|
|
|
|

|
I have the following simple WinRT C++/Cx code involving inherited interface, template class and public implementation:
public interface class IFoo
{
void KungFoo();
};
public interface class IBar : IFoo
{
void Snafu();
};
template <class T>
ref class TFoo : IFoo
{
public:
virtual void KungFoo() { std::cout << "TFoo.KungFoo(" << sizeof(T) << ")" << std::endl; }
};
template <class T>
ref class TBar : TFoo<int>, IBar
{
public:
virtual void Snafu() { std::cout << "TBar.Snafu(" << sizeof(T) << ")" << std::endl; }
};
public ref class FooBar : IBar
{
private:
TBar<USHORT> bar;
public:
virtual void KungFoo() { bar.KungFoo(); }
virtual void Snafu() { bar.Snafu(); }
};
When I try to compile that I got the error:
error C3766: 'TBar<T>' must provide an implementation for the interface method 'void IFoo::KungFoo(void)'
but : TBar<T> inherit from TFoo<int> which does implement the interface!!!
What is wrong? How to fix that please?
Thanks!
My programming get away... The Blog...
Taking over the world since 1371!
|
|
|
|

|
template <class T>
ref class TBar : TFoo<int>, IBar
{
public:
virtual void KungFoo() override { TFoo<int>::KungFoo(); }
virtual void Snafu() { std::cout << "TBar.Snafu(" << sizeof(T) << ")" << std::endl; }
};
My programming get away... The Blog...
Taking over the world since 1371!
|
|
|
|

|
how to add a close click form events in form skinner
Regards
Andy
|
|
|
|

|
You need to provide considerably more detail on this if you expect a sensible answer. What language, platform, framework ... ?
One of these days I'm going to think of a really clever signature.
|
|
|
|

|
I have a C++/Cx class like so
public value struct float2
{
float x,y;
};
I'd like to add a constructor with parameter like
public value struct float2
{
float x,y;
float2(float _x, float _y);
};
and I got a compiler error. Some googling later it seems it's not possible to add a constructor to a struct.. mm... fine I guess...
Then later I was looking at
public value class Windows::Foundation::Size,
And it has a parameterized constructor!!!
Windows::Foundation::Size::Size(float w, float h)!!!
This WinRT API value class has a public constructor with parameters!! (it even implement operator overloading!)
but The best I tried I couldn't implement paremeterized constructor and operator overloading for my own value struct..
Can someone show me how to declare / implement a simple parameterized constructor (and operator overloading for '+') on my simple class above please?!!!!!!
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station....
_________________________________________________________
My programs never have bugs, they just develop random features.
|
|
|
|

|
Apparently Microsoft cheated...
From the same questin on MSDN forums it seems that, yes MS did that, but I can't!
Just like you can't make non sealed public ref class.
Except if you inherit from DependencyObject!
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station....
_________________________________________________________
My programs never have bugs, they just develop random features.
|
|
|
|

|
can anyone help me how to create a onscreen keyboard using visual c++ please..........
|
|
|
|

|
You can google on:
1. how to create a bordeless window in C++
2. how to draw in C++ with...
- GDI?
- GDI+?
- DirectX?
- Other?
take your pic!
3. How to handle mouse event
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station....
_________________________________________________________
My programs never have bugs, they just develop random features.
|
|
|
|

|
can you help me how to make a on screen keyboard...
|
|
|
|
|
|
 |