Questions tagged [resource-files]

Resource files are those files that are used to instruct the compiler/linker toolchain on which resources (icons, dialogs, etc.) are to be embedded in the binary being built.

267 questions
0
votes
0 answers

VB Visual Studio - .xlsx resource file not updating at compile time

I include a .xlsx file as one of my project resources. If i edit this file in the projectName\Resources folder, the updates do not register when I compile the project and it only uses the state of the resource when I first added it. Normally I would…
Andrew
  • 7
  • 2
0
votes
1 answer

Qt : no rule to make target after deleting picture

I accidentally permanently deleted one of my picture files today (it was added to the Qt resource file earlier) through File Explorer (not deleting it via Qt Creator). Now whenever I try to build my project, I keep getting a message that says: No…
Hung Truong
  • 401
  • 1
  • 3
  • 12
0
votes
2 answers

How to create a resource file programmatically in the correct folder c#

I want to create a resource file programmatically. I managed to do so following this link: https://msdn.microsoft.com/en-us/library/gg418542(v=vs.110).aspx And I got this code: ResXResourceWriter resx = new…
0
votes
5 answers

win32 resource file help

on this website, under the "Edit Control" title, there are a couple of lines of code like this.. case WM_CREATE: hwndEdit = CreateWindow(TEXT("Edit"), NULL, WS_CHILD | WS_VISIBLE | WS_BORDER, 50, 50, 150, 20, hwnd, (HMENU)…
silent
  • 2,836
  • 10
  • 47
  • 73
0
votes
1 answer

how to filter multiple source file with maven?

i'm trying to filter many source file with maven. my code work perfectly when i specify the files name. src/main/default/toto.txt /default true
appsofiane
  • 103
  • 2
  • 7
0
votes
1 answer

HTML Tags in Resource File Showing as Plain Text

I'm trying to bold a few words in a "Consent" string stored in a resource file to be displayed in a read-only, scrollable textbox on a web page. I tried putting in the bold tags-- -- but they would show up as plain text in the "Consent"…
Jessie Cui
  • 25
  • 7
0
votes
0 answers

ComboBox did not work after setting project to Unicode

I changed my project properties to Unicode and compiling works great but my ComboBox didn't work. Here some code: COMBOBOX IDC_DEBUGLEVEL, 478, 20, 49, 14, CBS_DROPDOWN | CBS_SIMPLE | WS_VSCROLL | WS_TABSTOP To add some items into this…
Premox
  • 323
  • 10
  • 25
0
votes
1 answer

Sharpdevelop Access resource file settings

I'm trying to access settings from a settings file(MySettings) that I have created through the SharpDevelop Template: Setting: [global::System.Configuration.UserScopedSettingAttribute()] …
John Meyer
  • 37
  • 1
  • 8
0
votes
1 answer

Where to define Nginx process name (nginx) in sources?

Where is the placement of process name ("nginx") definition in sources files? I would like to rename from "nginx" to "nginx1101".
adampweb
  • 1,135
  • 1
  • 9
  • 19
0
votes
1 answer

Using Source file for "for file in"

I'm trying to run the following code on files that I choose and put into a variable source file. This is for ease of the user when I export it out. This is the code before trying to add a source file: for file in ~/Twitter/Users/New/*; do [ -f…
Matt
  • 107
  • 1
  • 2
  • 10
0
votes
1 answer

How Do I Embed Local HTML into Cocoa Binaries?

I'm using Objective C for a Cocoa application on OSX with some local HTML files that get loaded into a Webkit widget. However, a virus could easily modify those HTML files. So, I added a CRC hash to detect tampering, which shows a warning and then…
Volomike
  • 23,743
  • 21
  • 113
  • 209
0
votes
1 answer

Different version info for different builds?

I have a C++ project in Visual Studio. This project results in several different builds, and I would like the different builds to report different File descriptions and product names. Version numbers, menus, dialogs, etc are all the same, so I…
user1961169
  • 783
  • 6
  • 17
0
votes
2 answers

Fastest way of accessing an image in Swing

What is the fastest way of accessing an image file (.png) that is in the project and setting it as the icon of something?
0
votes
1 answer

Replacing "token" inside resource files c#

I have a series of Resource Files for Localization purposes.In Drupal, there are something called tokens, which are some patterned text that it is replaced by the server when it is called. Example: Resource file in English: I have this localization…
Jose A
  • 10,053
  • 11
  • 75
  • 108
0
votes
0 answers

Does Ruby have an equivalent to maven2 resource filtering?

Does ruby have an equivalent to Maven2's resource filtering? In Maven2 it basically recursively goes though all the files of a specified name filter in a directory and takes the contents of search strings specified in build.properties and replaces…
leeand00
  • 25,510
  • 39
  • 140
  • 297