Tagged Questions

0
votes
2answers
40 views

PHP scandir strange behaviour

ok, so what i'm trying to do is to scan the "previous" folder. $scanned = scandir(".."); foreach($scanned as $file){ if(is_file($file)){ print $file."<br />"; } } even though in my …
5
votes
9answers
343 views

C# Generics - Strange Interview Question

An interviewer argued me "Genrics are not completely Genrics", He provided the example (Parameters int k,int d are not generic) public static void PrintThis<T>(T a, T b, T c, int k,int d) { } …
0
votes
2answers
26 views

Unable to understand this strange MySql client behavior.

I'm not sure what's going on here with the line art output by /usr/bin/mysql here. The problem: I'm unable to redirect the line art (used in creating the table columns) to a file! First, I do this …
1
vote
2answers
89 views

layout falls apart on ie8 on some machines

Hi all, I issued a strange behaviour from IE8. We uploaded asp.net application on iis6. Everything works fine and layout is in place. But on my colleague machine, with same browser(IE8), layout falls …
0
votes
4answers
184 views

os.path.basename works with URLs, why?

>>> os.path.basename('http://example.com/file.txt') 'file.txt' .. and I thought os.path.* work only on local paths and not URLs? Note that the above example was run on Windows too .. with …
2
votes
3answers
1k views

Drawing a transparent button in C# Winforms

I'm trying to create a transparent button in C# (.NET 3.5 SP1) to use in my WinForms application. I've tried everything to get the button to be transparent (it should show the gradient background …
1
vote
1answer
212 views

Javascript for/in loops through properties, not indexes and returns strings.

Ok, I have this code: var room = [ { time: 0, people: 0 } ]; and then: time = 5; for( var i in room ) { if( room[i].time < time ){ spliceIndex = i + 1; } } console.log(spliceIndex); …
1
vote
1answer
101 views

VBA Code closes my separate .Net Winform App!?!?

The below code is the close routine of an Access App our BA wrote. When executed it is not only closing the Access App but my C# winform app as well, on the same computer. The Access app is named …
0
votes
2answers
213 views

Weird flex date issue

Flex is driving me CRAZY and I think it's some weird gotcha with how it handles leap years and none leap years. So here's my example. I have the below dateDiff method that finds the number of days or …
3
votes
1answer
90 views

cryptic comment in jdk source: // HD, Section 2-1

i just stumbled onto this comment. public static int lowestOneBit(int i) { // HD, Section 2-1 return i & -i; } in the 1.5 java source. what does this comment mean? is it a …
0
votes
1answer
121 views

Strange ‘Unknown Property’ error in grails

hi. i've just been giving grails a go, followed the most basic tutorial and that worked, but then moved onto the next most basic, where I create one class which has a many to one relationship to …
-1
votes
3answers
137 views

Strange behavior of javascript

Hi I'm using following function to goto a proxypage on a click of href. for first click to the href it works fine. but second click onwards the code does not call the …
2
votes
3answers
171 views

My script stops after a foreach loop

Hi, My script is acting strange. After a foreach loop, the script stops. I don't have any error, any warning or notice from Apache. This is the code: foreach($clientFact as $line) { $cliTemp1[] …
0
votes
1answer
245 views

Strange behavior using getchar() and -O3

I have these two functions void set_dram_channel_width(int channel_width){ printf("one\n"); getchar(); } void set_dram_transaction_granularity(int cacheline_size){ …
0
votes
4answers
3k views

The filename, directory name, or volume label syntax is incorrect, c#

i've written a console application deploy.exe which runs a batch script. Process p1 = new Process(); p1.StartInfo.FileName = AppDomain.CurrentDomain.BaseDirectory + "installer.bat"; …

1 2 next
15 30 50 per page