September 29th, 2011 08:24 AM
@dglienna: This should not be a problem at least for two reasons:
1.
It is the same coding as in the xxx.Designer.vb-Files produced by the form-Editor.
2.
My coordinates are within 640 x 480...
September 24th, 2011 07:29 AM
Hi,
I now added .visible = True and hoped that the problem vanished. It seemed so. A dozen customers reported it works fine. But this morning again a customer emailed me the same old problem: text...
September 15th, 2011 11:50 PM
Hello DataMiser,
thank you for your reply and your advice.
Member visible = True should be the default when creating a new control. But you may be right - setting it explicitely to True would be...
September 15th, 2011 03:16 PM
Hi,
I have a strange behavior with a dynamically created TextBox-Control. The control is created in the handler of the Load-event of a dialog-form like this:
txtTitel = New...
March 14th, 2011 08:34 AM
Hi to all,
I'm looking for a method to obtain the coordinates of the points a PathGradientBrush is made of.
Details:
My questions belongs to the .NET class PathGradientBrush (not to the...
February 24th, 2011 01:31 PM
Hi together,
my problem is: I have a (managed) template class/structure with property functions like e.g.
template< typename T1 >
public ref struct MyStruct
{
typedef T1 given_type;
...
February 14th, 2011 12:17 PM
@Alex:
wow!!! You are quite right - it works!
The reason why I didn't find out this was: I first wrote the operator functions in C++/CLI as object member functions (not static). VB couldn't...
February 14th, 2011 12:19 AM
Hi,
is there any possibility to write an operator member function for a ref class in C++/CLI which can be called directly from Visual Basic using the common Visual Basic syntax? Of course this can...
January 23rd, 2011 08:24 AM
Hi,
I have written some template classes using C++/CLI. These classes are managed classes (ref class). Now I want to specialize a few of them for the case that one of the given template parameters...
February 23rd, 2007 02:10 PM
Hi gurus,
I found the (simple) solution:
One has to foreward declare the operator-Funktion, before it can be used as a friend in the class declarations. The foreward declaration looks like:
...
February 23rd, 2007 08:20 AM
Hi,
I've found a strange behaviour of the C++ compiler of VS 2005. Because I'm not sure whether this is a bug (or a non-ANSI-comformity) or whether I've done a mistake, I post it here. The example...
January 11th, 2007 06:42 AM
Hi dcell59,
I discovered the same problem (VS 2005, SP1). Worse: In my case the second item in COMPAREITEMSTRUCT delivered to CompareItem() is completely wrong. It always contains senseless data!...
January 11th, 2007 04:59 AM
Hi,
does anybody know an URL with a list of all bugs corrected in the SP1 of VS 2005? On the microsoft sites only a list of all improvements is available. But MS also writes that plently bugs have...
November 30th, 2006 09:17 AM
Hi all,
I already expected that there is no possibility (because of the fact that containers and their iterators are strictly separated - as GNiewerth quite correctly mentioned).
Well, the...
November 30th, 2006 03:56 AM
Hi,
does anyone know whether there exist any possibility to obtain (a pointer to) the container an STL-iterator refers to?
For example:
Consider many std::maps all of (e.g.) type...
October 15th, 2006 12:41 PM
@ Kirants,
I've now tried this program (PortMon). It reports the DCB settings (and gettings) which the application does. So it's what I am looking for. Thank you very much!
Physicus.
October 15th, 2006 12:11 AM
@ gstercken:
That's exactly what I meant. Of course the DCB is associated with the serial port - and I want to read it's parameters! That's it.
The reason why I wrote "... for a running...
October 14th, 2006 07:43 AM
Hi,
is there any possiblity to read out the DCB-parameters of the serial port of a running program? I mean the release version of an executable. Does anyone know a (freeware) tool for doing that?...