473,409 Members | 2,034 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,409 software developers and data experts.

Use of "Optional" parameters in a Sub/Function?

I've dabbled in "Optional" over the last few days and think I'm coming down
against using it.

Seems to me like it makes the code harder to read and more complicated.

Instead of using Optional, I'm making the parm a Variant and passing Null when
it's not used.... then checking for "If Len(theParmValue & "") > 0... to see if
it is present.

That way I can eliminate checks for IsMissing(theParmValue)...
Anybody else have thoughts on this?
--
PeteCresswell
Nov 13 '05 #1
5 9472
Sorry, but I fail to see how If Len(theParmValue & "") > 0 is any easier to
read than If IsMissing(theParmValue).

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)

"(Pete Cresswell)" <x@y.z> wrote in message
news:td********************************@4ax.com...
I've dabbled in "Optional" over the last few days and think I'm coming down against using it.

Seems to me like it makes the code harder to read and more complicated.

Instead of using Optional, I'm making the parm a Variant and passing Null when it's not used.... then checking for "If Len(theParmValue & "") > 0... to see if it is present.

That way I can eliminate checks for IsMissing(theParmValue)...
Anybody else have thoughts on this?
--
PeteCresswell

Nov 13 '05 #2
Chuck Grimsby <c.*******@worldnet.att.net.invalid> wrote in
news:t7********************************@4ax.com:
Use the Optional keyword with a = "setting" if there isn't a
input. For example:

Public Function GetASetting( _
SettingToGet As String, _
Optional TableName As String = "USYS_tblSettings", _
Optional whatDB As DAO.Database = Nothing) _
As Variant

If whatever calls this function doesn't supply a TableName,
"USYS_tblSettings" is used by default.

Saves all that nasty checking for IsMissing... You do still have
to check for invalid stuff passed to your function or sub however!


I've often added optional arguments to version 2 of a commonly-used
function/sub. In that case, it's pretty important to use it, as
otherwise, existing code will break.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #3

"(Pete Cresswell)" <x@y.z> wrote in message
news:td********************************@4ax.com...
I've dabbled in "Optional" over the last few days and think I'm coming
down
against using it.

Seems to me like it makes the code harder to read and more complicated.

Instead of using Optional, I'm making the parm a Variant and passing Null
when
it's not used.... then checking for "If Len(theParmValue & "") > 0... to
see if
it is present.

That way I can eliminate checks for IsMissing(theParmValue)...
Anybody else have thoughts on this?
--
PeteCresswell

If there were no such thing as optional parameters, think how different your
coding would look. Some of the things you could no longer write would
include:
DoCmd.Close (You now write DoCmd.Close Null, Null, Null)
DoCmd.OpenForm "frmWhatever" (You now write DoCmd.OpenForm "frmWhatever",
Null, Null, Null, Null, Null, Null)
OK, these are methods of built-in objects, not your custom functions, but
doesn't the same principal apply? I don't see how forcing users of your
functions (yourself?) to always provide every parameter would increase
readability or fail to irritate. Perhaps, though, you are thinking of a
specific function and whether parameters should be optional in that
particular case.
Nov 13 '05 #4
The "Optional Parameter" is a hang-over from the way a couple
of dudes implemented their macro-assembler on a PDP mini-computer
decades ago. It is indeed a nifty feature, even if it did
fall out of a historical accident, but it is incompatible with
most current ideas about computer language design (Pearl excepted:
the designer of Perl is strongly supportive of irregular forms
for common verbs like DoCmd.OpenForm).

Ironic isn't it, that VB got optional parameters by aping C,
but C++ and OLE don't really have optional parameters any more?

In Access, optional parameters should default to Null, not
Missing (think about it!), but the fact is that Null is not
and cannot be a defined concept: we often wish Null to map
to 0 and "" and Empty and Error and Missing, and we often
wish Null to /NOT/ map to 0 or "" or Empty or Error or Missing:

there is no universal answer to some questions.

(david)
"(Pete Cresswell)" <x@y.z> wrote in message
news:td********************************@4ax.com...
I've dabbled in "Optional" over the last few days and think I'm coming down against using it.

Seems to me like it makes the code harder to read and more complicated.

Instead of using Optional, I'm making the parm a Variant and passing Null when it's not used.... then checking for "If Len(theParmValue & "") > 0... to see if it is present.

That way I can eliminate checks for IsMissing(theParmValue)...
Anybody else have thoughts on this?
--
PeteCresswell

Nov 13 '05 #5
(Pete Cresswell) wrote:
I've dabbled in "Optional" over the last few days and think I'm coming down
against using it.

Seems to me like it makes the code harder to read and more complicated.

Instead of using Optional, I'm making the parm a Variant and passing Null when
it's not used.... then checking for "If Len(theParmValue & "") > 0... to see if
it is present.

That way I can eliminate checks for IsMissing(theParmValue)...
Anybody else have thoughts on this?


I think it's (optional) useful and allows a default value to be passed
in rather than the usual nulls, zeros, zero length strings, etc.

--
This sig left intentionally blank
Nov 13 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Paramesh | last post by:
Hello friends, My friend asked me this question: This question regards proprietary software (of which I am one of the developers), so I cannot post actual code for this question. I will try...
18
by: Clark Nu | last post by:
It seems that when I define a fuction,I can set a default value to some of the peremeters.When I call the fuction without some of them,the fuction will use the default value automaticlly then...
2
by: Oenone | last post by:
In our applications, we use the special value of DateTime.MinValue to represent "null dates" throughout all our code. We recently ran into an issue where we wanted an optional date parameter for a...
2
by: Steve | last post by:
Kind of a strange question... I have a VB.NET 2.0 solution containing a main project (my EXE) and a number of other projects (class DLLs) that are "plug-ins" to the main app. These plugins get...
1
by: Sinex | last post by:
Hi, I have a webmethod. It takes an int parameter. I want this to get serialized as an XMLAttribute...so I used the XMLAttributeAttribute decoration and it works fine. Now, I want to specify...
6
by: Queez | last post by:
I've had a good look around and no-one seems to have mentioned this, which leads me to believe that I may be missing something simple. Basically, is there a way I can do the following, and if so,...
3
by: Rincevent | last post by:
Hi, I'm trying to process a large number of files, each with a very small size (about 500 chars maximum). I need to retrieve multiple information from each file, and some of these are optional. So...
0
by: shai.halevi | last post by:
I'm looking for a simple template with the following property: I want to have in the resulting page something like this (say): <div> This is some text that never changes: ]] This is some more...
6
by: .rhavin grobert | last post by:
hello;-) i frequently need the following construction: ReturnParam § Function() § { /...do something.../ someType var § = something; /...do something.../ return something;
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.