Search:
Type: Posts; User: jdc2000
Search:
Search took 0.04 seconds.
-
You could try getting the IPV6 address, and, if one is found and no IPV4 address is found, then show the message.
Possibly useful links:
...
-
Possibly useful links:
...
-
Possibly useful links:
https://support.microsoft.com/en-us/office/active-content-types-in-your-files-b7ff2e8a-4055-47d4-8c7d-541e19f62bea
...
-
I presume that you are NOT storing your database or other user-updateable files in that same Program Files (x86) folder. That would be a problem, and would explain why the application works in...
-
Have you tested the installed version on the same machine where the debug version was created and tested OK, using the same database?
-
Did you see the list of possible causes from the first link?
What type of database are you using? Access? SQL? Other?
-
Possibly useful links:
https://software-solutions-online.com/operation-must-use-an-updateable-query/
...
-
https://docs.microsoft.com/en-us/troubleshoot/developer/webapps/iis/health-diagnostic-performance/http-error-500-19-webpage
-
If you are creating the form, you can add a keyboard shortcut that, when used, will move the input cursor to the text box where your bar code is to be entered/scanned. Then, with an appropriate...
-
If your application that you are scanning bar codes into has a keyboard shortcut to move the cursor to that input field, some bar code scanners can add a prefix code to the bar code. If you add a...
-
Possibly useful links:
https://www.appsloveworld.com/vba/100/3/how-do-i-align-a-userform-next-to-the-active-cell
https://bettersolutions.com/vba/userforms/positioning.htm
...
-
It is also possible that the Code 128 bar code font that you have is not correct. I have seen this occur on other systems. See if you can find another free Code 128 bar code font to download and...
-
What are you doing with these bar code labels? Are you generating them and printing them for use on containers, or are they something that is already supplied and you just need to scan them?
If...
-
Possibly useful links:
https://stackoverflow.com/questions/64933979/discord-get-user-by-id
...
-
Possibly useful links:
https://social.msdn.microsoft.com/Forums/en-US/c08f220d-5808-4952-ad67-ac4829a87122/could-not-load-file-or-assembly-microsoftreportviewercommon-version15000?forum=vssetup
...
-
This is also why I posted the link to the Process.Start documentation.
-
D:\D:\###\###\settings.txt is an illegal path name. I am betting that you really meant something like this:
D:\123\456\settings.txt
D:\123\456\favorites.txt
Post the code in your application...
-
Post the Process.Start code that you are using.
Do you need to specify the .txt files that the .exe file uses? It would appear that if you are double clicking on a program icon that you should...
-
Print a screen capture of the labelview label and see if the barcode produced matches what you are getting from the printed label. Check the bars and spaces for width to see if they are the same.
-
If you are not going to make the check box array visible, what purpose will it serve? What are you going to do with it? If we knew that, we might have some other ideas on a much more simple method...
-
Possibly useful links (if you have not already seen them):
https://www.vbforums.com/showthread.php?877359-RESOLVED-Get-UNC-from-network-mapped-drive-letter
...
-
Check the printer settings to see what DPI and bar code font is actually being used. Try a different bar code font if necessary. The quality and distance between the bars can affect the...
-
How many characters are actually being printed on those labels? A one inch wide label is quite small. You will not be able to get many characters in bar code form on a label that small. How wide...
-
Add some MsgBox statements at each stage of the macro to see where the code is actually getting to and what it it processing during normal mode, after the For, the If, and the Then, and before the...
-
Possibly useful links:
https://www.e-iceblue.com/Tutorials/Spire.Doc/Spire.Doc-Program-Guide/Paragraph/Get-Paragraphs-by-Style-Name-in-Word-in-C-VB.NET.html
...
-
Possibly useful link:
https://www.spreadsheetweb.com/how-to-change-csv-delimiter-in-excel/
-
Are you saying that when you pass the mouse pointer over the VBA editor window, it automatically gets the focus without clicking anywhere on it, and then when the mouse cursor reaches the Excel...
-
In that case, you will probably need to re-size the converted Word documents when making them into .pdf files.
Possibly useful links:
...
-
If you have multiple Word documents already created, just combine those first and then just Save As a .pdf file. That would eliminate the need for pdfSharp and solve your formatting issues. I...
-
In the Changed event of the MaskEdBox, capture the data from the control to a variable. Then, you should be able to replace that data in the control on a LostFocus or Exit event for that control.
-
Are you merging text into your Word document, or images?
Does the merged Word document look and print OK?
A better idea might be to merge all of your content into Word, so that you have one...
-
Does the Changed event for the MaskEdBox fire when you right-click and Paste the data? If it does, you should be able to capture the data from that and restore it.
-
Can you save the pasted data as soon as it is entered, and then restore it when focus is lost?
-
Also, from what I have seen, the actual .dll file for VBA may be vbe7.dll
A Google search for "disassemble vbe7.dll" might return some useful links to help in locating where to patch it.
-
Assuming that the VBA .dll file is similar, you would need to locate the correct places to patch it. That might require some additional research.
-
Possibly useful links:
https://www.codeproject.com/Questions/97679/How-to-change-the-color-of-the-title-bar-in-a-vb-n
-
-
There are ways to do this. Possibly useful links:
https://stackoverflow.com/questions/29053272/grid-control-that-can-be-placed-on-userform
http://www.vb-helper.com/howto_vba_editable_grid.html...
-
If ActiveSheet.Name <> "EXPORT" Then
MsgBox "Wrong sheet to Export!", vbOKOnly, "Error"
Exit Sub
End If
-
If an Office application loses focus, it generally ignores the first mouse click or Enter key you use on it.
As a test, add a MsgBox after the Dim statements in that Sub and see what happens on...
|
Click Here to Expand Forum to Full Width
|