Did you mean by "easy" that you want to do as little programming as possible?
You could write a reusable function call inside of any if statements for playing sound.
Although I do not know how...
Type: Posts; User: Millerni456
Did you mean by "easy" that you want to do as little programming as possible?
You could write a reusable function call inside of any if statements for playing sound.
Although I do not know how...
Thanks for the reply techgnome,
Regarding the instancing of AutoCAD.... it's just like the instancing for Microsoft Excel:
Public acadApp As New AcadApplication
Public Sub Main()
Dim...
I probably should've mentioned this before, but even if you don't know exactly how to fix this, I still appreciate feedback/comments. If you guys know of anything that could be helpful towards...
Hey all,
I've been working with integrating AutoCAD into my VB6 Projects. I imagine that my question is not specific to AutoCAD, but that just happens to be what I'm using.
So, when I start my...
Hi MarkT,
This does exactly what I was trying to do.
To elaborate a little bit on your code, it's important to highlight this value: "intNewSelection = 3"
The "3" here is indicating the sum of...
When selecting a combo box, I tried scrolling through the items (using the mouse wheel), I would start getting duplicate values.
This is most likely because when scrolling, you do not trigger the...
That's really close SamOscarBrown. Thanks for that post.
The issue with it is that it becomes a little unpredictable when scrolling (although I never mentioned anything about scrolling above). ;)
...
The contents in the combobox are NOT dynamic. So if there was initially 3 elements, then there will always be 3 elements.
EDIT: The intention is to have the same number of boxes as there are...
Hey all,
I have a rather strange request, or well... I am requesting something that could possibly have an alternative solution.
I have 3 ComboBoxes all with the same data, and each ComboBox...
Surprisingly enough, I attempted that with no success. After reading your post I tried again and it works! :P
To be honest, I think I tricked myself since I had modified the exe title to what I...
When listing all of the files and searching for an executable, are there ways of confirming that the .exe being looked at matches the app?
Suppose I had two .exe's in the directory where my program...
Although App.EXEName looks good, this isn't what I'm looking for. App.EXEName is referencing the executable's title (defined in the projects properties), and not it's file name.
Even though when...
Hey all,
I have an application I've built and I want to increment the revision numbers on it just by changing the File Name of the compiled executable.
My hopes were to have my program look at...
Huzzah! Success!
I cannot believe it works! :)
Only down side is that I neeed to remember use the proxy link.exe file in order to VB6 to have Windows DLL Compatibility.
Aside from that, the...
Hey Bonnie,
Thanks for the reply.
Unfortunately, I've came across that article before and I wasn't successful in creating a DLL that I could load back into my VB6 Projects.
It does seem like...
I found another thread with the same issue:
http://www.vbforums.com/showthread.php?476472-Calling-global-function-in-module-in-another-project
It seems these Functions/Subs will indeed need to be...
Hey all,
What I'm trying to do is store some common Subs/Functions (that I would put in a Module) inside of an ActiveX DLL so that I can reuse the code for all of my applications.
I was hoping...
I realize this is old, but for the person out there that is googling for the answer... this is what I used for the process:
Solution:
'Returns the remainder of the division: num1 / num2....
Hey all!
My objective is to have a FileList which has black color text, but I don't want the user to be able to make selections (which highlights an item)
I was also looking to see if it was...
I suppose I should've mentioned that I wanted an easy time in design mode. That is... not having controls placed strangely in relation to other controls.
But anyways, I did try what you had...
True, and it seems SSTabs will partially help with my utlimate goal.
But I have a portion where one form directly leads to the next (in the case of a wizard): The first form requires files to be...
Hey all!
I'm trying to switch back-and-form between frames/forms during run-time, and would like to design each frame/form in design mode.
FYI: I've seen a lot of information about...
Okay! It's been fixed!
Unfortunately I cannot provide any reasons to the fix, but what I did was made this my last modifications to the Excel Spreadsheet. Even though I don't think something may...
Well it's good to know that this code should work! :P
FYI:
I've gone ahead a re-checked to make sure the appropriate row is correct (the "a" value).
Anyways, it prints the correct value, so it...
Hi all!
Sorry, but I'm going to be breif since I don't have much time....
I'm trying to create a formula cell that references only two others for simple multiplication.
I've tried using...