1
vote
2answers
17 views
[SharePoint] - Document archive warnings
Hi all
Is there an out of the box solution to check the validity of documents? Let's say when a document has been in a document library for 1 year, the author should get a warning …
1
vote
1answer
28 views
Why do I need to type-cast an object when sending it an “isKindOf:” message?
If I'm trying to find out if an object is a type of a certain class (or any of that class's descendants), it seems that I should use "isKindOf:"
if ([foo isKindOfClass:[bar class] …
1
vote
3answers
102 views
suppress C++ compiler warning from a specific line
I have the following warning:
"controlling expression is constant"
because of assert statement like this:
assert(... && "error message");
how can I suppress warning fr …
0
votes
1answer
90 views
C - Excess elements in array
Hey,
I am learning C and I am playing around with pointers and arrays. I am trying to create an array of pointers with the code below:
const int NUM_P = 50; // Line 10
char *pS[ …
0
votes
1answer
22 views
Module ‘eAccelerator’ already loaded php warning
I'm getting this PHP warning in my error_log and want to get it fixed. I'm told it is loaded within php.ini which I've verified as well as a bunch of configuration settings for th …
0
votes
7answers
183 views
Why warning in C and can’t compile in C++?
Why does this code
int (*g)(int);
int (*h)(char);
h = g;
In C, give me such warning when compiling:
'warning: assignment from incompatible pointer type'
In C++, can't be able …
0
votes
3answers
119 views
Why does my Perl script complain about “Global symbol “$random_name” requires explicit package name”?
Hello,
I'm learning Perl and at the same time I'm creating a program to my family events, but when I'm trying to use a array with a randomization process I'm getting some errors, …
0
votes
2answers
22 views
C# Mark Properties in foreign assemblies as obsolete?
I'd like to mark some specific properties in a foreign assembly that i'm referencing as obsolete. Is it possible to do so?
Or is it possible to get a compiler warning/error if a sp …
1
vote
2answers
97 views
Why does Perl warn me about using pseudo-hashes?
Perl is warning me about using pseudo hashs in my program:
Pseudo-hashes are deprecated
How do I convert the following code so that is does not use pseudo hashs
foreach …
4
votes
1answer
1k views
Disable DTD warning for ant scripts in eclipse?
I'm using Eclipse Ganymede. Everything works fine, but I have an anal-retentive yearning for a warning-free Problems tab. Right now it (correctly) complains about my ant scripts: …
0
votes
1answer
220 views
XCode warning : Initialization makes pointer from integer without a cast (while trying to assign a value to a NSNumber)
Hi all,
I'm stuck with a warning in Xcode while trying to develop a small iPhone App.
I've got this piece of code in Xcode :
NSNumber *randomNumber = arc4random() % [array count] …
0
votes
2answers
259 views
C# could not load file or assembly…system cannot find file specified
Writing a routine WinForms app that references a few custom libraries written by myself. I am building one particular library which depends on another library and, when I do, I get …
1
vote
2answers
63 views
How to disable warning in xcode on specific line ?
I've got a call like this [Class method] and a warning saying that Class may not
respond to "method" message.
The "method" message does not indeed exist but my code use unknown me …
0
votes
4answers
171 views
How do I get rid of this warning?
I am getting the following warning from my Java code:
Lexer.java:591: warning: [unchecked] unchecked conversion
found : java.util.ArrayList
required: java.util.ArrayList<java …
0
votes
2answers
145 views
mysql now() Incorrect datetime value for column - error code 1292
When doing simple maths using now() ...
mysql>
select cdrstatuschangets from cdrs where ( cdrstatuschangets < now() - 10 );
+---------------------+
| cdrstatusc …
