Click here to Skip to main content
15,899,679 members

Comments by Piraisudan (Top 9 by date)

Piraisudan 7-Dec-21 23:23pm View    
@Stefan63, thank you for your prompt response and detailed explanation.

Piraisudan 7-Dec-21 10:18am View    
Hi @Stefan_Lang, thank you for the input, let me check with int.

Meanwhile, could you please explain little bit more on this. I'm still couldn't understand what exactly happening.

Thanks!!!
Piraisudan 6-Dec-21 9:19am View    
Hi @User-11884187Watch, thanks for the hint...

I changed from "uint8_t d[n] alignas(a)" to "alignas(a) uint8_t d[n]", it seems the warning got resolved.

Let me comeback, if anything.

Thanks!!!
Piraisudan 11-Feb-20 8:03am View    
@Richard-MacCutchan Thank you for the prompt response. In my case, I need to prompt a warning message like "Balloon Tip" in the specific Edit Control box when pressing the button. How to do that?
Piraisudan 8-Aug-19 7:52am View    
Hi @Rick-York, I tried using GetModuleBaseName and PathFindExtension. But the PathFindExtension function returns the same value that we passed from GetModuleBaseName function. How can I get that exact parent process image file name? What I'm missing in the below example?


Example:

if (GetModuleBaseName(hProcess, NULL, lpBaseName, MAX_PATH))
{
//
}
if (PathFindExtension(lpBaseName))
{
//
}