This is a Visual Basic concept, or occasionally part of the Scala type system.

learn more… | top users | synonyms

-1
votes
1answer
35 views

Ye olde PHP email form returning blanks and no echoes [closed]

I realise this kind of question gets asked a lot, but playing around with this code and searching for answers online has yielded nothing helpful as yet, so I here we are! It's your classic php email ...
0
votes
4answers
45 views

Why does this php query prints nothing

I have a problem, I have the following PHP code, which is supposed to get the "first" and "last" values of the column where the "id" matches what is in the URL. For instance, when the URL is ...
1
vote
0answers
85 views

Git commit returns “nothing to commit”

I am following instructions from https://devcenter.heroku.com/articles/facebook#what_is_heroku I have edited the file once already and pushed the changes successfully to the app. But when I tried to ...
0
votes
0answers
45 views

GWT Requestfactory stalled after starting under Apache Tomcat 6.0.36 ( Linux )

Need someone to point me in the right direction with a problem related to GWT RequestFactory. Problem : GWT RF Project is working fine when launched under Eclipse (Windows) but when copying it on a ...
-3
votes
6answers
74 views

PHP cannot unset cookie [duplicate]

I have problem in my code. I have tried to search on the right columns some answers that can help me, but i didn't found. This is my inset code: <?php if(isset($_POST['**'])) { ...
0
votes
1answer
20 views

Basic troubleshooting, Function onclick will not work

<!DOCTYPE html> <html> <head> <title>Practice with condition statements.</title> <script ...
0
votes
0answers
302 views

VB.NET DataGridViewCheckBoxCell Checked value

I want to get the value from a DataGridViewCheckBoxCell i have tried various codes DataGridView1.Item(1, i).Value = False Then also DataGridView1.rows(i).cells(1).Value = False Then also using ...
1
vote
6answers
92 views

What is the equivalent of else do nothing using the conditional operator?

I want to know what is the equivalent of this if statement: if (condition) { // do something }else{ // do nothing } Using the conditional operator: (condition) ? // [do ...
0
votes
2answers
159 views

<time.h> / <ctime> are not counting ticks

EDIT: It appears to be functioning now. The code has been updated to show my revisions. Thank you all for your help. I imagine I'm just stupid, but I'm attempting to use ctime to count CPU ticks ...
8
votes
4answers
212 views

Why do some Scala methods use polymorphic arguments instead of using Any/Nothing?

For example, Exception.allCatch is defined as def allCatch[T]: Catch[T] Why not just val allCatch: Catch[Nothing] when Catch is covariant in its argument? Or, why PartialFunction object ...
2
votes
1answer
105 views

Why doesn't Scala's implicit class work when one of the type parameters should be Nothing?

Update: I modified the example so that can be compiled and tested. I have an implicit class that defines an enrichment method: case class Pipe[-I,+O,+R](f: I => (O, R)); object Pipe { // The ...
1
vote
2answers
133 views

Replacement for “If object = Nothing Then” in Strict Mode VB.NET

I have a function which has a selectedID parameter of type "object". If my parameter is the default for the underlying type: i.e. Integer default is zero, I want some action to take place. Without ...
1
vote
2answers
852 views

Error checking for NULL in VBScript

I have the following VBScript in a Classic ASP page: function getMagicLink(fromWhere, provider) dim url url = "magic.asp?fromwhere=" & fromWhere If Not provider is Nothing Then ' ...
0
votes
1answer
67 views

Joomla module with no display on frontpage

I have been developing a Joomla module. This is my first module development. Is it possible that I enable a module in Joomla and let there is no output in front page? Because I don't want to display ...
-1
votes
1answer
108 views

Use the new word to create an object instance

The following code generates these two troubleshooting tips in vb.net The code builds with no errors. The locals window lists everything under OrderContext as "Nothing", 0.0 or "False" when it stop on ...
1
vote
1answer
755 views

How to handle null/nothing/blank values on MS Access 2010 form controls within VBA?

I have a need for a "track-changes" capability in Access 2010. I ran across this script which should do the trick with a little work. It's clear and understandable but it doesn't quite yet handle ...
0
votes
2answers
46 views

After setting something to Nothing it stays as what it was before?

I've got the following: For Each curCustomer As Customer In _customersEdit If (IsNothing(curCustomer)) Then Continue For End If 'other code If (curCustomer.SeatIDs(0) = ...
2
votes
1answer
197 views

How to handle nothing in a foreach loop

I have the following function: Public Sub performautowebrowserOperations() Try For Each link As HtmlElement In WebBrowser2.Document.GetElementsByTagName("input") 'sometimes throws a null ...
1
vote
2answers
187 views

Determine empty column with Nothing, = Nothing or IsNullOrEmpty

When you want to determine if a database column is empty (i.e not null but there is not any value in it) what are the differences between the below options: customerRegion varchar(10) NULL is ...
0
votes
1answer
60 views

Android App: Nothing was installed

I did a lot of searching, but couldn't find a solution for my problem. I have a complete Android app which runs perfectly in the emulator. The signing process works fine, but as I copy the .apk-file ...
3
votes
2answers
77 views

VB.NET: Is there a way to keep Nothing from defaulting to 0 for number types?

It's really bugging me that the VS 2010 IDE isn't barking at me for trying to pass Nothing through a method parameter that takes an user-defined enum. Instead, it's passing 0 through to the method. ...
2
votes
2answers
2k views

VB.Net Linq to Entities Null Comparison - 'Is Nothing' or '= Nothing'?

We have several projects in VB.Net, using .Net Framework 4 and Linq to Entities for many of our SQL queries. Moving to EF is a new shift for us (been using it for about 4-6 months) and has the ...
0
votes
2answers
432 views

Android emulator not displaying anything

I am new to android just installed Android sdk with eclipse & ADT plugin, these stuff are working fine, but my emulator doesn't display anything after 30 minutes. My target virtual device(AVD) ...
1
vote
2answers
420 views

C# COM Interop returning object of null causes 0x800A01A8 Object required

I'm writing COM wrappers that return an object, or null if the object does not exist. When calling from VBScript, returning null throws the error "Object required: 'ComObj.Prop2'" Code 800A01A8... ...
0
votes
1answer
208 views

Testing for NullReferenceException (Not Testing for Nothing)

I have a class someone else wrote for which I don't have the source code. It has a property UM that is backed by _UM, a string. In some circumstances _UM is Nothing. I would expect that UM would be ...
0
votes
2answers
474 views

Why to set an object to Nothing in the Finally block?

In this VB.NET code: Dim o as SomeClass Try o = new SomeClass 'call some method on o here Catch(...) ... Finally o = Nothing End Try Why is there a need to set o to Nothing? What if i ...
0
votes
0answers
452 views

passing nothing parameter in VB.NET (Object reference not set to an instance of an object)

I'm trying to pass "Nothing" to a parameter in Vb.NET ( using VS 2010 with everything to default ) The code is like this: Public Property status As statusEvidenta <DebuggerNonUserCode()> _ ...
0
votes
2answers
1k 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 ...
3
votes
2answers
838 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 ...
1
vote
2answers
13k views

VBA: Conditional - Is Nothing

There is an If condition in a VBA application as seen below: If Not My_Object Is Nothing Then My_Object.Compute When the code is run in debug mode, I found that the If condition returns a true even ...
1
vote
1answer
305 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 ...
2
votes
2answers
186 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] { ...
6
votes
1answer
391 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 ...
3
votes
3answers
1k 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: ...
10
votes
5answers
13k 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
3answers
712 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 ...
0
votes
0answers
91 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 ...
2
votes
2answers
2k 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 ...
0
votes
2answers
2k 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 ...
1
vote
3answers
4k 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 ...
0
votes
2answers
297 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 ...
6
votes
2answers
188 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 ...
1
vote
4answers
3k 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
4k 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 ...
0
votes
2answers
251 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 ...
12
votes
3answers
8k 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 ...
1
vote
6answers
6k 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 ...
10
votes
3answers
714 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 ...
0
votes
1answer
784 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++) { ...
11
votes
7answers
8k 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 ...

1 2