Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

48
votes
5answers
8k views

A concise explanation of nil v. empty v. blank in Ruby on Rails

I find myself repeatedly looking for a clear definition of the differences of nil?, blank?, and empty? in Ruby on Rails. Here's the closest I've come: blank? objects are false, empty, or a ...
11
votes
3answers
19k views

How to get rid of blank pages in PDF exported from SSRS

I have a SSRS report. When i tried to export to PDF it was taking 4 pages due to its width., where the 2nd and 4th pages were displaying one of my field from the table. So i tried to set the layout ...
7
votes
4answers
122 views

C# Window gets blank when busy -> Progressbar? But how?

I have a program which does some copy jobs (via File.Copy) that could last a few minutes. When the user brings another window to foreground in this time the program window gets blank since it doesn't ...
6
votes
10answers
7k views

Accessing Excel Spreadsheet with C# occasionally returns blank value for some cells

I need to access an excel spreadsheet and insert the data from the spreadsheet into a SQL Database. However the Primary Keys are mixed, most are numeric and some are alpha-numeric. The problem I have ...
4
votes
2answers
2k views

Compile & Fill Jasper Report - XML datasource

I am hoping someone can tell me why the code below is creating an empty pdf file every time...? I am trying to compile, fill and run the "xmldatasource" sample project that ships with JasperReports ...
4
votes
3answers
807 views

Open link in new window with Jquery

I am trying to open a few links in a new window using Jquery rather than _blank so my html remains valid. My code looks like this: $(document).ready(function() { ...
4
votes
5answers
884 views

LaTeX blank after number and before text

how could i make a blank after the number in my footnotes? In a general way, means for ALL footnotes! Thanks for helping! Example: good: 1 Hello World bad : 1Hello World
4
votes
3answers
3k views

How to get number of chars in string in Transact SQL, the “other way”

we faced very strange issue (really strange for such mature product): how to get number of characters in unicode string using Transact-SQL statements. The key problem of this issue that the len() TSQL ...
4
votes
4answers
3k views

How do I include empty rows in a single GROUP BY DAY(date_field) SQL query?

I'm using MS SQL Server but welcome comparitive solutions from other databases. This is the basic form of my query. It returns the number of calls per day from the 'incidentsm1' table: SELECT ...
3
votes
2answers
267 views

How to create a blank png image in vb.net

This seems so trivial, yet I cannot find where or how to do this. i need to be able to create on the fly blank png in a WPF project. Size of the png does not matter, I just need to be able to create ...
3
votes
1answer
150 views

In Ruby CSV, how to write a blank ,, instead of ,“”, to a file?

Ruby 1.9 version of csv header %w[first second third] data = ["column one",,"column three"] CSV.open("myfile.csv","w") do |csv| csv << header csv << data end In this simple ...
3
votes
1answer
328 views

Rails Object#blank? vs. String#empty? confusion

Rails docs have this information for Object#blank? An object is blank if it’s false, empty, or a whitespace string. For example, “”, “ “, nil, [], and {} are blank. But the source for that ...
3
votes
3answers
542 views

How to check if a uiimage is blank? (empty, transparent)

which is the best way to check whether a UIImage is blank? I have this painting editor which returns a UIImage; I don't want to save this image if there's nothing on it.
3
votes
3answers
520 views

add a space char in Typoscript

I would like to add a blank/whitespace in TypoScript It concerne a "More"-link in tt_news. Here's the HTML I have : <p class="bodytext">blablabla<span ...
3
votes
3answers
409 views

How to check if Linux console screensaver has blanked screen

is there a way to check programmatically (via ioctl(), etc.) or by reading a file in /sys, /proc or /dev) whether the screen has been blanked by the Linux console screensaver? Thanks and best ...
3
votes
1answer
1k views

Cloning git repository from svn repository, results in file-less, remote-branch-less git repo

Working SVN repo I'm starting a git repo to interact with a svn repo. The svn repository is set and working fine, with a single commit of a basic README file in it. Checking it out works fine: ...
3
votes
2answers
227 views

Does model.CharField('blank=False') work with save()?

I've a model like this with django 1.1: class Booking(models.Model): name = models.CharField(max_length=100) By default, I'm reading that both 'null' and 'blank' are False. So with a test like ...
3
votes
2answers
3k views

How to remove DataGrid's blank row when binding to a ObservableCollection<T>?

I'm getting nuts here with this: ObservableCollection<Employee> list = new ObservableCollection<Employee>(); dgEmployees.ItemsSource = list; When you debug the list variable, it's empty ...
3
votes
4answers
3k views

awk insert blank line every n lines

Probably easy to answer for you guys: How can i get awk to put a blank line into my file every n lines?
2
votes
1answer
128 views

Excel VBA Export to text file. Need to delete blank line

I have a workbook that I export to a text file using the below script. It works fine but when I open the text file there is always a blank line at the end that caused me issues with another script I ...
2
votes
1answer
59 views

Magento: Cleaning up my themes, removing blank.html

I'm justing sorting and optimizing my Magento 1.5.1.0 theme and I'm asking myself, for what purpose this code snippet is and whether I can safely remove it. Talking about this one: <!--[if lt IE ...
2
votes
6answers
157 views

Can I use jquery to blank textarea fields or ajax like input boxes?

I always use this snippet in my work: <input type="text" onblur="if (this.value=='') { this.value='your email'; }" onfocus="if (this.value == 'your email') { this.value=''; }" value="your email" ...
2
votes
1answer
1k views

VisualStudio Report Viewer not rendering report body in Chrome

I'm aware that Chrome is not supported - http://msdn.microsoft.com/en-us/library/ms156511.aspx for the Report Viewer. The solution here has not worked for me ReportViewer problem in google chrome ...
2
votes
4answers
112 views

Detecting if a string is just made up of spaces?

What's the most efficient/safest way to check if a string in C is made up only of spaces? Do I need to write a function myself to check or is there one in string.h that I can use?
2
votes
3answers
3k views

Magento How to debug blank white screen

I have an error in my Magento backend that results in a blank screen (WSOD). I have set errors to on in admin but there is nothing being created in var/logs/. (I have checked permissions for that ...
2
votes
2answers
1k views

Openlayers Google Maps layers remain blank in Internet Explorer

I've created a map page using OpenLayers. The user can select a specific thematic overlay (noise levels) by period, noise source and year. I wanted to allow the user to choose a base (or background) ...
2
votes
2answers
2k views

Delete blank rows from CSV using Python

I have a large csv file in which some rows are entirely blank. How do I use Python to delete all blank rows from the csv? EDIT Ok, after all your suggestions, this is what I have so far import csv ...
2
votes
4answers
900 views

Problems with <form> in Safari - only first click will POST to _blank target

I am using PHP to generate 10 forms on a page which attach an image as the button and POST hidden values to a _blank target. This works ok in Firefox, all 10 buttons submit and post to a new window. ...
2
votes
5answers
2k views

Android AVD not showing anything. only “ANDROID” in the middle of the screen

I am an Android Newbie! please help. I have been following googles introduction tutorial and managed to install everything with no problems. but whenever i try to run the HelloAndroid example the avd ...
2
votes
1answer
458 views

JW Player Shows Blank Video In Explorer After Hiding and Showing

In Internet Explorer 7 and 8 (WinXP/Flash 10), if I play my videos using the JW Player in the slider they work. However if I move to the next slide and then return to the original slide the video is ...
2
votes
4answers
1k views

Creating a Cocoa application without NIB files/fully pragmatic

Yes, I know this goes against the whole MVC principle! However, I'm just trying to whip up a pretty trivial application - and I've pretty much implemented it pragmatically. However, I have a ...
2
votes
6answers
4k views

Android WebView shows a blank page

Trying to create a WebView but it only shows a blank/white page. I have followed several examples and they all say that work with this code... Here is my code: import android.app.Activity; import ...
2
votes
3answers
3k views

Java properties: Is there a way a key can include a blank character?

we are getting properties, we can not influence, out of a database and want to access them by a key/value mapping. We are facing the problem, that one of the property keys includes a blank character. ...
2
votes
2answers
1k views

Blank when NaN in jqGrid cells

How to set blank instead of NaN in jqGrid cells ? Using formatter ? Is there an example?
2
votes
5answers
3k views

NuSOAP PHP Web Service

I am using NuSOAP to try to consume a Web Service built in Java. I have this code so far: <?php require_once('lib/nusoap.php'); $wsdl="http://localhost:8080/HelloWorldWS/sayHiService?WSDL"; ...
1
vote
0answers
75 views

Mapview: blank background issue

I would like to inform an unusual scenario regarding mapview. I guess this is not related with API key. I am using mapquest API for an android application. When I load a map inside a mapview it shows ...
1
vote
1answer
47 views

I need remove a blank space in anchor

whan i use img element in anchor I always have a trouble with blank space on bottom... can someone solve this problem? I don't want that blank space... here is example (i highlight that blank space ...
1
vote
1answer
77 views

Retrieving friends' interests, political

I have tried in vain to find the right answer. I have tried: try{ //$fql = "SELECT name,political,activities,interests,movies FROM user WHERE uid = me() OR uid IN (SELECT uid2 FROM ...
1
vote
1answer
132 views

RGBImageFilter Produces All Black Empty Images

I'm trying to use the RGBImageFilter to produce a simple transparency effect on an image, however during testing I found that all of my filtered images come out as blank with black backgound. I ...
1
vote
3answers
135 views

Dynamically remove blanks from a range of excel cells

I have a named range of data, called 'data'. I'm trying to find a formula or array formula that will return data in a new range of cells, but will all the blank rows missing. i.e. data is: row ...
1
vote
1answer
198 views

CakePHP Session Problem, Not displaying on first refresh

I am using CakePHP 1.3 latest version for my Administrator / User login. I am facing a very weird issue, whenever I am trying to login using Auth, on first attempt it is not displaying me any ...
1
vote
4answers
283 views

Notepad++ - How can I replace blank lines

I have a text file with a thousand lines of numbers like so: 402 115 90 ... As you can see there is a blank line in between each number that I want to remove so that I have 402 115 90 ... ...
1
vote
2answers
202 views

How do I avoid a black screen before startup?

I created a loadpage with a background and a progress bar and when it finishes loading, it starts the main class but the loading screen is not showing up. It is just a black screen while it loads and ...
1
vote
5answers
100 views

If input value is blank, assign a value of “empty” with Javascript

So I have an input field, if it's blank, I want its value to be the words "empty", but if there is any value inputted, I want the value to be the inputted value. I want to use javascript for this, any ...
1
vote
2answers
127 views

Browser shows a blank page because of <?xml … ?> in the beginning of the html-file

Firstly I want to tell you a bit about the background. I've got a little problem here and it seems like it began after a server attack that we have had here last week. We were using an old webshop ...
1
vote
1answer
44 views

How to distinguish between two Blank Nodes in RDF?

I am having difficulty understanding a passage from w3.org. The confusing passage may be an error, or I may just be confused. The following is Section 6.6 of the RDF Concepts Specification, 6.6 ...
1
vote
5answers
343 views

CodeIgniter 2.0.2 syntax error blank page

CodeIgniter 2.0.2 syntax error blank page i have CodeIgniter 2.0.2 (CI) and its annoing, that when i write lots of code and then just get blank page. Hard to debug without error. i got error ...
1
vote
5answers
148 views

Open all links in new tabs with jQuery

I have some links that are placed in my page dynamically via JSON and have no way to directly edit them. I want to force all links to open in new tabs, ala target="_blank" Thought this would work.. ...
1
vote
3answers
135 views

Android: How to add a ImageView to a TableRow in code

I'm tryin to add a ImageView into a TableRow in java code, but it always shows in blank. The image seems to be there, but it is completely white. This is my code: TableRow newRow = new ...
1
vote
0answers
229 views

Microsoft asp.net chart tool does not display the chart on the live server but works fine on my local, how do i solve this problem?

I am trying to use the microsoft Charting control on a shared server and have inserted the following: In my config file i have: http://go.microsoft.com/fwlink/?LinkId=169433 --> ...

1 2 3 4