How to Determine StrokeThickness of Application Bar - windows-phone-8
I am having trouble determining the application bar button StrokeThickness. I've come as far as either it being 3 or 4 but I need to know the exact value
If you want to recreate the circle used in the application bar buttons you'll find a copy at
"C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v8.0\Icons\Dark\basecircle.png"
Related
Show Windows File Copy Progress Bar in Access-VBA (2016)
Copying many files from several sources to several destination over our network using MS Access 2016. Can use SysCmd to show Progress Bar on status Bar. Can also show file copy counter as a msg on status bar via Application.Echo True, "msg". But neither is as informative or visually appealing as that used by Windows file copy progress bar. Have looked at several customized progress bars on forms. If I could develop each to show the same information and progress bar as the one used by Windows, it'd be fine. But I wonder if there's a way to call the one used in Windows from MS Access VBA. Thank you in advance.
As far as I know, the only way to achieve this is to create a custom COM library. Because the explanation is rather long, I will refer you to some resources (you will need some version of Visual Studio to create the library, and some experience with either C# or VB.Net). You will want to call FileSystem.CopyFile in your library, with ShowUI set to AllDialogs (https://msdn.microsoft.com/en-us/library/ms127965(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb). See http://www.geeksengine.com/article/create-dll.html for instructions how to create the library, and register it in Access.
PhpStorm navigate to -> file search only for Twig files
I have strange problem connecting with PhpStorm IDE. I use version 2016.3.2 Build #PS-163.10504.2. I love using Ctrl + Shift + N for searching files which I need to override. I have 2 project (one new, one old) and in old file searching works fine and in new search only for twig files and nothing else. Is there any configuration I need to change?
Check filter -- the blue Funnel icon on the right top corner of that popup -- you may have selected to list files of certain types only. Otherwise -- try universal File | Invalidate Caches... and restart IDE -- it usually helps in such "suddenly stop working" situations.
Is it possible to change an .accde file icon to a custom image?
I am trying to make my Access (2013) application look less like Access and more like a "real" piece of software. One of the things I am trying to accomplish is changing the icon from the normal A/grid/lock to an image of my choosing. Is this possible? If not really, what is my next best option? Thanks!
You can change the icon that Access shows when running your database, it's under Options -> Current database. You cannot change the icon that Explorer shows for your .accde file. Of course you can create a shortcut with the commandline to MSACCESS.EXE and your database, and that shortcut can have a custom icon. You may also be interested in this answer by Albert D. Kallal: https://stackoverflow.com/a/24638829/3820271
I just developed this method yesterday to allow an Access Executable to have a custom icon. It does involve making some additions to your computer's registry. Be aware I did this for Access 2010 on a Windows 7 machine. I have not tested this for windows 8 or 10, but I do think it will be the same. I know the entries of .14 ONLY refer to Access 2010. Access 2013 should be .15 and Access 2016 should be .16. When you export your "accde" registry entries to a .reg file, stick with the .14, .15, or .16 that is exported for your specific system. The only thing you will be changing is any occurrence of "accde" to "accxx" with the "xx" being your new letters for your chosen suffix for the Access executable database. Below is the .reg file that will perform the registry "fixes" and I have included a few notes along the way. This is not for the beginner, but I do believe a seasoned Access developer should be able to follow. Are you a little uncomfortable with the registry? Use Google to help you find a write-up or two about the registry and how to make changes to the registry. OK, the .reg file: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.accVR] "Content Type"="application/msaccess.exec" #="Access.ACCVRFile.14" [HKEY_CLASSES_ROOT\.accVR\Access.ACCVRFile.14] [HKEY_CLASSES_ROOT\.accVR\Access.ACCVRFile.14\ShellNew] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ FileExts\.accVR] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ FileExts\.accVR\OpenWithList] "a"="MSACCESS.EXE" "MRUList"="a" [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ FileExts\.accVR\OpenWithProgids] "Access.accVRFile.14"=hex(0): [HKEY_CLASSES_ROOT\Access.ACCVRFile.14] #="Microsoft Access ACCVR Database" [HKEY_CLASSES_ROOT\Access.ACCVRFile.14\CLSID] #="{73A4C9C1-D68D-11D0-98BF-00A0C90DC8D9}" [HKEY_CLASSES_ROOT\Access.ACCVRFile.14\DefaultIcon] #="C:\\_Work\\VR\\VR Logo.ico" [HKEY_CLASSES_ROOT\Access.ACCVRFile.14\shell] [HKEY_CLASSES_ROOT\Access.ACCVRFile.14\shell\Open] [HKEY_CLASSES_ROOT\Access.ACCVRFile.14\shell\Open\command] #="\"C:\\Program Files (x86)\\Microsoft Office\\Office14\\MSACCESS.EXE\" /NOSTARTUP \"%1\" %2 %3 %4 %5 %6 %7 %8 %9" "command"=hex (7):79,00,6b,00,47,00,5e,00,56,00,35,00,21,00,21,00,21,00,21,00,\ 21,00,21,00,21,00,21,00,21,00,4d,00,4b,00,4b,00,53,00,6b,00,41,00,43,00,43,\ 00,45,00,53,00,53,00,46,00,69,00,6c,00,65,00,73,00,3e,00,32,00,41,00,5a,00,\ 7e,00,60,00,4f,00,37,00,71,00,43,00,3f,00,4f,00,57,00,2c,00,66,00,65,00,5a,\ 00,79,00,63,00,78,00,68,00,20,00,2f,00,4e,00,4f,00,53,00,54,00,41,00,52,00,\ 54,00,55,00,50,00,20,00,22,00,25,00,31,00,22,00,20,00,25,00,32,00,20,00,25,\ 00,33,00,20,00,25,00,34,00,20,00,25,00,35,00,20,00,25,00,36,00,20,00,25,00,\ 37,00,20,00,25,00,38,00,20,00,25,00,39,00,00,00,00,00 From top line down: Any .reg file has to start with the correct name of the regedit.exe you will be dealing with. In this case I am dealing with Windows 7, therefore version 5.00. The rest of the code in this file came straight out of the registry. Within [HKEY_CLASSES_ROOT] I scrolled down to the entry ".accde" Right click on this and select the "Export" option from the drop down menu. Provide the folder and file name to export to. Now you need to do the same within [HKEY_CURRENT_USER]. Here you will need to: Scroll to Software, then Microsoft, then Windows, then CurrentVersion, then Explorer, then FileExts, and finally .accde. Right click, select Export, etc. And lastly, within the [HKEY_CLASSES_ROOT] scroll to "Access.ACCDEFile.14" Right click on this and select the "Export" option, provide the saving info and save the file. Put these three files together, leaving out the Windows Registry Editor Version line from the second and third files. What I did from here was to create my own suffix rather than use the Microsoft .accde. I used the initials of the company this software is being written for. In this example, I will just use my own initials, VR. Keeping the ".acc" and just changing the "de" to whatever I will be using for the new suffix in order to use my custom icon. You do not need to stay with only two characters. In this new .reg file, carefully work your way through the file changing the "de" (or "DE") within any accordance of "accde" (or "ACCDE") you find. For example, one of the places you will find "ACCDE" is in the string "[HKEY_CLASSES_ROOT\Access.ACCDEFile.14" Change the "DE" to "VR" (for this example) giving you the new string "[HKEY_CLASSES_ROOT\Access.ACCVRFile.14" When you are finished, I suggest you search for the string "accde" within the file to be sure you have changed them all to the new suffix you are going to use. Before using this .reg file to update your registry, BACKUP YOUR REGISTRY!!!
After moving my Windows Store App project I can't compile it because .resw not found
I have a Problem with a Windows Store App. I moved the folder and now I cant compile it, I get the error: Fehler 2 File C:\[old path]\Strings\en-US\Resources.resw not found. C:\[new path]\MakePRI I dont know how to fix it because the app is in the same relative path in the project as before. any hints for a solution?
This item was probably added to the project with absolute path. You can fix that in one of two ways: In SolutionExplorer remove Resources.resw from the project. Then click on Show All Files icon to make the file appear in its folder although it's not included in the project (I understand you did copy it over when moving the project). Now right click on the file and select Include In Project. After that you can again turn off Show All Files. In Solution Explorer right click on the project and select Unload Project. Now right click on the project again and select Edit ProjectName.csproj. In the file find Resources.resw and replace the existing tag (and any subtags) with <PRIResource Include="Strings\en-US\Resources.resw" />. Save the changes and close the file. Right click on the project again and select Reload Project.
I got into this problem and I found an easy solution. Open the project and it will show the error. Now right click on the App name in Solution Explorer (on the right hand side) and select Build.This will set the path again and the project can be run now.
Associate a help file with a library in the VBA object browser
I have a reference to the Microsoft Scripting Runtime (scrrun.dll) in one of my Access projects. If I open the object browser in VBA (by pressing F2) and choose 'Scripting' from the library dropdown it shows me all of the properties, functions, etc. for the Scripting library. If I choose one of these functions and then click on the help button (with the yellow question mark) it opens a help window with the title of 'Microsoft Visual Basic Help.' It acts like it is unable to find the help file for this library. I can manually find the help file on my computer at the following location: "C:\Program Files (x86)\Common Files\microsoft shared\VBA\VBA6\1033\VBLR6.CHM". (Note: I have 64-bit Win 7, thus the '(x86)' in the Program Files folder name.) I tried copying the help file to the following locations with no luck: "C:\Windows\Help\VBLR6.CHM" "C:\Windows\SysWOW64\VBLR6.CHM" (I believe SysWOW64 folder is the Win7 64-bit equivalent of C:\Windows\System32) I have had this same problem with other referenced libraries as well, so I'm looking for some kind of generic solution. I'm hoping there is some way to specify a location for the help file of a particular reference, or something else along those lines.
Copy VBLR6.CHM to "C:\Program Files (x86)\Microsoft Office\Office10\1033\VBENLR98.CHM" That's the short answer for this specific case...here's how to get there which may be useful for getting other help files associated: Download Process Monitor (currently hosted here: http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx or do a Google search for Process Monitor) Run Process Monitor with the following filter: 'Process Name' 'is' MSOHelp.exe 'include' Open object browser in VBA Choose the library (Scripting in this case) Choose any function, property, or event in the library and click on the yellow question mark (this should open an empty window with the title Microsoft Visual Basic Help) Go back to Process Monitor and scroll all the way to the bottom of the list; make sure the Path and Result columns are displayed There should be dozens of 'PATH NOT FOUND' and 'NAME NOT FOUND' Results in the list. For each one of these results, there should be a corresponding Path where MSOHelp was looking for the help file. Choose any one of these and create a file with that path name. I chose to create a copy of the help file from its original location to the new spot and rename it to match what MSOHelp was looking for. My best guess is that the scrrun.dll contains the name of the help file and over the years the dll stayed the same but the help file was renamed, modified, etc.