|
| rastreadores GPS Ratreador gps localizadores bloqueadores 1284623 |
CENTRAL ÚNICA DE VENDAS
10 Marcas de ratreadores, Compare e Compre.
Rastreador de Veículo
Rastreadores de Veículos
Rastreador GPS
Rastreadores GPS
Rastreador Ituran
Rastreadores Ituran
Rastreador Portátil
Rastreadores Portáteis.
Assistência 24 Horas
Visite agora mesmo nosso site.
http://tel011-50523122.vila.bol.com.br/
Graber - Teletrim - Tele Trim - Ituran -
Rastreadores gps , Localizadores, Bloqueadores
Graber - Teletrim - Tele Trim - Ituran -
Ra ...
|
| Read Entire Conversation |
|
| Auto popup smart tags |
I am developing my own control and have the smarttag menu working. I would
like to have it pop up automatically when adding the control to the form,
like the DataGridView control does.
Does anyone know how to make it do this?
Thanks
--
Andrew Cutforth - AJC Software - www.ajcsoft.com
The best folder synchronize and directory compare tool available.
AJC Active Backup instantly archives every file you edit giving you
unlimited undo and automatic revision control. Never lose your data again.
|
| Read Entire Conversation |
|
| Setting Site property of child control to parent control |
Hi all,
How can I set a child controls' Site property to its parent?
Kind regards,
Matt
|
| Read Entire Conversation |
|
| CodeDomDesignerLoader regenerating code for members from base form |
I've derived from CodeDomDesignerLoader in order to generate VB code
for forms that I've designed in a custom designer. My current
implementation of Parse is essentially just the following, which
creates a shell form with a base type specified:
codeCompileUnit = new CodeCompileUnit();
codeCompileUnit.ReferencedAssemblies.Add(this.baseType.Assembly.Location);
this.typeResolutionService.ReferenceAssembly(this.baseType.Assembly.GetName());
CodeNamespace codeNamespace = new
...
|
| Read Entire Conversation |
|
| Using CodeDomSerializer to save application settings |
Hi all
I am wanting to use the CodeDomSerializer to serialise my applications
object graph. The object graph is manipulated using the PropertyGrid
component and I want to serialize this to disk and then reconstitute it. I
have managed to use the CodeDomSerializer to serialize the object fine via:
MyCustomType m_Target = new MyCustomType()
DesignerSerializationManager m = new DesignerSerializationManager();
m.CreateSession();
CodeDomSerializer s = (CodeDomSerializer)m.Ge ...
|
| Read Entire Conversation |
|
| Serialization of double values in VS2003 |
Some double values, such as NaN, do not serializing correctly in VS2003.
This problem seems to have been fixed in VS2005, but we have libraries in
VS2003 that do not work because of this serialization issue.
I have two sample applications attached. WindowsApplication3.zip contains
the VS2003 project and WindowsApplication11.zip contains the VS2005 project.
To reproduce the behavior:
1. Build both the projects in the respective versions of Visual Studio and
drop UserControl1 ...
|
| Read Entire Conversation |
|
| Come with us |
hi,
This is the real workgroup of Visual Basic 2005 express
goto : http://groups.google.com/group/VB2005
thank you
|
| Read Entire Conversation |
|
| Come with us |
hi,
This is the real workgroup of Visual Basic 2005 express
goto : http://groups.google.com/group/VB2005
thank you
|
| Read Entire Conversation |
|
| Designer smart tag crashes Visual Studio 2005 |
In the property grid, if I set a property to an invalid value (which causes
an exception to be thrown), the property grid displays a message box with
"Property value is not valid." message with options to view the details
about the error as well as an OK and Cancel button.
In a designer smart tag, if you enter an invalid property value, then VS2005
crashes. Is there a work around to prevent Visual Studio from crashing?
Abhishek
|
| Read Entire Conversation |
|
| Menu Commands |
Hi Guys
Have you ever tryed to handle escape or delete keys in VS design time?
There is a single way to do it - use menu commands.
So my designer initializes MenuCommands.KeyCancel using
InitializeMenuCommand method(listed below) in the override designer's
Initialize() method. And restores old menu comand handler in designer's
dispose method using RestoreMenuCommand listed below.
Everything works fine, but when i put several controls that uses menu
commands on the designe ...
|
| Read Entire Conversation |
|
| Setting designer Cursor |
Hi all,
We have a product built on top of Microsoft designer stack that
implement various interfaces to support WinForms designer. In our own
IMenuCommandService.ShowContextMenu() implementation we popup a
context menu with all designer verbs. If cursor is over some control
on the form when then it changes to Cursors.SizeAll as expected.
The problem I see is that while the context menu is up, the cursor
remains the same Cursors.SizeAll as oppose to changing to
Cursors.Def ...
|
| Read Entire Conversation |
|
| Fiscal Calendar? |
If I have Calendar Control on Asp.net page and I have a table for
Fiscal years on sql server
then, How can I check the dates from table to Calendar Control,so that
I can format the Calendar control cells according to my need.
I want to change the color of Dates according to fiscal month. i.e. As
Calendar control has dates for Current + next + Previous months, I need
to change the color of dates of month which is comes under Fiscal
month.
I have table for fiscal years, wh ...
|
| Read Entire Conversation |
|
| Update Notification |
Hi folks,
I've developed a UserControl that is supposed to manage multiple postal
addresses. (something like the one used in Microsoft Small Business
Accounting). This control has got a property, as follows:
public AddressCollection Addresses {get {return m_coll;}}
I've also created an AddressCollectionEditor (that's being derived from
CollectionEditor) as well as an AddressTypeConverter (that's being
derived from TypeConverter) to handle the design time manipulation of
t ...
|
| Read Entire Conversation |
|
| Windows Installer Guide - www.msiguide.com |
Just checked out this new website, take a look: www.msiguide.com
The website seems just launched but I have noticed information being updated every day and added frequently.
Website claims itself to develop as one spot resource for Windows Installer and ClickOnce.
It will be in my watch list to see how it emerges!
|
| Read Entire Conversation |
|
| Buy 2nd handphone for India market |
Highest rate for all type / brand
24-Hrs +91 9810577227 Puri
|
| Read Entire Conversation |
|
| Using CodeDomSerializer to save application settings |
Hi all
I am wanting to use the CodeDomSerializer to serialise my applications
object graph. The object graph is manipulated using the PropertyGrid
component and I want to serialize this to disk and then reconstitute it. I
have managed to use the CodeDomSerializer to serialize the object fine via:
MyCustomType m_Target = new MyCustomType()
DesignerSerializationManager m = new DesignerSerializationManager();
m.CreateSession();
CodeDomSerializer s = (CodeDomSerializer)m.Ge ...
|
| Read Entire Conversation |
|
| NullReferenceException at design-time when hosting a control inside a ToolStrip |
I am getting a NullReferenceException when I delete a ToolStrip derived
control created from the designer verb of another control. An application
reproducing the behavior is attached. To reproduce:
1. Build the attached application in VS2005.
2. From the toolbox, drop TestControl2.
3. Right click on the TestControl2 instance and click the Create
ToolStrip menu item.
4. Delete the TestControl2 instance.
5. Delete the ToolStrip control.
Notice that you get a N$7```(````1 ...
|
| Read Entire Conversation |
|
| ReferenceConverter and DesignerSerializationVisibility |
I have a GridOptions custom control that has property of type
GridSupport that has to be set at design time. In addition I have a
user control that contains a GridSupport component and exposes it as a
public property. I have this user control and my GridOptions control
on my form. I would like to be able to set the GridSupport property of
my GridOptions to the GridSupport exposed by my user control. However,
it it is not included in the drop-down list of available GridSuppo ...
|
| Read Entire Conversation |
|
| User Controls and the Designer (VS.NET 2005) |
Hello All,
I have two questions.
I'm developing a user control which turn out to be custom controls
derived from the ToolStrip class/control and the ToolStrip Button
class/Control.
There is both a Custom ToolStrip and ToolStripItem (a different type of
button).
My first question has to do with developing user controls and their
interaction with the VS.NET (05). Currently, as I test my control it
runs as a run-time control perfectly (except for a few minor known
issu ...
|
| Read Entire Conversation |
|
| Force component location winthin a form |
I have a simple panel custom user contol that I want to force to a certin
location (not 0,0) when added to
a form. Is there a way to do this so it shows up correctly in the designer?
|
| Read Entire Conversation |
|
| simple override of form size setting?? |
Could some one give me a simple code example of overiding the default form
size properity in the designer?
I have a base form as a custom control that I want to inherite from but I
want a different default size.
The default size is 640X480 and I would like new new instances of the form
rendered in the designer to appear as 320X240.
My control is just a basic form, I have no new properties. I just want to
change some of the defaults and have them appear in the designer. Is there
an easy way to do this?
|
| Read Entire Conversation |
|
| datagridviewcolumn with extend provider |
Hi,
Is there a way to add properties to a datagridviewcolumn with some type of
extend provider?
[]´s
emerson fabiano
|
| Read Entire Conversation |
|
| Generic controls |
Hi group
I have created a generic control such as this one :
public class SuperControl<E> : Control{}
It work very fine, but i can't have it in design time.
I saw on this group that it is a known problem, and that the designer
don't know how to work with generics. My first question is Have you
found a solution, or a work around, since the last post about this
problem ?
I have start with a new class :
public class SuperControl2 : SuperControl<object>
{
publ ...
|
| Read Entire Conversation |
|
| KADER |
Kader;
soru:madem,her=FEey bir kader defterinde yaz=FDl=FD ve her=FEey ona g=F6re
oluyor.o halde insanlar ni=E7in cehenneme gidiyor?
cevap:evet her=FEey bir kader defterinde yaz=FDl=FD ve her=FEey ona g=F6re
oluyor.ama,defterde yaz=FDl=FD oldu=F0u i=E7in o =FEey olmuyor.
mesela;meteroloji uzman=FD,uydudan gelen foto=F0raflara bakarak gelece=F0i
g=F6rebilmektedir.bir insan ne kadar y=FCkse=F0e =E7=FDkarsa hem g=F6r=FC=
=FE
alan=FD geni=FEler hemde gelece=F0i g=F6rebilir. u ...
|
| Read Entire Conversation |
|
| Setting GenerateMember property from ControlDesigner derived class |
Hi,
I implemented a simple control - HorizontalBevel that can be used to
render horizontal lines on a form (2 pixel in Height). I wanted to
display only what make sense for this control in properties window, so
I wrote a HorizontalBevelDesigner class, which removes most properties
by overriding PostFilterProperties() method.
I also want to set GenerateMember to false, so that only local variable
is generated in the InitializeComponent(), instead of member variable.
Sound ...
|
| Read Entire Conversation |
|