|
|
stackoverflow.com
- 2012-06-16 13:51:50
- Similar
- Report/Block
I want to pass a variable defined in an include file, identity.php , to the parent file, which I'll call parent.php . When I include identity.php via it's relative path, the variable is available to the parent.php file. When I include identity.php via it's absolute path (to the application root), it doesn't work. Why is this? File: iden...
|
|
|
stackoverflow.com
- 2012-05-14 22:04:48
- Similar
- Report/Block
I create a header file named variables.h to store all the variables to be used in the program.Then i cropped the program into seperate prototypes .h files and .c files. I decided to create a variables.c file to define the variables.In variables.h they have the extern keyword and in the c file they are defined.However when i include "varia...
|
|
|
stackoverflow.com
- 2010-09-17 12:28:10
- Similar
- Report/Block
Im trying to write a powershell script which will execute sqlcmd.exe to run a sql script. The script contains a SQLCMD variable which I want to pass in on the command line via sqlcmd's -v switch. The problem is that powershell is doing something weird when I pass a path as the value of one of my variables which in turn causes the SQL scri...
|
|
|
|
stackoverflow.com
- 2010-11-05 07:03:34
- Similar
- Report/Block
Looking for advice on passing variables from page to page without using QueryString. The web crawlers such as google get caught up on the querystrings found in a URL. I'm trying to get away from using it. Is there another suggested method for passing the variables? I've thought about using session variables, but this is just for simpl...
|
|
|
stackoverflow.com
- 2012-04-20 21:59:12
- Similar
- Report/Block
I have some code that references a filename. On the server, this reference is relative to my directory. When I'm running tests, though, the relative root doesn't seem to be set - only absolute paths, starting at the root of my local HD, actually find the files. I'm testing in the context of an AppEngine LocalServiceTestHelper , which ret...
|
|
|
stackoverflow.com
- 2012-04-14 00:14:22
- Similar
- Report/Block
I do have a quick question to be hammered out. Seems like simple but I been trying all the ways but couldn’t get through. In SDL Tridion, Dreamweaver template, I have to set a relative path to my image in Page Template. Tridion produces output as below when I do have code like this in DWT. Input. (I have removed open and close tag of imag...
|
|
|
stackoverflow.com
- 2012-03-11 16:09:25
- Similar
- Report/Block
Now, I'm using ede to manage my cpp project, and I try to find a file in my project quickly, but I failed. I used ede-find-file to find "db.h", it sits in "d:/projects/leveldb/include/db.h", unfortunately, it said cannot find. My config is put below (setq leveldb_root "d:/projects/leveldb/") (ede-cpp-root-project "leveldb" :file (con...
|
|
|
|
stackoverflow.com
- 2012-07-14 10:57:38
- Similar
- Report/Block
I'm stumped trying to link the SDL libraries against a new C++ Win32 Console application in MVS 2010. I downloaded the latest SDL development libraries, and did the usual steps: Added the includes to the include path ( ) [This works fine, as MVS finds the #include files] Added the library path for SDL ( ) [This seems to work fine, as remo...
|
|
|
stackoverflow.com
- 2012-04-05 02:25:57
- Similar
- Report/Block
I'm working on the core of my engine and i'm having a serious link issue in Microsoft Visual c++ express. To simplify things, what is causing problems is these two header files and each header file has a namespace with a different identifier. Both of these include files actually include each other. No error is obtained from compiling, how...
|
|
|
stackoverflow.com
- 2012-03-26 13:56:23
- Similar
- Report/Block
I have some image with relative path: <img src='pictures/001.jpg'> url is: mypage.com/gallery/pictures/001.jpg How can I get a path to containing folder im form: home/mypage/public_html/gallery/pictures / It's no matter to do it with Jquery or PHP...
|
|
|
stackoverflow.com
- 2012-03-02 07:59:35
- Similar
- Report/Block
I have the following code: <span> <svg height="32" version="1.1" width="32" xmlns="http://www.w3.org/2000/svg" style="overflow: hidden; position: relative; left: -0.0166626px; top: -0.983337px;"> <desc></desc> <defs/> <path style="" fill="#333333" stroke="none" d="M15.985,5.9...
|
|
|
stackoverflow.com
- 2012-03-23 18:31:04
- Similar
- Report/Block
I've separated my large program into a number of .cpp files, e.g. display.cpp, gui.cpp, display.h, gui.h, etc... These files are separated just for readability, not necessarily indicative of any sort of dependency scheme. Initially I had a lot of trouble getting them to compile, because functions from display will call functions from gui,...
|
|
|
|
stackoverflow.com
- 2012-03-31 07:43:24
- Similar
- Report/Block
Functions return the position of master well in python. def myPath(): for root,dirs,files in os.walk(dir): for fn in files: path = os.path.join(root, fn) return path return path return path ls /home/bb/C/ a.out main.c simple_write t.c Three positions "return" is not what I want. I want to...
|
|
|
stackoverflow.com
- 2013-04-25 02:55:05
- Similar
- Report/Block
Hello again stackoverflow! I've had my professor assign me a program that would try and take user input for credit card info, send it to a server with the database in a upd datagram and print what is returned. I think I am almost done but one of my perrors is going off when trying to send the info to the server. The perror is Mismatch in...
|
|
|
stackoverflow.com
- 2012-04-05 06:31:40
- Similar
- Report/Block
I am using Sass & Compass Framework for compiling my CSS. I am working in my local environment. When I dealing with the Compass Sprite image generation, I am encountering two different problems. I want to set the layout to horizontal or smart or anything other than default vertical but I could not. I checked the syntax and I am using...
|
|
|
stackoverflow.com
- 2012-07-23 18:31:54
- Similar
- Report/Block
I have a Qt subdirs project with the following structure: ExternalQtProject QtSubdirProjects - GUI - WebService WebService contains from the external Qt project (.pro file in WebService) LIBS += -L<path to ExternalQtProject> LIBS += <some ExternalQtProject .obj files> uses the web service (.pro file in GUI): LIBS += -L&l...
|
|
|
gamedev.net
- 2013-05-25 20:49:27
- Similar
- Report/Block
I wrrite programm in C++ and use g++. There are a few files. main.cpp - wherein two include directives, and function main,which return 0 is include #include #include // our header from NVIDIA I wrote makefile: CC = g++ EXE = nvTest DIR1 = -I"C:\Program Files (x86)\NVIDIA Corporation\NVIDIA OpenGL SDK 10\common\include" DIR2 = -I"C:\Progra...
|
|
|
stackoverflow.com
- 2012-03-02 21:49:11
- Similar
- Report/Block
I just got came to know that if we include anything in .pch file, we don't have to include later in other files. Now I am thinking of adding all of my files in it so that I don't have to include them in other files and create a mess at the start of each file. But I was thinking if this is a good practice? If not, why? And if good, why?...
|
|
|
|
stackoverflow.com
- 2012-04-12 16:48:07
- Similar
- Report/Block
I created a path variable in eclipse and link a jar file using this path. Then adding this file to the build path. On my PC it's working fine and but it is giving following error on others PC's. dialog box appear with message "Failed to load Main-Class manifest attribute from " Basically we have different projects in eclipse that uses the...
|
|
|
stackoverflow.com
- 2013-04-17 11:25:55
- Similar
- Report/Block
I want to import a test gui I made in glade into a project in code::blocks. I followed a guide to import it as an xml into the project, whether that works or not, I bumped into a problem, code::blocks can't find the header file , which is located at /usr/include/libglade-2.0/glade/glade.h. If I set the include path to that absolute path,...
|
|
|
stackoverflow.com
- 2012-04-03 16:10:24
- Similar
- Report/Block
I have a project folder called topfolder and I want to find all files in all subfolders that match a certain pattern, e.g. when the folder contains anywhere in its name, I want to list all files inside it. I tried something like: gci .\topfolder -rec -filter *foo* but it has two problems: Only files actually containing will be listed (...
|
|
|
|
stackoverflow.com
- 2012-03-05 22:07:58
- Similar
- Report/Block
I have a ClassLibrary with a C# Class and a folder with resx files. I have to read a specific Resx file by culture within the C# class. I tried the following code, but I get this error: 'The relative virtual path is not allowed here'. HttpContext.GetLocalResourceObject("Fold er.ResxFileName", "ResxKey", new CultureInfo("it-IT")) How do I h...
|
|
|
stackoverflow.com
- 2012-04-04 22:34:23
- Similar
- Report/Block
I am looking for a way to use the full path of the *.scala file that is executed by scala /path/to/file/file.scala The reason is that within my script I would like to use paths, which are relative to the location where file.scala is saved. So, say I want to call /path/to/file/file_second.scala from inside of file.scala while calling file.
|
|
|
stackoverflow.com
- 2013-05-04 16:03:27
- Similar
- Report/Block
There are several Javascript files, organized in folders Scripts/folder1, Scripts/folder2, ... With requirejs.config.baseUrl a folder is defined as the default, for example Scripts/folder1. Then in requirejs.config.paths some files are addressed with just the filename, and some are addressed with a relative path (like ../folder2/blabla).
|
|
|
|
stackoverflow.com
- 2012-02-28 02:26:30
- Similar
- Report/Block
I'm using JavascriptMVC (you don't need to know it!) and their library "steal" that manages file dependencies. I'm a beginner with javascript and there's something I don't get with namespaces; I need some global variables intialized by PHP, these variables will be used in a lot of other JS files, that's why I want to make them global: ind...
|
|
|
stackoverflow.com
- 2009-12-18 05:39:04
- Similar
- Report/Block
I'm trying to port an old program I wrote for class from KDev in Ubuntu to Windows Visual Studio 2008 using Cygwin as a personal learning exercise. I have the include path configured to include C:\cygwin\usr\include but it doesn't read the .h files properly. Namely I'm curious as to how one would go about using unix sockets.h functional...
|
|
|
stackoverflow.com
- 2012-03-21 09:33:55
- Similar
- Report/Block
I'm using Monodevelop 2.8.6.5 and trying to run unit tests constantly returns an internal error: `ArgumentException`: Illegal characters in path at System.IO.Path.CheckInvalidPathChars(str ing) at ... at ... at MonoDevelop.NUnit.XmlResultsStore.GetRoo tRecord(string configuration...) Basically the problem is that MonoDevelop.NUnit.XmlResul...
|
|
|
|
stackoverflow.com
- 2012-03-31 10:35:18
- Similar
- Report/Block
I want to call methods and get/set instance variables on an instance of a given python class from another process. All of the class methods and variables accept/return simple python dictionaries or lists (specifically it is the P4Python API - I can't use the perforce c++ interop and need the option to call this from another host) I'd li...
|
|
|
stackoverflow.com
- 2013-02-27 11:58:44
- Similar
- Report/Block
I thought a general rule is that, whenever a div foo has position: relative , then if none of the parent and ancestor has any non-static position (so need to have one of relative, absolute, or fixed ), then, the div foo now will be position relative to the overall document. But in the following page: http://jsfiddle.net/4RcEn/6/ some...
|
|
|
stackoverflow.com
- 2012-03-29 04:14:55
- Similar
- Report/Block
Should ZF and PHP have the same path to include in php.ini, or can they be put in separate directories? This is the include path in my php.ini: ;Windows: "\path1;\path2" include_path = ".;C:\xampp\php\PEAR;C:\ZF\library\" I couldn't find any Zend documents that specify which, copying ZF\library to xampp\php\PEAR or the entire ZF director...
|
|
|
|
stackoverflow.com
- 2013-02-26 18:56:07
- Similar
- Report/Block
I am trying to run the below against multilpe servers using Powershell 3.0 but for some reason I am getting back that the path does not exist...even though it does? Any ideas? CODE: clear $computer = Get-Content -path c:\temp\servers.txt foreach ($computer1 in $computer){ Write-Host $computer1 Get-Content -Path '\\$computer1\C$\Program Fi...
|
|
|
stackoverflow.com
- 2013-04-17 09:01:12
- Similar
- Report/Block
In a site root I have the following folders and files: File includes/scripts.php includes links to all css/js files needed for the rest of the pages to function. When including scripts.php from any file in the site root (ex cart.php) all paths work fine. But when including from within a folder (ex. /admin) the paths are not correct, obvio...
|
|
|
stackoverflow.com
- 2011-11-29 14:52:03
- Similar
- Report/Block
I am trying to include static cpp library in android. This library is already compiled( on mac os ) and i have its include files. Here is my Android.mk file LOCAL_PATH := $(call my-dir) include $(call all-subdir-makefiles) include $(CLEAR_VARS) LOCAL_MODULE:= utils LOCAL_SRC_FILES:= libUtils.a LOCAL_EXPORT_C_INCLUDES :=...
|
|
|
|
stackoverflow.com
- 2012-10-11 12:40:43
- Similar
- Report/Block
I´m working in a local project (offline) and need show a txt file outside of directory of html. How implement the relative path? main-app |-core-app |-logs | |-log-file.txt |-plugin |-plugin-core |-www |-index.html The file is on logs folder, I need show it in index.html. I try to use src="../../../logs/log-file.txt" but don't work.
|
|
|
stackoverflow.com
- 2012-03-16 16:55:23
- Similar
- Report/Block
In an iOS Project with folders containing *.m files, similar to packages, one will have to run genstrings -o en.lproj *.m for each folder and match the relative en.lproj path. Is there a command that will do the drill down from the root folder?...
|
|
|
stackoverflow.com
- 2013-06-10 12:55:00
- Similar
- Report/Block
The application is developed using Sencha Architect, which uses a host of auxiliary files for managing various IDE-related things (export paths, versioning of the IDE etc.). Some of these files will change every time a team member just opens a project in the Sencha Architect IDE. To give an example of a particularly annoying change, consi...
|
|
|
|
stackoverflow.com
- 2012-06-30 15:47:29
- Similar
- Report/Block
This is more of a general practices question. The language I am working with is Javascript. I have a function that is getting an object with many variables (okay, just 10 variables). What is the best way to make sure this function is getting all the required variables and that they are all set? I know, I know, why not just use a statemen...
|
|
|
stackoverflow.com
- 2011-11-12 09:51:41
- Similar
- Report/Block
I am trying to build a project with another project. There are a lot of libs in there and I am not sure where the required unreferenced symbols are present. Is there a way I can include all the .lib files while compiling? I have given the lib directory as an additional input to the linker, yet it asks for individual .lib files to be in...
|
|
|
goo.ne.jp
- 2012-06-22 09:35:18
- Similar
- Report/Block
VisualStudioC++2010を用いて、#include "_cv.h"を使用したいのですが、ファイルが存在する場所 「C:\Program Files\OpenCV\cv\src」を追加のインクルードファイルに入れても以 下のエラーがでます。 C:\Program Files\OpenCV\cv\src\_cv.h(84): error C2146: 構文エラー : ';' が、識別子 'icvDepthToDataType' の前に必要です。 C:\Program Files\OpenCV\cv\src\_cv.h(84): error C2433: 'CvDataType' : 'inline' はデータ宣言をするのに使用できません。 C:\Program F...
|
|
|
|
developpez.net
- 2013-05-15 09:35:54
- Similar
- Report/Block
Bonjour tout le monde, J'ai un problème de linkage d'OpenCV, j'utilise les librairies static (.a), et je n'arrive pas à faire le linkage dans le fichier (.pro), est ce que quelqu'un a une idée? Je vous remercie d'avance. Le fichier .PRO: QT += core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets TARGET = Test target.files = Test tar...
|