|
|
Hi everyone.
A question has arisen (stupid). Using the WinUSB program I created a multiboot flash drive. First (as in the instructions) I recorded Win10 64-bit, after Ubuntu16.04. Now there is a need to add Win10 32-bit there. Is it possible to add it there or do I need to completely format the flash drive and write it again in the order: Win10 32, Win10 64, Ubuntu?
|
|
|
|
|
I am trying to sign .EXE application and also a .MSI installer, and to create a .PFX certificate file, since
this program asks for it, it is Paquet Builder 2021. I tried to use Windows APP Cert Kit which is installed on
my PC. I have Windows Home Edition 64-bit. The Error says "Windows APP Cert Kit 3.3 is not supported on this
version of Windows.... " Are there other ways to create a PFX file?
Get back thanks.
|
|
|
|
|
You can use the SIGNTOOL that comes with Visual Studio to sign the files. You'll have to open the Developer Command Prompt to use it. Just type "developer" into the Windows search bar to find it.
If you're going to distribute the resulting signed files to public customers or is otherwise public facing, you MUST use a certificate from a trusted third-party certificate authority, like Verisign.
You cannot use a self-signed cert for this, otherwise the certificate will not be trusted as it cannot be verified by a publicly trusted CA.
WACK does not work on the Home edition of Windows. You would have to upgrade to the Pro edition or higher.
|
|
|
|
|
Will try, I get back if I have any issues, best regards.
|
|
|
|
|
Hello;
In an Excel file containing Japanese Kanji with phonetic, how can I get the phonetic above the Japanese Kanji?
Kanji with Hiragana
Here is a simple code Excel string extraction program, but it cannot capture the above Hiragana.
The code to get string from excel, but it cannot get the above Hiragana.
string excelFilePath = Directorypath + "TestBook.xlsx";
Excel.Application excelApp = new Excel.Application();
Excel.Workbook workbook = excelApp.Workbooks.Open(excelFilePath);
Excel.Worksheet worksheet = (Excel.Worksheet)workbook.Worksheets.get_Item(1);
int rowCount = worksheet.UsedRange.Rows.Count;
int colCount = worksheet.UsedRange.Columns.Count;
for (int row = 1; row <= rowCount; row++)
{
for (int col = 1; col <= colCount; col++)
{
Excel.Range cell = worksheet.Cells[row, col];
string cellValue = cell.Value != null ? cell.Value.ToString() : "";
Console.Write(cellValue + "\t");
}
Console.WriteLine();
}
workbook.Close();
excelApp.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(worksheet);
System.Runtime.InteropServices.Marshal.ReleaseComObject(workbook);
System.Runtime.InteropServices.Marshal.ReleaseComObject(excelApp);
|
|
|
|
|
I can't find anything that suggests that the phonetic version is stored in the spreadsheet.
As I read it it converts it from the original as needed.
If that is true then you would need to find a way to invoke excel itself to extract that. So not just 'read' the file. There should be an API, since there used to be one, that one can invoke processing. Way back when I needed to do it for Word I found the documentation very, very difficult to use. Perhaps it is better for Excel now.
|
|
|
|
|
Curiosity premise: I always ran Win10 setup on a bootable USB, prior set in Bios as 1st boot choice. Now I see videos of Win10.ISO contents copied to C: drive on a separate created drive partition and installed by running setup.exe. Or some show the WinISO setup.exe being run from a mounted folder on the existing system partition drive.
Question: How does windows.iso setup (repair or clean install) get the reboot process to re-enter the ISO setup several times, and pick up where it left (prior to reboot) instead of starting over. What logistics are involved, in brief if possible.
Appreciate any comments and links to pertinent study material on this.
(I've read some on BCDEdit but not sure if this is what's happening on this?)
|
|
|
|
|
An informal survey here to find out if anyone is actually using Win UI 3 in a real commercial application that people pay for?
I'm sure there are plenty of LOB apps and personal projects etc., but I mean is anyone using it for anything serious that they expect to make money off of? A bet-the-company flagship product?
Three years after release, compared to WPF it's buggy, inflexible, and poorly supported (by Microsoft or by the community - try running a search to find something Win UI 3 specific and seeing how much UWP or WPF content you have to sift through).
I badly need to move off of WPF for its being nearly 20 years old and unsupported, but I find WinUI 3 to be essentially unusable. It suffers from the ultimate problem that nearly all Microsoft development technologies suffer from - because they don't use it to develop their own consumer products, it - at best - isn't a strategic priority, or - at worst - it's deliberately crippled to make sure their own products can't be edged out.
I'm tempted to just use DirectComposition and build an entirely homegrown UI framework, which I then at least can control and debug. I'm almost certian this is what all the major development shops (including Microsoft) do for their flagship products. What other options are there at this point really?
|
|
|
|
|
You should avoid UWP/Win 3 UI and appx, you have to understand they are trying to kill win32 and build a closed down ecosystem like apple and google, don't tie yourself down they want to deceive developers into the close ecosystem to tax you to death with a 30% fee to be hosted on microsoft store.
|
|
|
|
|
You can sideload; you don't have to go through the store. And the 30% is for "games"; other categories are lower.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
A good sign is that Microsoft IS using WinUI (WinApps SDK) to build consumer-facing apps. One of them is the Photo App Microsoft rolls out Windows App SDK-Powered Photos app for Insiders[^]
If I recall well, another WinUI app by Microsoft was something to do with a "Phone" app, but can't quite recall what it was.
While I can agree with some of the sentiment expressed, I am starting to see great energy on WinUI team, open-sourcing of WinUI was great and their OSS participation has been great.
|
|
|
|
|
Hi,
The current Microsoft version of the Win32 documentation says that LoadString, LoadStringW, and LoadStringA will pass back a pointer to a read-only copy of a string resource, if the buffer size passed to the routine is 0. In which universe does this happen? This is what I see:
LoadString(hModule, valid_string_id, buf, buflen) returns length of string
LoadString(hModule, invalid_string_id, buf, buflen) returns 0
LoadString(hModule, valid_string_id, buf, 0) returns -1
LoadString(hModule, valid_string_id, NULL, buflen) throws an exception
LoadString(hModule, valid_string_id, NULL, 0) throws an exception
I always look at the source code of Wine when I encounter stuff like this, as a first approximation of what might actually be going on internally, and it would appear that Wine would do the same, except for the last case where it would return -1.
I can work around this, no problem. The question is more about the mismatch between the documentation and the behavior. Does anyone have any insight on this?
sample code below. You need to attach a resource file with a valid string defined
#include <windows.h>
#include <stdio.h>
#include "test.h"
#define ARRAYLENGTH(a) (sizeof(a)/sizeof((a)[0]))
int main (int argc, char **argv)
{
char buf[300];
int len;
HMODULE hModule = GetModuleHandle(NULL);
#define TEST_FUNC_CALL(expression) \
buf[0] = '?'; \
buf[1] = 0; \
printf("%s\n", #expression); \
__try { \
len = expression; \
printf("... returned %d; buf: %s\n\n", len, buf); \
} \
__except(EXCEPTION_EXECUTE_HANDLER) { \
printf("... threw an exception\n\n"); \
}
TEST_FUNC_CALL( LoadString(hModule, IDS_STRING1, buf, ARRAYLENGTH(buf)) )
TEST_FUNC_CALL( LoadString(hModule, 9999, buf, ARRAYLENGTH(buf)) )
TEST_FUNC_CALL( LoadString(hModule, IDS_STRING1, buf, 0) )
TEST_FUNC_CALL( LoadString(hModule, IDS_STRING1, NULL, ARRAYLENGTH(buf)) )
TEST_FUNC_CALL( LoadString(hModule, IDS_STRING1, NULL, 0) )
return 0;
}
|
|
|
|
|
I just tried that and it does indeed return the length of the string, and set the buffer address to point to the string itself. In your call with a buffer length of zero, you need to pass the address of a pointer, where Windows will store the address of the string. Something like:
char* pString;
TEST_FUNC_CALL( LoadString(hModule, IDS_STRING1, (char*)&pString, 0) )
|
|
|
|
|
So the documentation is wrong. For example it doesn't document '-1' at all.
You might get some more information by doing what it says....
"To get extended error information, call GetLastError."
|
|
|
|
|
Solved: receiving a pointer to the string when cchBufferMax == 0 happens in the Unicode universe (LoadStringW), not the MBCS universe (LoadStringA). Duh! Of course. String resource data is Unicode. If I'd looked at Wine's LoadStringW instead of LoadStringA I'd have seen that yesterday.
(And in case anyone stumbles on this discussion for info about this feature, note that the string in the resource is likely not null terminated.).
I'll post feedback for the documentation. It was an error that the same copy got pasted into both LoadString descriptions. LoadStringA needs to have the part about cchBufferMax == 0 deleted. The -1 return value should also be documented. (Also, LoadStringW does not throw exceptions with a NULL buffer pointer, it returns 0, but that doesn't need to be documented.)
|
|
|
|
|
Brian Knittel wrote: stumbles In the event that you are a spammer (not BK of course) or are experienced in successfully loading hidden links and payloads (again, not BK), please ignore this action verb reference and move n.
|
|
|
|
|
Every time I need to change or correct something in my old Web.net site, Visual Studio has been updated without looking back. Code that ran in 2017, 2019 worked, bud now i 2022 it does not work.
What is wrong with Microsoft? Thinking it is all AI and new programme languages. Just stick to VB and C# and forget the rest.
|
|
|
|
|
This forum is for problems with this website. If you have a programming problem then use one of the actual code forums or https://www.codeproject.com/Questions/ask.aspx[^]. If you just want to rant about Microsoft then try the Lounge.
modified 21-Feb-23 8:59am.
|
|
|
|
|
Not sure this is the right section to ask but none seemed perfect. I've been having an issue for several months that no one in IT can explain so maybe a software devs take could shed some light. We have a VPN tunnel that we use to access file shares located on the network of the software vendor who's accounting software we use. I use and have ben using for several years IDM Comp's UltraEdit Studio as my text editor. Starting a few months back when I go to FILE//OPEN, select the File Share that's on the other side of teh VPN Tunnel within a few seconds I get locked out from accessing not only from within the text editor but also with Windows Explorer. If I use window explorer to locate a file and then open it I'm fine it's only when starting from the text editor I get locked out after trying to browse to a file. Once the lockout happens I can't use Windows Explorer either to access any of teh files on teh share until the lock is released. The software vendor's people say it's nothing they've done and yet this was not an issue until a few months ago. Initially there was like a 1 in 10 chance I'd get locked out trying to browse to and open a file and then it got worse and worse until now it's %100. Initially I thought maybe it was something with Ultra Edit Studio but I switched to using regular old Notepad and the same thing happened so it's not a problem just with Ultra Edit Studio.
I feel like something must be happening in the back ground any time I'm using an apps FILE>>OPEN feature to browse to and select a file, something that the security on teh other side of teh VPN is detecting as a malicious attack and thus temporarily locking out the account.
Have any of you ever run into something like this or have any thoughts?
|
|
|
|
|
Never heard of the problem.
I think this is going to be a call to Microsoft Support. There may have been a patch that did it or the VPN was updated and something in there is screwing with the network connection.
|
|
|
|
|
We've discussed possibly having to do just that. I was hoping that if it was something MS did that one or more of you devs out there would have run into it by now as well and have some insight on what it is.
Thanks
|
|
|
|
|
Sounds like you're trying to open "vendor files" (for WRITE?) on THEIR network. As a vendor, I would only allow downloads ... which doesn't include trying to open them with Notepad, etc.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
Yes for read write but I can do that fine now as long as I don't go to FILE>>OPEN from within the app (any text editor) but instead browse to the file and select it in Windows Explorer and double-click (or right click and select open).
Thanks for the reply
|
|
|
|
|
That doesn't really make sense. When you double-click a file in Explorer, it looks up the file extension in its handler table and just launches the command line associated with the extension.
So, by default, for .TXT file you double-click, Explorer will launch Notepad.exe %1, and replace the %1 with the full path to the file you double-clicked. The app then has to open the file itself and will do it exactly like it would if you went to File/Open in the application and selected it.
|
|
|
|
|