Programming and Coding
Programming and coding tips, help and solutions...
1,894 topics in this forum
-
Hi guys, short question.I'am using a tool called "Everything" from voidtools to find files on my HDD etc.I see that this tool is using a simple edit control where you can enter text.If I now wanna get selected the whole edit control then I just need to click once on the outline of that edit control and I got all selected in edit control.Thats pretty cool and now I wanna know how to manage that = what kind of "Edit Control Notification Messages" I have to catch? https://docs.microsoft.com/en-us/windows/win32/controls/bumper-edit-control-reference-notifications Don't find any who does it.Do you know how?Below a example image... ....AND.... ...so if …
-
-
- 35 replies
- 17.9k views
- 2 followers
-
-
Delete Resource using UpdateResource ??? reference: https://binaryworld.net/main/CodeDetail.aspx?CodeId=3778 Already tried: bool deleteExisting = IsDlgButtonChecked(handle, IDC_CHECK22)==0; HANDLE hUpdate = BeginUpdateResource(SecondFilename, deleteExisting); int result1 = UpdateResource(hUpdate, // update resource handle res_types2[i], // resource type MAKEINTRESOURCE(res_names2[i]), // resource id 0, // neutral language NULL, // ptr to resource info - NULL FOR DELETING 0); // size of resource info - 0 for deleting it always return int lasterror = GetLastError(); lasterror = 87 ER…
-
Hi there! I have some questions about the library, if anyone knows help with advice 😃 1) Is it possible to replace the icon of the build file of the program through the library? 2) Is it possible to replace the properties of the build file in Properties.AssemblyInfo.cs (AssemblyTitle, AssemblyVersion e.t.c) ?? 3) How do I replace (int)integer values? 4) Can I change the .NetFramework version using dnlib? Regarding the library itself, the information is not very enough to understand it well, I will be grateful for any information!
-
- 0 replies
- 7.4k views
- 1 follower
-
-
From an old topic: https://forum.tuts4you.com/topic/42934-c-dnlib-how-do-i-change-const-string/?tab=comments#comment-208456 Source Code Stub file: namespace DlibStub { using System; public static class ConstTester { public const string MYCONST = "1111"; public const string DNTEST = "2222"; public static void GetResult() { Console.WriteLine($"Result: {MYCONST}"); Console.WriteLine($"Result: {DNTEST}"); } } } IL Code: field: System.String DlibStub.ConstTester::DNTEST field: System.String DlibStub.ConstTester::MYCONST Instruction: IL_0000: ldstr "Dnlib Tester" Instruction: IL_000…
-
- 2 replies
- 5.7k views
- 1 follower
-
-
Hi guys, so yesterday I got an access violation exception in my app by calling the function StrStrA and it seems that the memory block I wanted to check for a string was gone already = AV crash.Somehow strange because I did check before whether a address is present to check = Yes but somehow the block must be freed by anything. .if MEMBLOCK != FALSE invoke StrStr,MEMBLOCK,chr$('Sting2Check') ; <---- AV inside ... .endif Ok, in this case I did just check whether in the variable MEMBLOCK is anything = normaly the memblock address.Now, the address was still present in variable but not present for real.Now I would like what kind of function/s I can use to ve…
-
-
- 24 replies
- 6.3k views
- 2 followers
-
-
Hello guys , what are the prerequisites to code a mobile flash tool from scratch like (odin) for example, Should I learn about GSM ? I tried to search for any open source flash tool written in .Net but I didn't find anything till now. If you have any resources it will be great (VB.NET / C#) thank you.
-
-
- 4 replies
- 5.4k views
- 2 followers
-
-
Hi guys, I'am using those C functions above to read / write data to file and have that problem with the Macintosh CR (see notepate status bar).In normal case I write text fields like this... db "Some Info", 13,10 db "Here too", 13,10 db "Look not!",0 ....just 3 test lins with one line break between.Now if I do use the fwrite function with it then it does write the LBs in double LBs like this... db "Some Info", 13,10,13,10 db "Here too", 13,10,13,10 db "Look not!",0 ....and not in Unix style.How can I tell the function using Unix style instead of Macintosh? greetz
-
-
- 1 reply
- 4.5k views
- 1 follower
-
-
Hi guys, does anyone know a example / way how to set a progressbar into tray as icon to show the progress status?So you know like Taskmanager does it. Thank you
-
-
- 19 replies
- 9.1k views
- 1 follower
-
-
Hi guys, just have a quick question about Listbox control and using some colors into them.Normaly I dont use OD for ListBox control but in this case it seems I have to use any.My goal is it just to color the background and specific text entrys I do send into the LB.All in all just 3 colors - Background, - TextColor Blue for normal logs / state (all ok) & TextColor Red for Error logs.So in normal case I color back / text at WM_CTLCOLORLISTBOX message but it seems I can not color the text entrys seperated... Info 1 <-- Blue Info 2 <-- Blue ErrorX <-- Red ....I get all blue or red only = Bad.Otherwise I dont wanna make any large Own…
-
-
- 21 replies
- 7.2k views
- 2 followers
-
-
Hi Can anyone convert this delphi code to BV6? procedure TKeyGen.Button1Click(Sender: TObject); const Const_Array : array[0..7] of Char = ('e','n','c','r','y','w','e','b'); Var StrName, Part2, Code : string; i, AL, Last_Char : Integer; begin Code := '' ; StrName := Edit1.Text; If StrName = '' then Edit2.Text := 'Enter your Name !!!' else Begin For i := 0 to length(StrName) - 1 do begin AL := ((Ord(StrName[i + 1]) + (i) + Length(StrName) + Ord(Const_Array[(I and 80000007)])) mod 10) + 48; Code := Char (AL) + Code ; end; Last_Char := ((Length(StrName) + 112) mod 10) + 48; Edit2.Text := …
-
-
- 14 replies
- 6.5k views
- 1 follower
-
-
Hi guys, I have again a small question about piping a CLI output to my buffer.So I just wanna start a CLI app with paramters and reading the output (content I also see in CMD window) so long till its finished.So the only problem I have so far is how to wait till its finished.Lets say the CLI app needs a while (a minute etc).My question is what function/s I need to use for that?I see I cant use WaitForSingleObject with INFINITE paramter so this dosent work because the CLI app dosent exit itself so long I didnt had reading the bytes.If I just read the bytes using PeekNamedPipe / ReadFile function then I dont get the whole content = it quits to early and the CLI app is …
-
-
- 34 replies
- 16.1k views
- 1 follower
-
-
Hi again, short question.I wanna create random values (0 till -1h) and found 2 C++ function called rand and srand. https://www.cplusplus.com/reference/cstdlib/rand/ https://www.cplusplus.com/reference/cstdlib/srand/ So if I check it right then I have to call first srand with any value X as paramter and then calling rand right after.If I do that to call srand first with same value like 10h then I get a results of 5Ah back from rand function.So is it just to prevent creating same random values?Should I call it like this below each time if I need to create a random value? .data holder dd FALSE invoke crt_srand, holder invoke crt_rand inc holder …
-
-
- 12 replies
- 6k views
- 2 followers
-
-
Hi guys, I was trying to check out those splitter control (pseudo control) stuff and don't find any easy examples for that.I didn't worked with splitter/s before and I would give it a try to know how to use and implement it if I should need it.So I am not really sure anymore about that splitter stuff.Is it a real control class I can use with CreateWindowEx or is it just a pseudo control created by few controls (EDIT etc) using the WS_EX_CLIENTEDGE style?!?In MASM package I can find a example source (masm32\examples\exampl05\splitter\splitter.asm) and the code does just that to create 2 EDITS (no splitter control) and working with that.This seems to be really tricky s…
-
- 0 replies
- 4.9k views
- 1 follower
-
-
public const string Test = "{ConstText}"; And Found Const using (var module = ModuleDefMD.Load(Resources.Stub)) { foreach (var type in module.GetTypes().Where(t => t.HasMethods)) { IList<FieldDef> fieldstr = type.Fields; for (int i = 0; i < fieldstr.Count; i++) { // fieldstr[i].Name - This found const string } } How to change ?
-
-
- 5 replies
- 6.4k views
- 1 follower
-
-
// ConsoleApplication1.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <iostream> #include <stdio.h> #include <Windows.h> //Returns the last Win32 error, in string format. Returns an empty string if there is no error. std::string GetLastErrorAsString() { //Get the error message ID, if any. DWORD errorMessageID = ::GetLastError(); if (errorMessageID == 0) { return std::string(); //No error message has been recorded } LPSTR messageBuffer = nullptr; //Ask Win32 to give us the string version of that message ID. //The parameters we pass in, tell Win32 to create the buffer that holds the message f…
-
-
- 4 replies
- 5.3k views
- 1 follower
-
-
Can you ülease help me with some code snippet or example on how to change a byte[] with dnlib or other libs ? thanks
-
-
- 6 replies
- 6.9k views
- 1 follower
-
-
using var module = ModuleDefMD.Load(Properties.Resources.Bin); // How to change this icon ? module.Write("Save_NewFile.exe");
-
- 0 replies
- 4.9k views
- 2 followers
-
-
Figured I drop this here. Its the packer and decompressor I use for my private build of my exe packer. Feel free to do what you want with it. lzma_decenc.rar
-
- 1 reply
- 15.5k views
- 1 follower
-
-
hi there guys , does anyone have this effect that is actually missing ? recently came across this link where it had the download links to these kind of effects (which are already dead) , and i really want to add this effect for my next templates .
-
-
- 5 replies
- 5.3k views
- 2 followers
-
-
Hi All What could be the code in Assembly for the below Python code? Result =str(random.randint(800000,899999)) This is just to get random number of 6 digit between 800000 to 899999. Thanks
-
Hi Is there any easy way to convert .py to exe? Thanks
-
-
- 1 reply
- 5.4k views
- 1 follower
-
-
Hello, How can I learn how an executable file work and when open a file in a reverse engineering or debugging tool, understand it? Thank you.
-
-
- 2 replies
- 5.6k views
- 3 followers
-
-
how to remove or fix opcode please help image:
-
- 2 replies
- 5.1k views
- 2 followers
-
-
lo, anybody ever had 'luck' converting Bassmod.DLL into a .LIB ? For static linking I mean... I guess lotsa ppl would love to have it. I've tried the tool 'Dll To Lib' on it, but somehow it fails bigtime.. all generated symbols are crap.. useless. (and yes I've unpacked it before ofc ^^) I don't know about any other tool. Somebody out there having experience in this topic? cheers
-
-
- 40 replies
- 44.7k views
- 1 follower
-
-
I would like to have a guide to start with the development of UEFI drivers Any help will already be very useful
-
-
- 2 replies
- 5.6k views
- 1 follower
-