|
One one machine, everything compiles fine. On another machine, it complains about the -ly option when I use gcc to create the output file. If I remove the -ly option, then it makes the program, but then it runs differently. What's happening. How can I...
Started by Phenom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Bison might be more consistent..
YACC program options (and generated output) vary from OS to OS .
You should check to see if you have the same flex/bison versions.. .
|
|
Is there a way to select one whole column in a table to style differently? without adding class or id to all those td?
Started by jitendra on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
HTH
I think recent....
Here is the example:
$('#mytable tbody td:nth-col(4)');
This code shows how to select the fourth column of a table .
You can select a column in a table by using jQuery cell selector plugin .
You could try to use <col> element.
|
|
This might be a really trivial one.
Is File storage OS dependant ?
Why do text Files change when moved from Dos to Unix, is it that the Editor in Unix interpret certain characters differently or does the File itself change when moved from Dos to Unix ...
Started by Geek on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Java Class files are binary and always.
They differ between various operating system (plus a whole lot more).
|
Ask your Facebook Friends
|
Hello,
I'm using two different version of php on two different OS's.
One is 5.2.9 running on windows (wamp).
One is 5.2.6 running on CentOS 5 (lamp).
Regex involving group names works on the Windows one but not on the CentOS.
Such example would be /^field...
Started by Dave on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Most regex functions available in PHP derive back to libpcre, that library has had... .
Which regex functions do you use? PHP has ereg and preg , and the preg regular expression behaves like perls regular expression, and should behave the same on all OSes .
|
|
Hi there,
I am currently trying to move a web site from one server to another, one of the asp pages contains some vb script that looks like this:
Dim oSearch 'AS Object Dim strXML 'AS String Dim strXSL 'AS String Dim oRS 'AS ADODB.RecordSet Set oSearch...
Started by oookiezooo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This....
I would start looking at:
configuration files for ETHERNET_PL.CETHERNET_PL app on the machines - if it has its own config - compare them .
The problem could be in numerous areas of the system .
It appears that Microsoft XML is not finding the data .
|
|
I would like my elements generated from datatemplate to look differently depending on some properties in the model. For example I want to display the text in various colors or present different images or path drawing for each generatred element. I know...
Started by PanJanek on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This is what that would ....
You can steal the ItemTemplateSelector concept from the WPF playbook .
You would need to store color-picking logic into the converter .
Foe example, Forecolor="{Binding MyText, Converter=ColorFromText}.
You can use converters.
|
|
I have this table
tblStore
with these fields
storeID (autonumber) storeName locationOrBranch
and this table
tblPurchased
with these fields
purchasedID storeID (foreign key) itemDesc
In the case of stores that have more than one location, there is a problem...
Started by ChrisC on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The real question I have is why are users entering in stores ad-hoc? I can think of scenarios, but without knowing your situation it is hard to ... .
This is an issue with the processes around using the database design .
This is not a database design issue.
|
|
I have a Visual Studio 2005 C++ program that runs differently in Release mode than it does in Debug mode. In release mode, there's an (apparent) intermittent crash occurring. In debug mode, it doesn't crash. What are some reasons that a Release build ...
Started by Dr Dork on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Other things that can differ:
Memory allocation is handled differently with debug builds in the VS compiler (ie, writing 0xcc over experience the most common ....
Being caused by the stack being treated differently in release builds.
|
|
Why is this example of code behaving differently in c++ and C# .
[C++ Example]
int arr[2]; int index = 0; arr[index] = ++index;
The result of which will be arr[1] = 1 ;
[C# Example]
int[] arr = new int[2]; int index = 0; arr[index] = ++index;
The result...
Started by Ivan Zlatanov on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
It differently?
Well, suppose you were designing C#, and wished to make the language easy for C++.
|
|
IE6 rendering background .jpg image differently than IE7 and firefox? does any one have ever faced this situation. i can't share link
this is css of div #email-alertContainer {background: url(email.jpg) no-repeat left bottom}
Started by jitendra on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If your style is coming somewhere in middle of other styles, give and ending semi-colon to avoid unexpected result, this might be the reason too:
#email-alertContainer {background: url(email.jpg) no-repeat left bottom;}
Are you comparing IE 6 and Firefox... .
|