Search found 63 matches
- Mon Mar 20, 2017 5:44 pm
- Forum: MMB (Legacy)
- Topic: SQLite, HTML output and some comparsion
- Replies: 6
- Views: 2264
SQLite, HTML output and some comparsion
Hey guys, I have some database here: html_file$ = '<SrcDir>\table.html' SQL$ = 'SELECT some_id, some_other_id, some_name, some_info FROM blah;' I fetch the information from SQLite and then I do some text-file HTML output with the database entries: For i=1 To Rows Rows$[i] = GetArrayItem(Results$,Del...
- Tue Feb 21, 2017 6:58 pm
- Forum: MMB (Legacy)
- Topic: help me please
- Replies: 4
- Views: 1370
Re: help me please
You can create a button that resets the variable. In scripting:
EditBox$ = ''
EditBox$ = ''
- Mon Dec 19, 2016 12:49 pm
- Forum: MMB (Legacy)
- Topic: Need a help to make a registry access
- Replies: 8
- Views: 3244
Re: Need a help to make a registry access
On my PC, Windows 10 asks for admin previlegies, but I've you have an issue with calling regedit /s, you can embed an optional batch-file and call it with parameters. Within the batch, you can use different ways to elevate: https://www.raymond.cc/blog/trigger-uac-elevation-from-command-line-with-ele...
- Thu Nov 24, 2016 6:15 am
- Forum: MMB (Legacy)
- Topic: Need a help to make a registry access
- Replies: 8
- Views: 3244
Re: Need a help to make a registry access
Run("reg.exe","add "HKLM\SOFTWARE\Intel\GMM" /v DedicatedSegmentSize /t REG_DWORD /d xxx") Your syntax is incorrect. You have to escape the chars and call a seperated string as a parameter: params$ = 'HIDE ' + 'add "HKLM\SOFTWARE\Intel\GMM" /v DedicatedSegmentSize /t REG_DWORD /d xxx' *** Run("reg....
- Wed Nov 23, 2016 9:48 pm
- Forum: MMB (Legacy)
- Topic: Need a help to make a registry access
- Replies: 8
- Views: 3244
Re: Need a help to make a registry access
You can execute reg.exe. For example:
reg add "HKLM\SOFTWARE\Intel\GMM" /v DedicatedSegmentSize /t REG_DWORD /d 256
reg add "HKLM\SOFTWARE\Intel\GMM" /v DedicatedSegmentSize /t REG_DWORD /d 256
- Mon Nov 14, 2016 7:02 am
- Forum: MMB (Legacy)
- Topic: MMB Resources (Samples / PlugIns / Misc)
- Replies: 14
- Views: 30429
Re: MMB Resources (Samples/PlguIns/Misc)
I recommend a managed list/thread here in the forum or a table at Google Docs! The list could be maintained and every plugin can be listed with a small desc., screenshot etc. And mirrored on different hosts. I created an example document where the plugins could been added and sorted: https://docs.go...
- Thu Nov 10, 2016 9:51 am
- Forum: MMB (Legacy)
- Topic: Delboy DMFX Player
- Replies: 14
- Views: 8717
Re: Delboy DMFX Player
I can't run DMFX with Windows 10 x64. Same problem on 2 different systems. Any way to debug this?
- Thu Nov 10, 2016 7:54 am
- Forum: MMB (Legacy)
- Topic: Imagesearch ?
- Replies: 4
- Views: 2413
Re: Imagesearch ?
Invest some time to describe exactly what you want. Noone wants to watch Youtube videos with stupid sound or useless information just to answer your question.
- Thu Nov 03, 2016 1:23 pm
- Forum: MMB (Legacy)
- Topic: Imagesearch ?
- Replies: 4
- Views: 2413
- Wed Nov 02, 2016 11:45 am
- Forum: MMB (Legacy)
- Topic: Editbox Search
- Replies: 10
- Views: 5177
Re: Editbox Search
I don't think there is a way mmb would at runtime get all the names of all objects automatically without a script to recognize those objects, that means that if you want to recognize any object, you will have to explicitly declare the objects in your scripts which in turn can be called into the lis...