Wednesday, August 16, 2017
Tuesday, April 11, 2017
Cara Peram Alpukat
- Potong sedikit ujung alpukat
- Tutup dengan tisu rekatkan dengan isolasi
- Simpan di tempat terbuka
- Cek setiap hari mana yang sudah matang (Di pencet agak empuk Insya Allah sudah matang merata)
- Jika sudah matang, bisa di simpan di kulkas sekitar 3 hari
Monday, February 27, 2017
Excel 2013 error; [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
Saturday, February 04, 2017
VBA Excel - Using CreateObject
There are some very useful libaries that are not part of Excel VBA.
These include the Dictionary, Database objects, Outlook VBA objects, Word VBA objects and so on.
These are written using COM interfaces.
The beauty of COM is that was can easily use these libraries in our projects.
If we add a reference to the library we create the object in the normal way.
' Select Tools->References and place a check
' beside "Microsoft Scripting Runtime"
Dim dict As New Scripting.Dictionary
If we don’t use a reference we can create the object at run time using CreateObject.
Dim dict As Object
Set dict = CreateObject("Scripting.Dictionary")
The first method is referred to as Early Binding and the second is referred to as Late Binding(see Early versus Late Binding) for more details.
http://excelmacromastery.com/vba-objects/#Subtle_Differences_of_Dim_Versus_SetMonday, January 30, 2017
windows cannot be installed on this disk. The selected disk is of the GPT partition style.
fresh computer build, on the screen choosing which partition to use i see "windows cannot be installed to disk 0 partition 2. (show details)", when i click show details i get the message, "windows cannot be installed on this disk. The selected disk is of the GPT partition style." What can i do to install window?
Method #1: 1. Boot up to installation DVD/CD. 2. Click install but don't follow through. 3. Press SHIFT-F10 to bring up console. 4. Type "diskpart" 5. Once inside diskpart type: -> list disk (find the one you want to convert) -> select disk 0 (select the one you want from the list) -> convert mbr (should take a second or two) -> quit 6. Continue with install
Method #2: 1. Boot up to installation DVD/CD. 2. Click install but don't follow through. 3. Press SHIFT-F10 to bring up console. 4. Type "diskpart" 5. Once inside diskpart type: -> list disk (find the one you want to convert) -> select disk 0 (select the one you want from the list) -> clean (wait an hour or so until its done) -> quit 6. Continue with installhttps://answers.microsoft.com/en-us/windows/forum/windows_7-windows_install/windows-cannot-be-installed-on-this-disk-the/8fa72a3e-10c5-47da-a040-1e0db62af309
