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

Adding new source and header files in STM32CubeIDE (Eclipse based IDE) doesn't work seamlessly

I hope somebody can help me with this problem, as I don't really know what I am doing wrong here. I want to learn how to use the FreeRTOS with some STM32F103RCTx (Cortex-M3) device. Coding with the STM32CubeIDE software (Eclipse based IDE). Some…
BenniB.
  • 1
  • 1
  • 2
0
votes
1 answer

Where can I set in Visual Studio, that the published and installed solution could acces the resource folder? (Not just in debug mode...)

My project has a resource folder that contains pictures and xml files. The program can access the files just in debug mode. When I installed the solution, and run the program it doesn't work. How can I publish my Win Forms solution that it could…
LewoSoft
  • 73
  • 1
  • 2
  • 12
0
votes
1 answer

Cordova - Config.xml - resource-file directive not working

I have a backup.xml file located in my Cordova root directory. This file is used the regulate the auto-backup feature of Android6+ and is defined in my AndroidManifest.xml file as android:fullBackupContent="@xml/backup" in my config.xml file, I set…
0
votes
0 answers

Linking Windows .res files with CMake

I'm looking into switching my C++ building workflow from use of VisualStudio sln/vcxproj files and Makefiles to using CMake. Compilation is fine, but I'm running into issues when trying to link .res files for our Windows dialogs. Our project is…
0
votes
1 answer

Problem with resource files with PyNGL/PyNio

I am trying to translate code from NCL to PyNGL/PyNio. As I have read on the transition guide, the handling of resource files for the plotting routines should work the same way as in NCL. However, in my scripts, python does not include any…
Sile
  • 1
0
votes
0 answers

Can I have my form update, in designer, with strings from my resource files?

I'm getting into globalization and localization. I'm aware that I can set the localizable property of my form to true and that I'm able to edit the form for that specific culture. That's great. My question is am I able to, at the designer, load…
0
votes
0 answers

NUnit Test Cases for Methods Referring to Resource Files

Need to create unit test cases using NUnit Test Cases in a C# Application. All Test Cases are working as expected except created for Methods referring to resource files inside it for some culture related descriptions Getting Below Mentioned Error on…
Garg Mankush
  • 59
  • 1
  • 6
0
votes
0 answers

How do I remove all images from slideshow i.e. the Project Resource File in vb.net?

For reference visit the link. I have tried everything from youtube to the whole Internet.
Sid
  • 1
0
votes
1 answer

C++ write to resource file with qfile (QIODevice::write (QFile,"x"): device not open)

i have the following problem, i have an resource file called data.txt and i want to open it with write permission. Im using QFile and QTextStream to work with it. I can only open the File with ReadOnly Acces but not with ReadWrite or WriteOnly…
Max
  • 62
  • 1
  • 7
0
votes
1 answer

Scala finagle application reading properties file from classpath

We have a Scala web application using Finagle, where we try to read some files from the classpath. It works in the unit test environment, but when assembled and run from Intellij Idea we get a nullpointer exception because it can't read the file. I…
dr jerry
  • 9,768
  • 24
  • 79
  • 122
0
votes
0 answers

.net mvc internationalization returns only english language using resource files

I am using .net MVC 4 web application and using resource files i am trying to implement the internationalization for english and chinese language, but it always returns the english language eventhough i set for chinese culture. Does any help me…
0
votes
1 answer

Unable to to select 1 radioButton out of several in Fortran VisualStudio Project .rc-File

I am supposed to update a very old program written in Fortran which is set up as a Visual Studio Project using a .rc-File. The old version of the program used a GUI having 2 radio-buttons Var1 and Var2 that could be selected( only one of them). Now…
0
votes
2 answers

Include doesn't work in a resource file Visual Studio

I'm learning the WinAPI for now... 3 days ? and I'm already facing a problem. Indeed, in order to create a DialogBox, we need to write its template in a resource file ( resource.rc for example ). Here is my resource.rc: #include "IDs.h" #include…
Tom Clabault
  • 481
  • 4
  • 18
0
votes
1 answer

Disable semi-color in EsLint

I've found the correct line in the .eslintrc.js file. Was not able to find anything in the EsLint documentation about disabling. Should I change/delete error? Should I change always to false or off? "semi": [ "error", "always" ]
Ben Casalino
  • 2,262
  • 5
  • 20
  • 28
0
votes
1 answer

by changing language of gridview using resource file(.resx) the layout not remains the same

I have that GridView in the default "English" language When I change the language using DropDownList to "Urdu" the resource file change the language to "Urdu" but the alignment of cells don't remain the same. I think because "Urdu" is the RTL…