Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
192 views

I used to be a developer and software engineer but I've been retired for 15 years now so I'm a bit rusty and not up to speed on the latest stuff. Fired up Visual Studio 2022 for the first time in a ...
DrWizard's user avatar
1 vote
1 answer
58 views

I'm working on an application that embeds a surrealdb database. I'm new to Rust, but this isn't as much of a Rust specific question. How should I go about seeding the database with the schema? Right ...
Andrew's user avatar
  • 642
1 vote
0 answers
79 views

Below is the code, but in the serial monitor I'm getting the outputs camera is initialized, waiting, error. The code in if loop Serial.read() == 'c' is not getting executed. If anyone knows how to ...
dipankar deka's user avatar
0 votes
1 answer
108 views

With a normal Win32 C++ application with compiled resource file (.rc), how does one reference the icons, bitmaps and png files from the resource using a URI required for toast notifications? I presume ...
user3161924's user avatar
  • 2,567
0 votes
0 answers
844 views

I'm experimenting with embedding assets into executable. The executable successfully logs the JSON file's content even if the executable is moved elsewhere. However, the file does not appear in the ...
Filip Seman's user avatar
  • 1,864
0 votes
0 answers
60 views

I have a legacy .NET Framework Winforms application that I am migrating from the old csproj file format to the new SDK-Style format. I did this by creating a new SDK-Style project in the solution ...
NⵙⵙB's user avatar
  • 129
1 vote
0 answers
54 views

I want to get the path of a jar resource relative to the jar root. This is the MVCE I created: // Using website example to demonstrate relativize working URL website = new URL("https://...
Cardinal System's user avatar
0 votes
1 answer
71 views

After some conclusions, a more precise questions: I have a .NET 4.0 project with Entity Framework v4 which uses an .edmx file. Let's call it EFProject and MyDB to the database accessed by Entity ...
Guy E's user avatar
  • 1,957
1 vote
0 answers
132 views

I'm Trying to make a ComponentResourceManager image to be automatic for each custom component in C# from the decompile library . so previously I had to create a library but the source code was stored ...
dlaksmi's user avatar
  • 213
0 votes
1 answer
130 views

I have written one file1.cmm file, in this file many &BITPOS=21 is present. For example, &BITPOS=21 &BITPOS=22 &BITPOS=23 and so on present in file1.cmm I debugged this issue and found ...
Priyajit Ghosh's user avatar
0 votes
0 answers
137 views

I'm currently developing a C# .NET8 WinForms application that should be multilanguage as it will be deployed in multiple countries in Europe. I've installed MAT (Multilanguage App Toolkit) Extension ...
Simon's user avatar
  • 155
1 vote
1 answer
75 views

I want to put a custom font to a datagridview but it is not applied, it only applies to other elements such as labels. I originally tried this and it worked as expected. fontCollection.AddFontFile(&...
jhu unhn hefhd's user avatar
0 votes
1 answer
277 views

I'm currently developing a small shared plugin for few projects and the cleanest solution would be if I could read and process a resource file provided by the plugin. However, Java/Kotlin style this....
Wolfer's user avatar
  • 570
0 votes
1 answer
128 views

My program contains two text files with some data as resources in visual C++. They can be load and read as follows. const char* resQ = NULL, *resA = NULL; GetTextResource(IDR_TEXT2, resQ); ...
Alex Krebs's user avatar
0 votes
0 answers
147 views

I need to embed a .ttf-File into an existing Pdf in Java. Now I would prefer both Pdfbox and openpdf, but I am open to any suggestion. The Java-webservice is to open the Pdf, then insert the .ttf ...
Schlomo Dumbo's user avatar
0 votes
1 answer
178 views

I would like to learn how to implement secure boot on a device. I have a raspberry pi 2, and 3. I can get any board if it is required. I have been working with embedded systems and embedded linux. ...
Payam30's user avatar
  • 729
0 votes
1 answer
28 views

Not getting any option to download parallel embedded resource in blazemeter. I am trying to do performance test and running my test in blazmeter for single uer and single iteration. The test required ...
Anushka Gupta's user avatar
1 vote
0 answers
69 views

We have a embedded resource: <EmbeddedResource Update="Resources\ResourceFile.resx"> <Generator>ResXFileCodeGenerator</Generator> <LastGenOutput>...
Rob Janssen's user avatar
0 votes
0 answers
766 views

I am getting https embed links from the api to showcase inside the Object element. In Chrome it works just fine. For Firefox, the iframe doesn't load. It's blank. I've checked the console and network ...
Wardhan's user avatar
  • 66
-2 votes
1 answer
202 views

It maybe seems like a stupid question, but I couldn't find anything on the internet. I can't figure out how to embed an executable into the program. The goal is to only have one executable file after ...
Holzhax's user avatar
0 votes
1 answer
272 views

I created an empty project and added an RC file to the project via the Project Manager. This will add the following line in my DPR file: {$R 'VersionInfo.res' 'VersionInfo.rc'} The project compiles, ...
Error - CPU Not Foud's user avatar
0 votes
1 answer
252 views

I have a C# Solution in Visual studio where one of the projects is the UI version of the software and the other project is the commandline version. Both versions require some xml definitions. I've ...
tzg's user avatar
  • 666
1 vote
1 answer
647 views

I've been trying to add an icon to an executable generated by go build. Internally, this executable uses webview/webview_go. I've used windres to generate the .syso file from the following .rc file #...
MangledMMU's user avatar
2 votes
1 answer
573 views

How can a DFM resource of a form in a Delphi project be accessed in code at runtime? Background: I want to be able to parse a form's DFM at runtime to create HTML and other representations of it on ...
MichaSchumann's user avatar
2 votes
1 answer
160 views

I want to load the binary data of a VERSION resource from an external EXE file. This should be fairly simple: var hFile: HMODULE; // File=image to load hR: HRSRC; // Resource handle hG: ...
AmigoJack's user avatar
  • 6,442
3 votes
1 answer
937 views

I'm trying to embed arbitrary data into an ELF executable and have Linux map it in automatically at load time. Recently asked another question about this which culminated in support for this use case ...
Matheus Moreira's user avatar
2 votes
1 answer
574 views

The objcopy tool makes it easy to embed arbitrary files into an ELF executable: objcopy --add-section program.file1=file1.dat \ --add-section program.file2=file2.dat \ program program+...
Matheus Moreira's user avatar
1 vote
1 answer
141 views

I am going through a codebase, that uses the FatFS library by Chan and probably developed using the CubeMX code generator. I can see the code given below there. It is also described in STM32 user ...
Monem Ahmed's user avatar
2 votes
2 answers
331 views

I am using an external SPI flash with my STM32 MCU. I am wondering Can the following scenario lead to data corruption in flash or in the read buffer? If an ISR triggers at the same time, while the ...
Monem Ahmed's user avatar
1 vote
1 answer
199 views

A .ttf file that is designated MauiFont resource seems to import automatically for an iOS or Android project. What would it take to import home.ttf manually in order to make Windows recognize the font?...
IV.'s user avatar
  • 9,656
0 votes
1 answer
264 views

I have been given a very old project with a series of DLLs and drivers which has not been built since 2012. I'm trying to bring it back to life but as a driver guy I'm really struggling with some of ...
Jeff's user avatar
  • 545
0 votes
2 answers
237 views

I have a valid multi-size .ico image file in the Resource directory of my VS C# .NET6 WPF project. This resource file is marked as Embedded resource to be included in the binary. I try to explicitly ...
Alex's user avatar
  • 717
0 votes
1 answer
264 views

How can I blink 2 Leds at the same time i.e. one at 500ms and the other at 1sec exact time on nrf52840 using Seger embedded as ide. I tried to delay it using the inbuilt delay function but it just ...
test email's user avatar
0 votes
1 answer
411 views

I am in the process of creating an embed for instagram posts. However when using the script: https://www.instagram.com/embed.js I get the following errors in the browser: Localhost Environment: ...
StylisX's user avatar
  • 11
3 votes
1 answer
3k views

.Designer.cs files are generated automatically by Visual Studio or Rider (and probably other IDEs), but it is not a part of build process. I want to generate these files as a part of build process ...
aksu's user avatar
  • 1,857
0 votes
0 answers
86 views

I have a C# application (using the legacy .NET framework, not the new .NET Core). It handles the AppDomain.CurrentDomain.AssemblyResolve event. When I debugged the application, I saw that the event ...
Sabuncu's user avatar
  • 5,324
0 votes
0 answers
97 views

I am trying to store a leaderboard locally for the game I am working on. To do this, I have added a text file to the resource folder inside my program. I am attempting to write to and read from this ...
thedrooster's user avatar
0 votes
0 answers
222 views

I am trying to play a WAV resource with low latency. If I load my audio into memory and then call PlaySound with SND_MEMORY, then there should be almost no delay, however, there is a huge delay of ...
YJiqdAdwTifMxGR's user avatar
1 vote
1 answer
1k views

I'm building an application and want to use HTML, CSS, & JS files as embedded resources but still load/reference them in a WebView2 component. Is there any good (and efficient) way to do this? I'...
kgsensei's user avatar
0 votes
1 answer
281 views

I have a code in which I directly specify the path to the folder via EMBED, but I know that you can somehow point to the folder and then just write the file name, but I don't know how to do it ...
Skaz's user avatar
  • 43
0 votes
0 answers
387 views

I have a nuget package which contains some logos which should be accessible. The logos are located in the Resources Folder: [![enter image description here][1]][1] The logos are set up as embedded ...
julian bechtold's user avatar
1 vote
2 answers
852 views

I have a file with a password that I need to somehow hide. Is there a way to hide an embedded resource from a decompiler? If there isn't, what is the best practice to hide files from being decompiled? ...
Alex Kovaliv's user avatar
0 votes
1 answer
768 views

I have been writing C#/WPF applications for years, but have started to experiment with some apps using MAUI. Over time, I have gathered icons and other visual resources in to a class library which has ...
AJ.'s user avatar
  • 1,671
0 votes
1 answer
426 views

I use Open XML SDK to manipulate OOXML spreadsheets. I need to change the data in a VmlDrawingsPart, specifically the ImageData. ImageData have an o:relid property which is the reference to the image/...
Asbjoedt's user avatar
  • 119
0 votes
2 answers
2k views

How to load images from Resources, please? Some of my images are located inside a folder. My image is saved as Resource (cf. Build Action). I don't use a .resx file. I'm able to retrieve the list of ...
PeterMacGonagan's user avatar
0 votes
1 answer
59 views

a desktop application (WPF, .NET 4.6.2) has lots of settings in app.config. The settings have different values for specific configurations: App.Debug.config and App.Release.config. QA engineers are ...
Oblomingo's user avatar
  • 698
2 votes
0 answers
598 views

We are getting a crash occurring only on Android 11 and lower devices. stack trace - Fatal Exception: java.lang.RuntimeException: Unable to start activity ComponentInfo{..SplashActivity}: android....
Vikas Pandey's user avatar
  • 1,245
1 vote
1 answer
70 views

Looks like there are tons of webpages online and questions on SO, but I still can't get this to work after several hours of searching. I'm cross-compiling from Linux to Windows by setting CC/CXX to ...
pid's user avatar
  • 11.6k
0 votes
0 answers
18 views

I have a very old program (written in the time of Windows XP in C++, I trust). I need to translate certain dialogues of the program from English to Bulgarian. In principle, this can be done via ...
S. N.'s user avatar
  • 127
2 votes
2 answers
423 views

I am developing code using a spreadsheet input file, a MemoryStream, Open XML SDK and ImageMagick to: Read stream of an embedded image file in a spreadsheet Convert stream to TIFF file format Embed ...
Asbjoedt's user avatar
  • 119

1
2 3 4 5
39