Tagged Questions

0
votes
1answer
74 views

Very weird errors when linking (LNK1000)?

Error 1 fatal error LNK1000: Internal error during IncrBuildImage MFC_Test MFC_Test Why do I get this weird error every 2nd time I compile?
0
votes
2answers
25 views

asp.net strange calculation result

I have a weird problem in asp.NET when calculating how many hours we need to invoice. In the below example, we have a total of 75,9 hours that need to be invoiced. These hours are spread over several …
0
votes
2answers
32 views

mail: failed to open stream: Permission denied ?!?!?!

I get this warning sending mails with php Warning: mail(1) [function.mail]: failed to open stream: Permission denied in /home/... using ssmtp and gmail as smtp PHP 5.3.1 nothing in the logs (no …
0
votes
1answer
10 views

.NET 3.5 WinForms: Changing the value in DataGridViewComboxBoxCell modifies other ComboBox controls on the form

I have a DataGridViewComboBoxColumn being programatically databound to a generic list. I also have another combo box on the form. Whenever I change the value of any of the ComboBoxes in the …
0
votes
1answer
95 views

UIImagePickerController weirdness …

Hello, all ... UIImagePickerController is easy to use, but i'm all of a sudden finding it exasperating when I didn't find it so before. What's happening is that sometimes the …
0
votes
1answer
124 views

WPF listbox : problem with selection

Hello. In my XAML file, I have a ListBox declared like this : <ListBox x:Name="lstDeck" Height="280" ItemsSource="{Binding Path=Deck}" > …
0
votes
1answer
138 views

Flash - Firefox issue

I realised that if I do have a flash object and do not include a 'wmode' attribute, I will not be able to overlay HTML because the flash will always play on top. But if I do include a …
0
votes
3answers
140 views

Access Violation Reading Location on std::set::erase

Hi. I have recently catched the following crash in my application: m_players[0].erase(plr); -- CRASHES HERE m_players[1].erase(plr); m_players is declared as: set m_players[2]; Visual Studio …
0
votes
1answer
24 views

Weird result comparing property values using reflection

Can someone explain why this is occurring? The code below was executed in the immediate window in vs2008. The prop is an Int32 property (id column) on an object created by the entity framework. The …
1
vote
1answer
133 views

The weirdest css issue I have ever seen

Below I have 2 css codes for a div, please note that the first one does not even have a div on the page or ANYTHING with it's name on it. I can also rename it to anything. Now where the weird part …
2
votes
3answers
148 views

Getting functions from another script in JS

I load this JS code from a bookmarklet: function in_array(a, b) { for (i in b) if (b[i] == a) return true; return false; } function include_dom(script_filename) { var html_doc = …
0
votes
1answer
100 views

fullcalendar javascript issue - its not showing the events in IE?

On my team website: http://www.berzerkers.org, head over to the Schedule. The calendar is supposed to have a few events listed - it works fine in Firefox, Chrome and Safari - but not in IE...what is …
0
votes
3answers
369 views

Why is the user.dir system property working in Java?

Almost every article I read told me that you can't have chdir in Java. The accepted answer to this question says you can't do it in Java. However, here's some of the stuff I tried : geo@codebox:~$ …
0
votes
3answers
152 views

Any Reason Why IsNumeric() Fails On A Number?

I currently have this line of code which has been working for the past 6 months: If IsNumeric(txtProductID.Text) Then ...do stuff Else Dim msg As String = "Error!" End If All of the sudden, …
1
vote
12answers
309 views

Why doesn’t this overflow?

Given this code: int x = 20000; int y = 20000; int z = 40000; // Why is it printing WTF? Isn't 40,000 > 32,767? if ((x + y) == z) Console.WriteLine("WTF?"); And knowing an int can hold −32,768 …

1 2 3 next
15 30 50 per page