No announcements
Found 1653616 threads
-
0 Votes
KnownFolders::MusicLibrary::Path returns 0(NULL)!
The Library is not a file system object and doesn't have a path, so the nullptr return is expected.Answered | 1 Replies | 2855 Views | Created by AnryNetToo - Monday, March 5, 2012 9:32 AM | Last reply by Rob Caplan [MSFT] - Monday, March 5, 2012 9:50 AM -
0 Votes
division to return null when null else 0 if division occurs by 0
1 THEN [ItemNum] ELSE NULL END) AS FLOAT) ,0) / nullif(cast(count([ItemNum]) AS FLOAT),0) END AS 'value' FROM #sample b WHERE [Customer] LIKE 'abc%' AND ...Answered | 9 Replies | 541 Views | Created by msdnpublic1234 - Monday, May 4, 2020 2:05 PM | Last reply by msdnpublic1234 - Monday, May 4, 2020 8:28 PM -
0 Votes
Can we use KnownFolders for storing the files required for execution of app.
KnownFolders - DocumentsLibrary, MusicLibrary, PicturesLibrary, VideosLibrary, RemovableDevices, HomeGroup,Answered | 4 Replies | 1055 Views | Created by k_amol - Thursday, January 3, 2013 1:52 PM | Last reply by k_amol - Friday, January 4, 2013 11:21 AM -
1 Votes
Force Query To Return 0 not null
If the inner query you provided returns rows when executed seperately the whole query will also return results..Answered | 14 Replies | 1823 Views | Created by Joe Marx's - Wednesday, January 15, 2014 6:24 PM | Last reply by Jayakumaur (JK) - Wednesday, January 15, 2014 7:30 PM -
2 Votes
datatable.compute(count("col1"), "col1 Is Null") return 0
I want to get the number of rows where col1 is Null. datatable.compute(count("col1"), "col1 Is Null") always returns 0 That ...Answered | 2 Replies | 7810 Views | Created by topcan5 - Friday, May 15, 2009 9:12 PM | Last reply by Jason Kresowaty - Saturday, May 16, 2009 4:29 AM -
1 Votes
Access 2010 DMAX returns 0 instead of Null
"Returns 0" may mean that the highest ID in your record which meets the criteria is 0.Answered | 4 Replies | 7015 Views | Created by PEITZV - Thursday, August 4, 2011 5:05 AM | Last reply by Vanderghast - Monday, August 8, 2011 11:11 AM -
0 Votes
get all files in specific subdirectory of knownfolder
This will get you all the files in a specific subfolder: StorageFolder subfolder = await KnownFolders.PicturesLibrary.GetFolderAsync("Subfolder"); ...Answered | 1 Replies | 2272 Views | Created by HannesPreishuber - Thursday, June 14, 2012 7:00 AM | Last reply by Alejandro Campos Magencio - Thursday, June 14, 2012 9:18 AM -
0 Votes
Picturebox.ImageLocation returning NULL
In this case ImageLocation is just null.Answered | 6 Replies | 6283 Views | Created by Aruncode47 - Thursday, January 5, 2012 5:53 AM | Last reply by Aruncode47 - Thursday, January 5, 2012 11:50 AM -
1 Votes
return null
@outputStuff ------------ NULL */Answered | 8 Replies | 4597 Views | Created by nofriends - Wednesday, February 25, 2009 8:16 PM | Last reply by nofriends - Thursday, February 26, 2009 9:07 AM -
1 Votes
AppPool.Invoke() always returns null
0) return true; else return false; } static bool IsAlphaNumeric(char character) ...Answered | 7 Replies | 3484 Views | Created by Logan Therrion - Friday, August 24, 2012 1:19 PM | Last reply by Logan Therrion - Tuesday, November 27, 2012 7:52 PM -
0 Votes
Ensuring Calculated Measures return NULL rather than 0
Is there a way thru configuration where I can specify 0 as null?Answered | 2 Replies | 4010 Views | Created by MSDN Student - Sunday, June 28, 2009 7:58 PM | Last reply by MSDN Student - Monday, June 29, 2009 5:21 PM -
2 Votes
Looping function is returning null
The only way this could return null would be if one of the values passed to an XElement constructor were null I disagree.Answered | 3 Replies | 497 Views | Created by missy786 - Thursday, June 23, 2016 12:13 PM | Last reply by Wyck - Thursday, June 23, 2016 5:32 PM -
0 Votes
nullif on xml value returns null when value is 0
, 'INT') AS [FrequencyPerDay] The use of number function guarantees on missing element it returns NULL, then it has to be casted as xs:int because the number ...Answered | 4 Replies | 5900 Views | Created by db042188 - Wednesday, December 9, 2009 3:54 PM | Last reply by Plamen Ratchev - Wednesday, December 9, 2009 6:26 PM -
1 Votes
NULL vs '\0'
memset() takes the size in bytes, and sizeof returns the size in bytes.Answered | 8 Replies | 4144 Views | Created by _roberto_ - Thursday, December 1, 2011 5:01 PM | Last reply by _roberto_ - Friday, December 2, 2011 6:31 PM -
0 Votes
calculations using 0 in place of null
It takes a nullable value and returns that value or zero if it was null.Answered | 16 Replies | 956 Views | Created by Flyersfan9474 - Wednesday, November 26, 2014 3:23 PM | Last reply by Simon Jones [MSDL] - Wednesday, December 3, 2014 3:21 PM -
1 Votes
IS NULL AND 0 SELECT STATMENT
What if you wanted to exclude all 0 values but keep NULL values and all other non 0 values?Answered | 8 Replies | 3448 Views | Created by shimam - Friday, May 25, 2012 1:06 AM | Last reply by niteshmia - Monday, June 25, 2012 10:00 PM -
1 Votes
Why this returns null
Apart from the issue with NULL, be aware of that the behaviour of things like select @csv = @csv + coalesce( convert(nvarchar(max), ur_id) + ...Answered | 2 Replies | 4668 Views | Created by code_warrior - Saturday, September 18, 2010 5:09 AM | Last reply by Erland Sommarskog - Saturday, September 18, 2010 12:13 PM -
1 Votes
SP returns 0 rec
Also, instead of Value = case when @Value <> '' then @Value else Value end use ((@Value IS Not null and Value = @Value) OR ...Answered | 12 Replies | 2256 Views | Created by emmim44 - Wednesday, August 15, 2012 8:58 AM | Last reply by Erland Sommarskog - Friday, August 17, 2012 7:26 AM -
0 Votes
Return Null
In the last else case it will produce NULL (default).Answered | 2 Replies | 4593 Views | Created by Milli_22 - Monday, February 22, 2010 4:13 PM | Last reply by Naomi N - Monday, February 22, 2010 4:19 PM -
0 Votes
FileOpenPicker return null?
@Nguyen_Thanh_Liem, Actually I recommend that you don't show the path info which relies on this property.Answered | 9 Replies | 658 Views | Created by Nguyen_Thanh_Liem - Sunday, April 8, 2018 3:45 AM | Last reply by Barry Wang - Wednesday, April 11, 2018 3:12 AM - Items 1 to 20 of 1653616 Next ›
No announcements