C# - Expose An Enumeration From A Wrapped COM Component
Sep 3, 2010
I'm writing a class library in .NET that wraps a COM dll and exposes specific functionality to be consumed by other .NET code. The COM library has several enumerations defined and I've used some of the enum types as parameters like so:
//C#
public void TransactionTypeSetByEnum(COMComponent.TransactionType transType)
{
this.TransactionType = transType
[Code]....
View 1 Replies
ADVERTISEMENT
May 15, 2012
I maintain a WinForms application that uses a third party COM component. We recently upgraded to a new version of the component with some additional properties/features (all old properties are intact), but I could not get Visual Studio to detect the new properties. It acted very much like it was hanging onto a reference to the old version of the component. Here are the steps I took to try to clear it:
Deleted the form that was consuming the component (copied out code first). The only control on this form was the third party component.
Removed the reference to the old component Deleted the bin and obj folders in the solution directory so that the PIA's would get newly created when I added the new control Uninstalled the old component, installed the new one Opened the solution, added the reference to the new component Added a form to the application, dropped the component onto the form and gave it the same name the old control had (so that the rest of the application didn't have to be refactored Pasted the form code back in place At that point the application would compile and run, but I could not get Intellisense to detect the new properties, and if I put them in place anyways the application would not compile. Nothing I tried would get the new properties to show.
View 1 Replies
May 28, 2010
I have just received an interesting feedback from a VB.NET customer using our product - for some reason intellisense hidden a certain enumeration value.After a small testing I have found that this is likely a bug in IntelliSense: [URL]..To be honest, I did not expect this problem with such a basic stuff like this. Have you seen this in the past? For me, it doesn't work in all VS versions...
Anyway, feel free to track this issue if you are coding in VB.NET.
View 1 Replies
Jan 5, 2012
How to use wrapped GUI dll in VB.NET?
View 3 Replies
Jul 7, 2009
Is there any way to determine if a line of a richtextbox has been wrapped up to the next? Something line
if line.length > richbox.width then 'do something
View 5 Replies
Dec 6, 2011
I'm trying to change the font of a textbox when it is resized, in order to show the fittest font size, but mantaining the original text's line count. But I haven't achieved to know if lines is wrapped, to decrease the font size.
View 3 Replies
Apr 24, 2012
I'm using VB.NET but this question applies to any OO language - Java, C# etc. I've tagged the question with Java and C# but will remove if not considered appropriate. I have an entity class ClassAAA that contains a reference to ClassBBB as one of it's attributes:
Public Class ClassAAA
Private Property _blah As ClassBBB = Nothing
Private Property _somethingElse As String
Private Property _anotherthing As String
' Make it private so cannot instantiate class without supplying ClassBBB '
[Code] .....
I could make the ClassBBB reference public (or supply a public getter method) but that would expose the inner workings of ClassAAA. What I'm thinking of doing is making the ClassBBB reference Friend so that it is only visible in the assembly i.e. a data layer and is not visible to client projects. But this stills feel like I'm exposing the inner workings of the class.
View 3 Replies
Jun 16, 2011
I have a VB6 object that is wrapped by a .NET class. As far as I recall it is possible to step through a VB6 object (compiled as a library) by simply running the VB6 library and inserting a breakpoint at the desired location.However this does not appear to be working in my case. I have attempted to recompile the VB6 object and re-reference it in my .NET project but this doesn't appear to have helped. there a way to insert Debugger.Launch() equivalent into a VB6 project?
View 1 Replies
Jul 15, 2011
I have a Listview and each ListviewItem has an image with a height of 90 pixels. This means that the Listview rows are also about 90 pixels high, enough room to show the subitems text word wrapped.
The only way to wordwrap text is to draw it myself, as far as I know, because the Listview has no property for that. I'm using the code below, which works fine, except I'm having some problems with centering the text vertically.
[Code]...
View 2 Replies
Jan 24, 2011
I have a form in a page that is popped up using the jquery dialog thus:using jquery ui 1.8.9 and jquery 1.4.4.[code] so this div dialogs up on a button click, but when i try to submit this popped up form with the clicking the butMove appointment just does nothing at all if i move it out of the popup it does fire is this because the popup doesnt simply show and centre the styled div?presumably i can get around this somehow?
View 2 Replies
Jun 4, 2011
I am trying to return a json string via jQuery of an object using the following function. The problem I do not seem to be able to overcome is my json result comes out the other end wrapped in double quotes.
[Code]...
View 3 Replies
Jan 13, 2012
Can any one share some code with me that would explain the process of storing a bitmap data in tiff wrapped JPEG format.
View 2 Replies
Feb 3, 2011
I am converting an old Vb6 solution to .net 2.0 in vs2010. I've been working in C# for about 3 years now and .net for 5. I don't recall having this problem in C#, but if I want initialize a readonly collection of DerivedControlFoo Is there a clean way to do it besides creating a sub to do it all off somewhere else? I'd love to be able to do it at the class level at the declaration for readability and simplicity.
View 1 Replies
Mar 1, 2010
Create a DLL component for database operation and use created component in another project. Required methods, events and properties
a. Connect
b. Add
c. Delete
d. Save
e. Record navigation (first, next, previous, last)
f. Properties for all database fields
g. Events for validation of database fields.
View 1 Replies
Jan 8, 2010
I've created a component whose name I'd like to be able to change while editing in the component tray. I've added a Designer action for a name property, but now I'm stuck.
Looking at the property grid, I can see that the name property is parenthesised, indicating that it's not a regular property.
View 1 Replies
Aug 26, 2009
I want to create a class that inherit from a polygon this is not possible because the polygon is not inheritable. I want to create a class that handle a polygon anyway and it behave like a polygon. Wile with the property i can pass the value from the class to the polygon but if I want to do something like
[Code]...
View 4 Replies
Nov 23, 2010
i have to develop API in .Net 4.0 which can be used in VB 6.0,i know how to use this and currently i am using my this API in VB successfully.but Stuck at one place,i have collection class and i have to expose it to VB with having functionality of List class of .Net.[code]i know that generic is not supported in VB, but i think with this declaration in VB 6.0 it creates interface class for class B as IList.but in VB using object creation of class B it doesn't provides me members of LIST in intellesense like (Add,Remove of List Class)
View 2 Replies
Jun 6, 2010
I have a .NET exe that I wrote and it has a couple properties that I made public and want to expose.
I want to shell this exe (Process.Start()) and then somehow reference this exe and get access to these public properties. These properties expose information about the running exe.
I know how to shell to the exe. And I know how to add a reference to the exe from my project that I want to use this object. But how do I get access to the properties of this running exe?
If you do know the answer maybe you could just tell me what the standard method is to expose properties of a running exe to another application at run-time.
View 5 Replies
Aug 27, 2009
Say I have a class that stores a value, and raises events when that value is changed:
[code]...
also say that I have a container class which contains a number of objects of this style, and raises its own event when any contained object changes its value:
[code]...
Given this setup, what is the best way to expose the stored variables in the StoreEventMonitors class? As three integers As three RaiseEventWhenStoredValueChanges objects?there is a good reason to use three different event-raising Objects, instead of simply writing a new class which stores three integers.
View 5 Replies
Apr 23, 2012
I have a Public Class called "ClientConnection". Inside that class, I have a Public ReadOnly Property called "FileTransfers(ByVal TransferID)". The property returns an object of the class "FileTransfer". All methods in FileTransfer are set to public.
VS is able to discover the methods inside the parent class "ClientConnection". How would I expose the methods inside the sub-class "FileTransfer" that is returned by the property "FileTransfers(ByVal TransferID)"?
Public Class ClientConnection
'irreverent code removed
Public ReadOnly Property FileTransfers(ByVal TransferID As Integer)
[Code].....
View 1 Replies
Jul 23, 2009
Does this mean that the type is not set up correctly?If you're not living on the edge, you're taking up too much room
View 5 Replies
May 18, 2010
For historical reasons, we need to expose string constants in .NET through COM interface.We managed to expose ENUM but we can't find a way to expose string const.We try the following code :
[Code]...
View 1 Replies
Sep 12, 2010
I am attempting to do something which isn't particularly obvious (to me at least). Digging around on the web I located the following sample (notice the font sample appears in the list on the left?).[URL] Now I know how to use the font dialog from VB.Net, but don't know the appropriate property to set to get the example to show in the listbox/listview? I set the same properties as the author but it shows a plain text font. I am basically attempting to save my users from having to click through every font to see what they each look like.
[Code]...
View 2 Replies
Jun 23, 2009
Creating a usecontrol:
The control will have numberous properties available at design and run time.
I am having trouble creating and exposing FONT properties for the child objects.
Example: The control will have a label with a designtime and useradjustable Display font. I wish to
1) be able to set the Font attributes via the properties dialog at design time.
2) set those properties via GUI at runtime.
The problem...
Code:
Private propArtistHeaderFont() As Font
Public Property ArtistHeaderFont() As Font
Get
[Code].....
So clearly I can not pass the FONT properties back and forth via the SET/GET method.
View 2 Replies
Aug 31, 2010
In VB (ASP.NET)
Application("myapp")= Server.CreateObject("APP.Engine")
aa = Application("myapp").myMethod(2)
works.
In C# I tried
Application["myapp"]= Server.CreateObject("APP.Engine")
but
Application["myapp"].myMethod(2)
fails with 'object' does not contain a definition for 'myMethod'How can I expose the public interface in C#?
View 4 Replies
Jul 5, 2009
The following code selects a line ina richtextbox. It works OK expect from one problem:
When a line is biger than the size of the richtextbox, it wraps it. This create a big problem as I can not select the last line of the richtextbox (when a line is wrapped it becomes two lines). When I set wordwrap to off it works just fine
Private Sub RichTextBox1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles RichTextBox1.MouseMove
RichTextBox1.Focus()
[CODE]...
View 3 Replies
Mar 4, 2010
I have a base class with several derived classes. I want all of my derived classes to have the same Public Shared (static) method with their own implementation. How do I do this? Is it even possible?
View 3 Replies
Apr 19, 2011
I've got a WPF control hosted inside a Windows Forms form via ElementHost. My WPF control (let's just call it WpfControl for the sake of an example) contains a variable that I'd like to expose to my Form.
View 1 Replies
Aug 8, 2011
I'm creating a composite user control and trying to exposing the controls as properties so that I can databind them from the form that I drop the user control onto. One of the controls I'm trying to expose is a combobox and I can't seem to figure out how to expose this combobox to the designer. I'm trying the following code that I've cobbled together from what bits of documentation I can find but so far no joy.
<Category("Data"), Bindable(True), _
Browsable(True), EditorBrowsable(EditorBrowsableState.Always), _
DesignerSerializationVisibility(DesignerSerializationVisibility.Visible), _
AttributeProvider(GetType(IListSource))> _
Public Property RollbackCombo As ComboBox
[Code] .....
View 1 Replies
Nov 2, 2009
I am using an inherited form extensively for the first time, and I'd like to know if what I'm doing is correct.I have a base form with a grid and four buttons (Add, Edit, Remove and Close). There is no functionality in any of the button click events, as the specific implementation of each derived form will be different. The only exception perhaps is that the Close button closes the form. The only reason I am using a base form really is because I've many forms that look the same.How do I now expose the button click events to any derived forms? The only straightforward way I could think of was to have the button click events call an Overridable method, which I then override in the derived form:
Public Class frmTableBase
Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click
Me.AddButtonClicked()[code]...
Is that the correct way? It seems a little bit overkill to have to do this, although I can't think of another way really... Perhaps I could add the Overridable keyword to the event handlers themselves (and make them public)..?I'm doing it the way I showed now however. It works, but I'd just like to know if this is the generally accepted way of doing this.
View 3 Replies