ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Need to register a UDF (xlfRegister) that takes no param (https://www.excelbanter.com/excel-programming/389971-need-register-udf-xlfregister-takes-no-param.html)

[email protected][_2_]

Need to register a UDF (xlfRegister) that takes no param
 
Hi,

I'm registering a UDF function in Excel via Excel4(xlfRegister, ...).

I want to register a simple fonction that just returns a string value
(no need to pass parameters to the function)

The problem is that the function paste dialog always ask for one
arguments.

I'm using "R#!" and I give an empty string for args names.

Any help would be greatly appreciated!

Thanks a lot,

Nicolas


Niek Otten

Need to register a UDF (xlfRegister) that takes no param
 
Hi Nicolas,

What is the code of your function and with what formula do you call it?

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

wrote in message oups.com...
| Hi,
|
| I'm registering a UDF function in Excel via Excel4(xlfRegister, ...).
|
| I want to register a simple fonction that just returns a string value
| (no need to pass parameters to the function)
|
| The problem is that the function paste dialog always ask for one
| arguments.
|
| I'm using "R#!" and I give an empty string for args names.
|
| Any help would be greatly appreciated!
|
| Thanks a lot,
|
| Nicolas
|



[email protected][_2_]

Need to register a UDF (xlfRegister) that takes no param
 
Hi,

The function prototype is :

XLOPER* VssGetTriggerTime()
{
// ... (code that just puts a simple string in the returning
XLOPER*) ...
}

I'm registering it with Excel4(xlfRegister, ... )

int err = Excel4(xlfRegister, 0, 10,
&xlDllName, // Full drive, path
and filename of the DLL
&xlInternalName, // "VssGetTriggerTime"
&xlFctPrototype, // "R#!"
&xlInternalName, // "VssGetTriggerTime"
&xlArgNames, // ""
&xlFctType, // 1 (function)
&xlFctCategory, // ""
&xlEmpty, // "" (Not Used)
&xlEmpty, // "" (no help topic)
&xlFctDescription); // "Get a simple string"

My function appear in the paste dialog.
I can select it, but the function dialog ask me for an argument.

If I write noting, the function is returning the test string.
If I write something, the function is returning #VALUE.

Why ...?

I hope this will help you!

Regards,

Nicolas

On May 23, 12:09 pm, "Niek Otten" wrote:
Hi Nicolas,

What is the code of your function and with what formula do you call it?

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

wrote in ooglegroups.com...

| Hi,
|
| I'm registering a UDF function in Excel via Excel4(xlfRegister, ...).
|
| I want to register a simple fonction that just returns a string value
| (no need to pass parameters to the function)
|
| The problem is that the function paste dialog always ask for one
| arguments.
|
| I'm using "R#!" and I give an empty string for args names.
|
| Any help would be greatly appreciated!
|
| Thanks a lot,
|
| Nicolas
|





All times are GMT +1. The time now is 11:58 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com