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.

Copy Field To Clipboard

Featured Replies

Posted

How i can copy the serial field to clipboard?

i don't know what is function :teehee:

the code is:

.data?
SerialBuffer 512 dup(?).code
if eax==IDC_COPY
invoke ???

Can you give me an example?

Edited by StUd

.elseif EAX==IDC_COPY
invoke SendDlgItemMessage,hWnd,IDC_SERIAL,EM_SETSEL,0,-1
invoke SendDlgItemMessage,hWnd,IDC_SERIAL,WM_COPY,0,0

In attachment Keygen Template by Goppit

keygen_template.rar

Edited by Vrane

  • 4 weeks later...

Thx Vrane :thumbsup:

If you've got no usual window_textbox,

or if it's for a selfkeygen,

then you could go like this:

.data ?
nLen dd ?
hMem dd ?
pMem dd ?
.code
Copy_2_Clipboard:
invoke lstrlen, ADDR String_2_Copy
inc eax
mov nLen, eax
invoke OpenClipboard, 0
invoke GlobalAlloc, GHND, nLen
mov hMem, eax
invoke GlobalLock, eax
mov pMem, eax
lea esi, String_2_Copy
mov edi, eax
mov ecx, nLen
rep movsb
invoke EmptyClipboard
invoke GlobalUnlock, hMem
invoke SetClipboardData, CF_TEXT, hMem
invoke CloseClipboard

Create an account or sign in to comment

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.