.net - ParamArray Not Working With COM?

Jul 28, 2010

I have a Class Library that is exposed to COM like this:

<ComClass(SomeClass.ClassId, SomeClass.InterfaceId, SomeClass.EventsId)>
Public Class SomeClass
Public Const ClassId As String = "GUID1"
Public Const InterfaceId As String = "GUID2"

[Code]....

Compile error:

Function or interface marked as restricted, or the function uses an Automation type not suppport in Visual Basic.

What do I need to do to properly expose this Method so I can use it like this?:

SomeClass.SomeMethod 1, 2, 3

View 1 Replies


ADVERTISEMENT

IDE :: XML Documentation With ParamArray?

Mar 7, 2012

I am trying to use xml documentation tool in my application. one of my methods receives 'ParamArray' as an argument. i want to document this argument elements.

here is my code
Public Sub LoadSearch_ByEmployee(ByVal EmployeeID As Integer _
, ByVal FromDate As Date _

[code].....

View 4 Replies

Pass One Paramarray To Another?

Nov 1, 2009

I've got one function with a paramarray, and I want to pass the same paramarray to a second function. I do not control the second function, and so cannot modify it.

Public Sub Main()
Foo(1,2,3,4,5)
End Sub
Public Sub Foo(ParamArray Byval arg as Integer)

[code]....

View 4 Replies

Use ExecuteReader With A ParamArray?

May 31, 2011

How to use the ExecuteReader calling a stored procedure with a parameter array?

View 1 Replies

Using ParamArray In A .NET Property?

Jan 19, 2011

Is it possible to do something like this (don't know how to form correct syntax):

Public Property MyProperty as ParamArray Date
Get
...

[code]....

View 3 Replies

<Attribute>: ParamArray In Constructor

Nov 10, 2010

A former co-worker wrote a class in C# that was to be used as an attribute. I'm having to convert his work to VB (yeah, it's pointless and way more work than necessary, but management thinks it's a good idea). Unfortunately I'm having an issue because one of the main properties of the class is an ArrayList which is set with a ParamArray in the constructor. The class looks like this (note I've tried to abstract out the problem, so this is a simplified version of the class only)

<AttributeUsage(AttributeTargets.Field Or AttributeTargets.[Property])> _
Public Class LabelAttribute
Inherits Attribute
Public Sub New()

[CODE]........

In the first one, there is just the single label being added. No Problem. In the second one there are 2 different labels being added. Again, no problem. The third one, however, is a problem because it's assuming that the "Description", which is supposed to be the description is instead being interpreted as another label.

This wasn't a problem in C# because it could be set as follows:

[CODE].................

Of course this doesn't work in VB because optional parameters aren't referred to by name as they are in C#. As a stopgap I've changed the constructor to allow only a single label like this

CODE]..................

But that undermines some of what this class is meant to do. Does anyone know how, or even if I can get the same basic functionality to work in VB?

Think there must be a way to make the existing design work. Imagine this class was built into a library that I could not modify. Would I be forever forbidden from setting Description because of this design?

View 4 Replies

Loading ParamArray From File?

Jul 5, 2009

I have an application that reads data values (numeric) from a data file. Due to a change in data requirements, I need to put these into a paramArray so I can calculate the MEDIAN of the series of numbers. I have seen some of the MSDN examples and they are all good except they load the paramArray with ArrayName(#, #, #, #, #). That's OK for a simple example, but how do I load a paramArray while reading numeric data from an ASCII input file? The number (Ubound) of samples is usually 153 but can vary considerably.

I think I can work out the rest of the MEDIAN calculation from the MSDN example code.

View 2 Replies

VS 2008 Class ParamArray Info

Apr 24, 2009

I'm building a class, and i let the user select several options to show or hide some features in another form.In my class i declared an enum with 5 values, and in one of my class constructors i declare an paramarray of the type of the enum.Now i want that when i declare a new object of this type, when the user put the "(" char, a popup/tooltip/intelisense (don't know what to call it), show all the options available. Like in the classes that allready exist in the framework...

View 7 Replies

Deal With ParamArray Values As ByRef So They Can Be Updated?

Mar 16, 2009

Sounds simple enough, but its not working. In this example, I want to set the values of 3 fields to equal a 4th. I could do something like this..[code]...

Values in the param array did not get updated in the return! I was expecting to have all of the final values now be "1", like they are in the Function.

Is there any way to get an update-able ParamArray collection like this? ParamArray must be declared ByVal, but with a reference type like String, shouldn't that only make a copy of the pointer and allow me to change the underlying value?

View 1 Replies

Pass A Dynamic Number Of Elements To A Method Which Accepts A ParamArray?

Jan 30, 2011

I have a method which I need to call which accepts a ParamArray

Method(ByVal ParamArray elements() As Object)

I need to pass it two known strings, and an unknown number of strings, based on a variable number of XmlNodes in an XmlDocument[code]...

View 1 Replies

UnhandledExceptionEventHandler Samples From Msdn Working, In My Code Not Working?

Sep 3, 2009

I found on msdn samples and modified (add Thread.GetDomaind.UnhandledException)

<SecurityPermission(SecurityAction.Demand, Flags:=SecurityPermissionFlag.ControlAppDomain)> _
Public Sub Main()
' Add the event handler for handling UI thread exceptions to the event.[code].....

View 1 Replies

VS 2008 Cannot Seem To Get A Working Filter In Working Order

Jun 18, 2009

It appears that my favorite thing in the world is tackling projects that are beyond my current knowledge and abilities. I have a little project that I am working on which is a simple image viewer stocked with (upon completion) your standard Load..., Next/Previous, Zoom In/Out, Actual Size, and Full Screen capabilities. However, I am running into a few snags:

(1) I've been able to get my "Load..." button to display a file dialog box, but I cannot seem to get a working filter (with which only image file types are allowed to be selected) in working order.

(2) I have a PictureBox object (entitled PictureBox1) that displays the image selected via the file dialog box, but it loads images in their full size (1:1/100% zoomed) state without scrollbars, etc. to allow me to navigate the loaded image. I would like to have it load the image, initially, to fit within the dimensions of PictureBox1 and from there be able to zoom in/out via my "Zoom In/Out" and "Actual Size" buttons and be able to scroll if the zoom level is beyond the dimensions of PictureBox1.

(3) It dawned on me that I haven't the faintest idea how to get my "Next/Previous" buttons to allow the user (me) to navigate, in succession, the images contained in the folder in which the currently loaded image is stored. [code]

If it is deemed that this thread is inappropriately requesting help, I ask that it be locked/deleted quickly as I recognize that this is a large community with many discussions going without need of unwelcome posts.

View 9 Replies

Make Application Working Better And Never Freeze / Make Application Working With Any Count For Loop Without Freeze

Jan 19, 2012

I'm using loop to read data from sql and then make some calculations then save it again to another table but when application loop for 3 or 4 times it's freeze but the job is done but if loop = 10 or more then it is freeze and hangup for long time .i need to learn how to make my application working better and never freeze and make application working with any count for loop without freeze .

View 7 Replies

For Each X As Y In Z Not Working?

Jul 14, 2010

I can't understand why this is not working.


[code]...

View 3 Replies

GDI Changes - Working With Vb.NET And GDI+

Mar 28, 2009

I am moving over to vb.NET and am experiencing the learning curve. Am learning quickly, but I do have a question for anyone who can respond. vb6 could be made to run much faster by going after the GDI API directly, rather than going through vb6's standard wrapped functions like Line(), and Circle(). Now that I am working with vb.NET and GDI+, as far as I can tell there is no wrapper anymore and you hit GDI+ directly "right out of the box". Is this true? It looks like trying to phenagle the old vb6 API code can't work because .NET does not use GDI anymore...it uses GDI+ via the System.Drawing namespace.

View 16 Replies

RTS Is Not Working With EXE

May 19, 2012

I'm developing application using RS485.

Which is working fine when i debug from project itself but when i run after building .exe it is not getting any reply back.

After some try and error i found that RTS(Request to Send) is the reason behind this problem.

Port.RtsEnable = True
Port.Write(DATA)
Port.RtsEnable = False

View 4 Replies

FileSystemWatcher Is Not Working?

Jul 31, 2010

I added FileSystemWatcher in Form1_Load like this -

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
....................

[code]....

View 2 Replies

.net - AddHandler Not Working?

Apr 26, 2010

I can't figure out why my addhandler is not firing?In the Sub "CreateTagStyle" the AddHandler is not firing when the LinkButton is clicked Is there some reason that addhandlers can't be added at certain points of the page lifecycle?

<%@ Page Title="" Language="VB" MasterPageFile="~/_Common/Admin.master" %>
<script runat="server">
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)

[code]....

View 1 Replies

.net - CustomValidator Not Working (asp.net)?

Oct 4, 2011

I am using the CustomValidator for the first time but it doesn't seem to be firing DateExpireRequired_ServerValidate and just runs the code in the Click action.Been bugging me for a couple hours now! can anyone see a problem with what im doing?The DropDownList in my code below is populated using Roles.GetAllRoles()

ASP.NET
<asp:Label ID="lUserRole" runat="server" AssociatedControlID="tUserRole">User Role:</asp:Label>
<asp:DropDownList ID="tUserRole" runat="server" CausesValidation="True">
</asp:DropDownList>

[code]....

View 2 Replies

.net - GetShortPathNameA Not Working In C#

Apr 6, 2010

I'm trying to get get the short filename from a long filename but I'm having problem in c# code. VB.Net code is:

Declare Function GetShortPathName Lib "kernel32" _
Alias "GetShortPathNameA" (ByVal lpszLongPath As String, _
ByVal lpszShortPath As String, ByVal cchBuffer As Long) As Long

[Code]....

But I cant get the c# version work. Am I missing something or what is wrong?

View 3 Replies

.net - SQL Command Not Working?

Sep 29, 2011

I have an SQL command I am attempting to execute.The syntax is as follows

[Code]...

View 1 Replies

.net - ZipForge Not Working?

Mar 25, 2012

I'm using the ZipForge to extract an archive in VB.NET.When I run the code I get no errors, but it doesn't extract any of the files. This is the code I'm using:

ZipForge1.FileName = "Archive.zip"
ZipForge1.OpenArchive(FileMode.Open)
ZipForge1.BaseDir = "C:Extract"
ZipForge1.ExtractFiles()

View 1 Replies

.net Substring Not Working?

Oct 8, 2010

I'm getting an ArgumentOutOfRange error when using substring function in .NET. I'm new to .NET so probably doing something wrong. I have a txtField, which is a text field component in GUI. I'm using Microsoft Visual Basic 2010 Express

txtField.Substring(txtField.Length-4,txtField.Length-1)

If txt.Field contains only numberic values it works ok, but as soon as the text field contains characters it breaks.

View 1 Replies

Activex Com .dll Not Working Under Ie8

Nov 19, 2009

I have a COM dll that has been developed under vb.net. The Control works just fine in IE 6 and IE 7, but when IE 8 tries to load the control, the browser crashes. I look at the event viewer and I get an error 1000 about iexplorer.exe and mshtml.dll. Do I have to build this com dll with IE 8 on my development machine? How can I track down what is wrong with the Control?

View 2 Replies

Activex Not Working Ie8?

Sep 23, 2009

I created an activex in vb6 and used it asp.net. It work perfectly in ie6 . But not working in ie8 . No errors showing. In security setting I enabled activex option just like i changed in ie6. Only the small square i can see in ie8.

View 2 Replies

ADO To Read Dbf Not Working

Jul 27, 2009

According to all posts I have seen, this shold work, but of course it doesn't, does anyone see what is wrong....

DBF is on C: emp est.dbf
Dim DB As New ADODB.Connection
Dim RS As New ADODB.Recordset

[Code].....

View 9 Replies

API And Working Between Windows

Jul 8, 2009

Can someone please show me an example of how I would start a timer when viewing another window such as Mozilla Firefox? I would prefer it be started with a keystroke.

View 1 Replies

App Not Working On SOME XP Machines

Aug 19, 2011

I have developed an application is VS2010 ( VB app using .NET4 ) ... the application runs fine under Windows 7 and on (3) XP machines we have here. Had one user looking for support on an XP machine ... when he started the app nothing happened. No errors or anything, just nothing happened. Had him install the latest .NET4 framework and everything was fine.

Just had another support issue ... user with the same complaint ... had him install latest .NET4 ... but this time did not fix the issue ... still nothing happens when he clicks to start the app ... no errors ... just nothing happens.

I can't check this because it runs on all our XP machines .... Is the only criteria that .NET4 be installed? I created an install that includes only the EXE from the BINRELEASE folder ... nothing else. Do I need anything else. Strange that it works on all our XP machines.

View 15 Replies

App Not Working On Vista/7?

Jun 22, 2010

my application required the dropping of resources when a button is pressed.It seems when this button is pressed on XP everything works swimmingly, however...

on windows 7 and vista the button simply dosent do anything, ive tried elevating to admin etc..

Is it possibly due to how it creates/drops resources?

View 3 Replies

ASP PasswordRecovery Not Working?

Jun 25, 2010

I have an ASP PasswordRecovery module on a page, the code comes up like this:

<asp:PasswordRecovery ID="PasswordRecovery1" runat="server">
<MailDefinition From="[email]">
</MailDefinition>
</asp:PasswordRecovery>

However, when I submit the form I just get the message, "We were unable to access your information. Please try again."I saw this question and made sure to add those attributes to my web.config here:

[Code]...

I added a break point in this function but it is never reached, the above error message just comes up in the app. Any other ways to debug what's going wrong?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved