Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
362 views

If the Nothing type is at the bottom of the class hierarchy, why can I not call any conceivable method on it?

The scala type Nothing represents (as I understand it) the bottom of the type hierarchy, also denoted by the symbol ⊥. That is, Nothing is a sub-type of any given type. The requirement for a Nothing ...
8
votes
6answers
3k views

How to tell whether a variable has been initialized in C#?

I know this is a dumb question and I guess it must have been asked before. However I am unable to find an answer to my question. Here is some sample code (which of course does not compile) to outline ...
7
votes
3answers
2k views

Nothing = String.Empty (Why are these equal?)

Why does the first if statement evaluate to true? I know if I use "is" instead of "=" then it won't evaluate to true. If I replace String.Empty with "Foo" it doesn't evaluate to true. Both ...
6
votes
1answer
204 views

Using Haskell's “Maybe”, type declarations [beginner's question]

I've started experimenting with Haskell and have a problem. qqq is a function that should print one string if called with "Nothing" and print other things if called with "Just something". The first ...
6
votes
2answers
155 views

Under what conditions is inferring Nothing desirable?

In my own code, and on numerous mailing list postings, I've noticed confusion due to Nothing being inferred as the least upper bound of two other types. The answer may be obvious to you*, but I'm ...
4
votes
3answers
1k views

Why can I not check if datetime is nothing

In vb.net, is there a way to set a datetime variable to "not set". And why is it allowed to set a date to Nothing and NOT allowed to check if it is Nothing, like this: Dim d As DateTime = Nothing Dim ...
2
votes
2answers
35 views

oracle select into variable when select return nothing?

declare fName varchar2(255 char); begin SELECT x.constraint_name into fName FROM all_constraints x JOIN all_cons_columns c ON c.table_name = x.table_name AND c.constraint_name = x.constraint_name ...
2
votes
2answers
55 views

Is Nothing comparison gives type mismatch

I am trying to check if the 'Listivew.Tag property is nothing'. I used to do the 'Is Nothing' check universally for all scenarios as first check to avoid errors Can someone explain how to do it in ...
2
votes
2answers
86 views

Scala: using Nothing for singleton instances of polymorphic types

Given a polymorphic trait like trait Transform[T] { def apply( t: T ) : T } one might like to implement various specialized instances, such as case class Add[Double] extends Transform[Double] { ...
2
votes
3answers
248 views

VB check for Null Reference when passing ByRef

I have a function that accepts a String by reference: Function Foo(ByRef input As String) If I call it like this: Foo(Nothing) I want it to do something different than if I call it like this: ...
2
votes
3answers
285 views

Why does map/filter … not work with an Array of Nothing?

Isn't Nothing a subtype of all types? scala> val array = new Array(5) array: Array[Nothing] = Array(null, null, null, null, null) scala> array.map(_ => 42) <console>:9: error: value ...
2
votes
4answers
562 views

Checking to see if user didn't input anything in “cin”

Hey guys I'm brand new to c++. How do you check to see if the user didn't input anything at a cin command and simply pressed enter? Thanks.
2
votes
2answers
318 views

Set variables to “Nothing” is a good practice?

If I got Dim myRect As Rectangle = New Rectangle(0,0,100,100) Is it necessary or just fine to later do this: myRect = Nothing Or it isn't necessary? Thank you. IF it is necessary, are there ...
1
vote
1answer
60 views

How to replace value types with nothing?

I am writing a vb.net application which calls a webservice method. The webservice method in question accept some 20 parameters, such as (string x, string y, string z.... Integer a, Integer b, Integer ...
1
vote
3answers
850 views

How do I make an integer to null in Excel VBA?

I am trying to detect whether an integer was set, and if not, skip most of the code in the loop (using an if statement). Here is what I have so for. Do While hws.Cells(r, 9).Value <> "" On ...
1
vote
1answer
62 views

What kind of OOP structures work well in an application that has many different modes?

What can I do to structure my application so the code stays manageable as it gets bigger? I am building an application that will be in a certain state which will change depending on how the user ...
1
vote
4answers
878 views

VB.NET Structs and Nothing - problems

I'm having some headaches using Structures and functions that return Nothing in VB.NET. Let me try to explain here with this code: Public Class Form1 Structure Test Dim field1 As String ...
1
vote
7answers
1k views

VB.NET - string of nulls

I have a string value read in from a CSV file. The CSV file contains 7 NULL bytes, I have confirmed this by opening it in a hex editor and sure enought there are 7 0x0 bytes in there. This string is ...
1
vote
6answers
2k views

Convert String.Empty to Nothing/Null

Is there a .Net function that does that. I guess if there isn't i have to make my own method. The thing is i have a function. It accepts integers. If you pass a 0 integer or a null value it still ...
1
vote
5answers
6k views

Check for Nothing in vbscript/classic asp

I need to update an old classic asp, and I have to call a function that normally returns an array, but under certain circumstances might return either Nothing or an undefined value. How can I check ...
1
vote
6answers
1k views

ASCII Value for Nothing

Is there an ascii value I can put into a char in C++, that represents nothing? I tried 0 but it ends up screwing up my file so I cant read it.., thanks.
0
votes
1answer
55 views

Annoying “nothing to be done for 'install'” message

I cannot figure out why make is giving me this. I run "make clean; make" then "make install" and I get a "make: Nothing to be done for `install'." message. Here is my install target: $(phony ...
0
votes
2answers
43 views

How do I use a null value in a double in VB.Net 2010?

Straightforward question: I have a few variables that are doubles. I would like to be able to store a "null" state in them, i.e. I need to be able to represent that the variable doesn't contain valid ...
0
votes
1answer
37 views

Is it appropriate to store all forms and threads inside a custom ApplicationContext class?

I'm trying to figure out a way to divide the UI from the business logic. In addition, I want the business logic to be able to notify the UI of updates easily without having to pass a reference to a ...
0
votes
0answers
36 views

In XSLT1.0, how can I test for a template returning nothing?

I want to determine whether a template has returned something or nothing. This is an example of the sort of code I've been trying; <xsl:template name="test"> <xsl:variable name="x"> ...
0
votes
0answers
63 views

LinqDataSource setting property twice

I have a linq2sql object named user which has 2 fields: firstname and lastname I want to have a "FullName" property that will allow two-way databinding So in the user partial class I added property ...
0
votes
2answers
696 views

Why does setting a DataSet row value to Nothing initialize it to the data type minvalue?

When setting a DataSet row column to Nothing, like row.Date = Nothing, why does it initialize it to the data type minvalue? In this case a date, that gets set to 0000-01-01. The column is set to allow ...
0
votes
2answers
205 views

Custom Structure that can be assigned Nothing and/or DBNull?

Please can any one advise me if it is possible to decalre a custom structure that can be assigned Nothing and / or DbNull.Values, and also can be instanciated as Nothing? What I am looking to do is ...
0
votes
2answers
125 views

Setting DataReader = nothing

In my project I have seen that at many places developer has just nullify the DataReader object after use and hasn't close or dispose.. I want to know the advace effect of doing so, I mean nullifying ...
0
votes
1answer
603 views

PHP ftp_connect does nothing

I've configured a couple of php codes that connects to my server with the use of ftp connect. It works perfectly when I'm testing it locally, it connects, it goes in, i can access stuff. BUT when I ...
0
votes
1answer
435 views

VB.NET Byte Problem

I am porting some c# code to vb.net, currently trying to figure out how to do this.. byte isEndReached = //get some data if (isEndReached != 0) { for (int y = 0; y < isEndReached ; y++) { ...
0
votes
2answers
3k views

Webbrowser control's window.external is ALWAYS null

The Web browser's Window.External object is always null! To reproduce drop a web browser on a new winform and type: Option Strict Off Public Class Form1 Private Sub Form1_Load() Handles ...
-1
votes
2answers
99 views

PHP - if statement echo's nothing if null

I have a script that displays job listings, it currently displays "(0)" if there are no listings in a particular category. I want it to display nothing if there are no listings and to display the ...