Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Programming and Coding

Programming and coding tips, help and solutions...

  1. CodeExplorer
    Started by CodeExplorer,

    Change the color of grid lines for ListCtrl so I've set this: m_List.SetExtendedStyle(LVS_EX_GRIDLINES | LVS_EX_FULLROWSELECT | LVS_EX_SUBITEMIMAGES | LVS_OWNERDRAWFIXED ); I've created message like this void MyListCtrl::OnCustomDraw(NMHDR* pNMHDR, LRESULT* pResult) { ... if (ShowCustomGridLines) DrawGridLines(); Now problematic code: // https://aucd29.tistory.com/2078 void MyListCtrl::DrawGridLines() { // TODO: Add your message handler code here // Do not call CListCtrl::OnPaint() for painting messages // First let the control do its default drawing. const MSG *msg = GetCurrentMessage(); DefWindowP…

  2. CodeExplorer
    Started by CodeExplorer,

    Checkboxes in multiple columns in Visual C++ 6 ??? References: https://stackoverflow.com/questions/27309526/how-to-add-checkboxes-in-multiple-columns-in-vc https://www.codeproject.com/Articles/29064/CGridListCtrlEx-Grid-Control-Based-on-CListCtrl I can't find simple solutions, m_List.SetExtendedStyle(LVS_EX_GRIDLINES | LVS_EX_FULLROWSELECT | LVS_EX_SUBITEMIMAGES | LVS_EX_CHECKBOXES ); int itemPos, x; CString data; m_List.InsertColumn(0,"Column 1",LVCFMT_LEFT,100); m_List.InsertColumn(1,"Column 2",LVCFMT_LEFT,100); m_List.InsertColumn(2,"Column 3",LVCFMT_LEFT,100); for (x=0;x<3;x++) { data.Format("(%d,1)",x); …

  3. modz50
    Started by modz50,

    hi I was wondering if anyone is interested in contributing to creating a de4dot wrapper for ilspy i have started some of it I'm looking to see it anyone is interested and are willing to help if you please get in touch with me on Discord the source code is private on my GitHub page until further notice modz2014#4684 here is a sneak peak as well

  4. kittmaster

    EDIT: Link added below to the full project for downloading > Link: http://www.kittmaster.com/imagedump/snd/App1.rar Long time....Greetz to all. I'm honing some skills going forward and I can't seem to get my head around how to call a function without issue of it being static or object errors....or simply, it doesn't work. I have built an MFC MDI using the wizard, compiled it...great...starts up works fine. The point, I'm trying to write messages to the output panes......3 of them...find/debug/build. There is pre-code that starts up showing the controls all work etc....so structurally I have done nothing to alter the code from the wizard.....all is right with …

  5. Teddy Rogers
    Started by Teddy Rogers,

    Download Link: http://www.networkdls.com/Download/CRC32.zipTed.

    • 2 replies
    • 5.9k views
  6. ra1n
    Started by ra1n,

    I'm trying to set a page of memory to PAGE_EXECUTE only, I don't want any reads or writes to be possible to this page. However, after setting the page protection to PAGE_EXECUTE, read attempts can freely be made. I assume this has something to do with the CPU needing to fetch instructions from the RAM? anyway, is there any way that I can accomplish my goals here? that is: can I set a page to execute only such that no read or write attempts can be made on said page?

  7. CodeExplorer
    Started by CodeExplorer,

    Decoding xmm instruction ??? like: https://c9x.me/x86/html/file_module_x86_id_204.html I've investigated a bit distorm: https://github.com/gdabah/distorm/tree/master/src https://github.com/gdabah/distorm/blob/master/src/instructions.c static _InstInfo* inst_vex_lookup(_CodeInfo* ci, _PrefixState* ps) { ... /* start can be either 1 (0x0f), 2 (0x0f, 0x038) or 3 (0x0f, 0x3a), otherwise it's illegal. */ switch (start) { case 1: in = Table_0F; break; case 2: in = Table_0F_38; break; case 3: in = Table_0F_3A; break; default: return NULL; } in = InstructionsTree[INST_NODE_INDEX(in) + *ci-&gt…

  8. CodeExplorer
    Started by CodeExplorer,

    Clr Profiler - difficulties on communications - on tracing result result back from dll to main exe's listview. I have an Visual Studio 2010 project, profiler.dll is made on C++, main exe interface is also made on C++. I've set two environment variables: Cor_Enable_Profiling=1 COR_PROFILER={DFEC737C-D0B1-4b86-A6FD-FDD998BEEB03} and I start the process with CreateProcess The problems comes that I can't log event information back to main exe interface - listview. Profiler dll gets called inside traced process. Already tried: main exe: unsigned int wndHandle = (unsigned int)GetDlgItem(IDC_LIST1)->m_hWnd; char buffer[10]; std::sp…

    CodeExplorer
  9. justdream
    Started by justdream,

    Hi guys, I've coded a basic memory scanner(DLL) in Delphi to search a string in game's memory.. but I'm with a problem.. After a few seconds scanning, the scan stops.. and I don't know why... Can you help-me? function HexToInt(s : string) : Int64; begin if (s <> '') and (s[1] <> '$') then result := strToInt64('$' + s ) else result := strToInt64(s); end;procedure FirstScan(valor: string); var dwEndAddr : dword; i:dword; mbi : TMemoryBasicInformation; valor:string; begin while (VirtualQuery(Pointer(DWORD(mbi.BaseAddress) + MBI.RegionSize), MBI, SizeOf(MEMORY_BASIC_INFORMATION))=SizeOf(TMemoryBasicInformation)) do begin if (MBI.State = MEM_COMMIT) a…

    • 14 replies
    • 10.9k views
  10. LCF-AT

    Hi guys, I'm trying to find out how to make this (title question) possible. Normally I'm using Windows Explorer as file manager and the WE does handle the drag & drop function so that all other app windows which are set in from on the WE area keep in front when you do press the left mouse down on any selected file/s so that you can move that file in any other app window if you want. Just a normal drag & drop from WE into any other app Window like Notepad for example. I would like to know how to code this. So what I have to do or possibly hook to prevent setting the focus on my own app when I press left mouse etc you know. Since a while I'm using another …

    Teddy Rogers
  11. CodeExplorer
    Started by CodeExplorer,

    Looking for low level x86 dissasembler code c++ I want it at low level with knowing everything is going on, altrought information from libraries may bring usefull information. In the end I want to grab all operands, but that's final step.

    CodeExplorer
  12. CodeExplorer
    Started by CodeExplorer,

    error C2133: 'cmddata' : unknown size in h file: extern const t_cmddata cmddata[]; typedef unsigned long ulong; // Unsigned long typedef struct t_cmddata { ulong mask; // Mask for first 4 bytes of the command ulong code; // Compare masked bytes with this char len; // Length of the main command code char bits; // Special bits within the command char arg1,arg2,arg3; // Types of possible arguments char type; // C_xxx + additional information char *name; …

    CodeExplorer
  13. dilip35

    i need your help to make a script for my server its a easy script but its hard for me since i don't have any knowledge on the JavaScript and programming i already attached the script screenshot

  14. Skarz
    Started by Skarz,

    View File tuts4you Symbolic logo source for GIMP Hello friends. I try to prepare a classic logo for the forum. -Feel free to use in your projects or documents. I hope you will like it. note:Source file only xcf format. for GIMP. sory for photoshop users. Detailed previw ( click to support button in forum page.) Submitter Skarz Submitted 09/11/2016 Category Source Code

      • Thanks
      • Like
    • 8 replies
    • 6.6k views
  15. Diorma

    I tried this or that, but strangely, I am unable to compile https://github.com/ribthegreat99OrN0P/Agile.NET-Deobfuscator-Latest. can anyone give advise how to reinstate 'Echo' dependencies correctly? i cant find them neither in nuget search or anywhere. Tried to manually build Echo projects and reference their dll, but was tiresome and still they were not accepted in primary solution.

  16. Bang1338
    Started by Bang1338,

    Hi, I'm trying to make my program to play tracker This time, i'm using BASS hResource = FindResource(NULL, MAKEINTRESOURCE(IDR_BASS), "BINARY"); hResourceLoaded = LoadResource(NULL, hResource); lpBuffer = (LPBYTE)LockResource(hResourceLoaded); dwFileSize = SizeofResource(0, hResource); GetTempPath(MAX_PATH, szTempName); GetTempFileName(szTempName, "MOD", 0, szTempName); hFile = CreateFile(szTempName,GENERIC_READ | GENERIC_WRITE,0,NULL,CREATE_ALWAYS,FILE_ATTRIBUTE_NORMAL,NULL); WriteFile(hFile, lpBuffer, dwFileSize, &dwBytesWritten, 0); CloseHandle(hFile); hLibrary = LoadLibrary(szTempName…

  17. PeterN
    Started by PeterN,

    Is it possible to create a new process of a PE file which is already in memory? I need my PE file(parent) execute a PE file embedded inside but as a separate process, not in memory space of the parent.

    • 0 replies
    • 2.2k views
  18. Asif
    Started by Asif,

    as we know we can use it in .net , is there a way to use it on framework or netcore or netstanderd ?? https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/required

    • 10 replies
    • 3.8k views
  19. wunder
    Started by wunder,

    Hi I came across this ripp of a keygen by NGEN coded all apparently in masm32 http://cyberdoomsyst...ngen_matrix.rar I will upload it here if the link dies... does anybody have the source ? or does naybody have this keygen?? It looks like they used Unicode macros to get this going??

    • 7 replies
    • 7.7k views
  20. CodeExplorer
    Started by CodeExplorer,

    Remove use of cs-parser.jay, use instead cs-parser.cs ??? Useful links: https://www.codeproject.com/Articles/330184/How-does-it-work-in-Mono-s-C-compiler https://stackoverflow.com/questions/7944695/jay-the-mono-c-sharp-compiler-and-changing-the-grammar https://www.cnblogs.com/shanyou/archive/2012/09/03/2669711.html So I already have cs-parser.cs, the problem is that the unknown format file cs-parser.jay is used instead of cs-parser.cs, I see this while I'm debugging the program. How to fix that? My program is using NRefactory v5.2 Here is program uploaded: https://www76.zippyshare.com/v/wZpa0g6k/file.html

  21. CodeExplorer
    Started by CodeExplorer,

    DUMP of .Net memory assembly (ProFile): https://zditect.com/code/dump-of-net-memory-assembly-profile.html dump .NET assembly using profiler.

  22. CodeExplorer

    Read a xml without start format <?xml version="1.0" encoding="utf-8"?> in C# how to do it? .csproj file format old: <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>9.0.21022</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{B18A33EF-0831-44A1-84A9-DD1D16301856}</Pr…

  23. CodeExplorer
    Started by CodeExplorer,

    New Python Coders Be Like... https://www.youtube.com/watch?v=0MhVkKHYUAY 24 hours to compute a maxim between numbers... WTF?

  24. CodeExplorer
    Started by CodeExplorer,

    C# - get short name from type name ??? "Boolean" -> "bool" I remember of seeing something like this but don't remember where...

  25. ItIsInx
    Started by ItIsInx,

    Guys i tried to fix this control flow protection class but failed when i use it to protect some assemblies sometimes it cause crash or not injected in methods so can anyone tell me why ! or fix it or even guide me RTControlFlow.cs

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.