Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
2k views

How would you do the equivalent of preprocessor directives in Python?

Is there a way to do the following preprocessor directives in Python? #if DEBUG < do some code > #else < do some other code > #endif
8
votes
7answers
3k views

How to disable a warning in Delphi about “return value … might be undefined”?

I have a function that gives me the following warning: [DCC Warning] filename.pas(6939): W1035 Return value of function 'function' might be undefined The function, however, is clean, small, and does ...
7
votes
5answers
4k views

VS2010 - Getting “type or namespace name could not be found” but everything seems ok?

I'm getting a "type or namespace name could not be found" error for a C# WPF app in VS2010. This area of code was compiling fine, but suddenly I'm getting this error. I've tried removing the Project ...
6
votes
2answers
97 views

What is the meaning of {$C PRELOAD} directive?

I found this directive declared in Controls.pas (and also in other units) and I'll be glad to know what does it mean. {$C PRELOAD} As far as I know $C means assertions control but what is the ...
5
votes
1answer
530 views

VS2010 Disable T4 Template Validation

How do you disable T4 Template validation . VS2010 is validating my T4 Template just now on ever part that has '#' (the sharp character). error CS1040: Preprocessor directives must appear as the ...
5
votes
1answer
541 views

Conditional compilation based on a compiler directive in Delphi 2009

Is there a way in Delphi 2009 to have a section of code conditionally compiled based on a compiler directive. Specifically, I'd like to have code in place that is only included if the range-check ...
4
votes
2answers
759 views

Can I make a preprocessor directive dependent on the .NET framework version?

Here's a concrete example of what I want to do. Consider the string.Join function. Pre-.NET 4.0, there were only two overloads, both of which required a string[] parameter. As of .NET 4.0, there are ...
4
votes
4answers
1k views

Can specific Delphi hints be disabled?

In Delphi, you can use compiler directives to disable specific warnings, such as {$WARN USE_BEFORE_DEF OFF} But when I tried to do that with a specific hint, whose underscore_style_name I got out ...
3
votes
2answers
542 views

When are ELF directives needed?

I'm working on an assembly program for an ARM Cortex-M3 based microcontroller (Thumb 2 instruction set), using GNU as. In some example code I find directives like .size, .section and .type which I ...
3
votes
1answer
129 views

Problems with preprocessor directive for ImgUrl property of Image in ASP.NET

I would like to parse QueryString and put the ID value to the ImgUrl path, I am trying this code: <asp:Image ID="imgImageNormal" runat="server" ImageUrl='<%# ...
3
votes
2answers
166 views

How to use a c-type array as an ivar?

I need a good old-fashioned 2-dimensional array of integers in my program, but no matter how I try to declare it as an ivar, and then use @property/@synthesize, I get one compiler complaint or ...
3
votes
8answers
3k views

C++ #define preprocessor

I need to know that does the #define directive in C++ declares global label? By global I mean visible in every file? I'm using Visual Studio 2008, (guess if that matters)
2
votes
2answers
82 views

Use #IF directive to detect unit test

I have this specific call in my code and I found the config needs to be different when running the full app as to when I'm testing using an integration unit test. Is there a way to check for a call ...
2
votes
3answers
207 views

C# Preprocessor directives

In C++ we can do this: struct { #if defined (BIGENDIAN) uint32_t h; uint32_t l; #else uint32_t l; uint32_t h; #endif } dw; Now, in C# not so simple. I have a ...
2
votes
3answers
261 views

Preprocessor directives

When we see #include <iostream>, it is said to be a preprocessor directive. #include ---> directive And, I think: <iostream> ---> preprocessor But, what is meant by "preprocessor" and ...
2
votes
1answer
801 views

“are you missing a using directive or an assembly reference?” but the namespace and reference are correct

I've got the following error when builing my project. The type or namespace name 'OvuMenu' could not be found (are you missing a using directive or an assembly reference?) But I have put a using in ...
2
votes
1answer
282 views

SSI escape HTML output

When i use SSI directive is there any way to escape variable with HTML entities? <META HTTP-EQUIV="Refresh" CONTENT="10; URL="/index.shtml?r=<!--#echo var="HTTP_REFERER" -->"> Thx in ...
2
votes
2answers
681 views

Visual C++: How to embed and display a compile time message in code?

Is there a way to embed a message in code that is displayed during compile-time when that piece of code is being compiled? The messages are diagnostic in nature and should not modify or abort the ...
1
vote
2answers
58 views

How is OpenMP directives handled by compiler

I was wondering how OpenMP directives are handled by compiler, such as gcc? For example, in this code int main(int argc, char *argv[]) { #pragma omp parallel printf("Hello, world.\n"); ...
1
vote
1answer
40 views

PHP HOST directive

I used [HOST=subdomain.mydomain.com] for some settings, but now I want to apply settings to everything except subdomain.mydomain.com. This is my php.ini file: [HOST=subdomain.mydomain.com] ...
1
vote
1answer
145 views

DirectX HLSL Include Directive Doesn't Work

The document: http://msdn.microsoft.com/en-us/library/dd607349(v=vs.85).aspx states that #include "foobar.fx" will look for that file in the same directory as the current effect file. It doesn't ...
1
vote
1answer
90 views

Is #endif GUARD_H good practice?

Consider this: #ifndef GUARD_H #define GUARD_H ... #endif GUARD_H rather than: #ifndef GUARD_H #define GUARD_H ... #endif // GUARD_H Often I see at the #endif an 'identifier' commented out but ...
1
vote
1answer
162 views

What is use of @outputCache directive in ASP.NET?

I think it has been related to caching concept but don't know how is it used.
1
vote
2answers
373 views

Option Compare Text in Classic ASP

This should be a TOTAL no-brainer, but I haven't really written any classic ASP code in like 10 years and just cannot remember how to do this, and can't find it on google. All I'm looking to do is ...
1
vote
1answer
305 views

PHP log will not ignore repeated errors with ignore_repeated_errors = On

The title says it all. Although I have instructed php to only log an error once - i see the error over and over again in my log file. Any ideas why this directive would get ignored? I've restarted ...
1
vote
2answers
231 views

ASP.NET - Placement of @ Register directive

In the past I have always placed my <%@ Register ... %> directive(s) at the top of my .aspx pages just below the @ Page directive. I recently found out that I can place this register directive ...
1
vote
2answers
570 views

Typedef inside/outside anonymous namespace?

In a .cpp file, is there any difference/preference either way? // file scope outside any namespace using X::SomeClass; typedef SomeClass::Buffer MyBuf; v/s namespace { // anonymous using ...
1
vote
2answers
1k views

documentation of gnu assembler directives

I'm trying to learn mips assembly at the moment. To that end, I wrote a very simple c program... int main(){} ...and compiled it on a mips machine with the -S option to gcc to generate assembly ...
1
vote
2answers
194 views

How to include a file depending on a request attribute using the include directive

I would like to include a file depending on a request attribute value. ${theme} -> themeA To sum up. I would like something like this: <%@ include ...
1
vote
4answers
415 views

Delphi and pointermath (possible bug in the documentation)

I was browsing the Delphi 2009 language guide. And found something strange. In the list of directives (not compiler directives) I found pointermath. RAD-Studio Reference Delphi Reference ...
1
vote
5answers
1k views

c# Pre-processor directive scope

Im looking to use: #define and #if to allow me to simulate potentially absent hardware during unit tests. What are the rules for useing the #define statements? i.e. what is its default scope? ...
0
votes
0answers
11 views

enabletheming for multiple pages at once?

I am working in VB.net 2010. The pages all inherit from a base page, which is a class (with vb extension, not aspx). In the base page code I have: Protected Overloads Overrides Sub OnPreInit(ByVal e ...
0
votes
1answer
84 views

.NET dll not appearing in using directive

For most .NET dlls, you can add them as a reference, and then "import" them into your code by means of using directive (e.g. using mydll;). I have a .NET binary compiled with MSVC which I can add as a ...
0
votes
2answers
89 views

Preprocessor Directive “Using” (C++)

From my previous knowledge in learning C , i know that preprocessor directive like #include , #define is ain't a statement that's why as the name implies , it is process before the program is compiled ...
0
votes
1answer
58 views

Change the arg_separator.output separator directive in php.ini

Can anybody tell me what happen if i change the arg_separator.input directive in php.ini file and set it to 'a' and my form have two text fileds named "name and age" . Then if i submit it then url ...
0
votes
1answer
38 views

Why does the <%@ include directive render correctly in IE but not Firefox or Chrome(latest versions)

I'm trying to include a html file using the following syntax: <%@ include file="path/to/file.html" %> But I encounter problems when browsing the page using Firefox(latest) and Chrome(latest) ...
0
votes
0answers
47 views

working around for code-behind control-directive in asp.net

I have created a website in dnn, which has a blog module installed on it, now the blog module has a control known as Viewblog.ascx, which has a codebehind in the Control-Directive, now when I add any ...
0
votes
1answer
153 views

Use Include directive on JSP Method or function

I want to use something like... FileOfFucntions.jsp <%! public void Function(String Armugents) { try{ Out.println("Testing: "+Armugents+"<br/>"); %><%@ include file ...
0
votes
3answers
145 views

“precompiler directive” “preprocessor directive”

I was wondering if "precompile(r) directive" and "preprocessor directive" are the same thing? I am not familiar with the former, but just heard of it and found a little information about it on the ...
0
votes
1answer
117 views

MIPS Instruction in Data Directive

I'm trying to figure out what this program does, but I have a feeling MARS isn't handling the .data directive correctly. What is stored in the data segment if an assembly instruction is given under ...
0
votes
2answers
29 views

Changing PHP Directives on Apache Server

I have an Apache web server, but by default display_errors is set to '0' I can change that manually on my site with ini_set but I want this to effect all my sites, and not have to put that on every ...
0
votes
2answers
38 views

Handle a directive exception

I have a code where it uses #import to get a .dll from somewhere in the computer. Now I'm supposed to use the program in computers that either have this file, or doesn't. It won't even compile if it ...
0
votes
1answer
95 views

iPhone assembly GAS directive declare a extern function

In a assembly code for iPhone GCC4.2, how to delare a extern function? Example: _main: bl myfunc bx lr We know if a common compiler, we can use "import myfunc" or "extern myfunc" to ...
0
votes
6answers
169 views

C# if directive

Can I write in code to set the variable to true or false depending on a button I pressed? See example below. If not, what other ways are there to achieve similar effects? Cos I have already marked ...
0
votes
1answer
35 views

Is there any performance overhead if I use a lot of <%@ Register directives on markup?

Some of my pages have a lot of <%@ Register directives for controls that are no longer used neither on markup nor dynamically created. I'm wondering if I would benefit or gain some performance if ...
0
votes
2answers
327 views

C# The type or namespace name could not be found

I have a problem that has been driving me nuts. I have 2 ASPX pages in which the parent use Server.Transfer() function. The parent is called Submit.aspx whereas child is called Review.aspx In ...
0
votes
4answers
4k views

C# Are you missing a using directive or an assembly reference?

This error message started appearing during compilation after I deleted the entire code for the tabPage1_Click event behavior. It didnt have any body code in it, because I accidentaly clicked on it ...
0
votes
2answers
183 views

Is there an online manual of C++ preprocessor directives?

Is there a place where I can learn what all the different preprocessor directives in the C++ standard libraries do? Like a site where it would break down all the different things you could do with ...
0
votes
1answer
101 views

allow only specific ips to access site and allow all to access specific file

I have this configuration in my httpd.conf <Directory /> AllowOverride none Order Deny,Allow Deny from all Allow from 66.220.144.0/20 69.63.176.0/20 </Directory> ...
0
votes
1answer
21 views

Are there any resources on the correct ordering of Apache .htaccess directives?

I was tweaking my .htaccess file for the first time, and ran into the problem where my custom 404 page would not load because I placed the Options -Indexes directive after the ErrorDocument 404 ...

1 2