|
How to make template function for array??
|
| |
Hi All This is test code '============================= ============================ Public Type Test1 t As String i As Integer End Type Public Type Test2 t As String i As Integer l As Long End Type Public Tests1() As Test1 Public Tests2() As Test2 Public Function init() ReDim Tests1(0) As Test1... more »
|
|
retrieve date from string
|
| |
Hi All, I search a word document and retrieve a written date, for example: 20 October 2008. Now I need to get from this string the date in format YYYYMMDD. When the string is in the right format I need to have it back as a string like: "20081020". So I can use it in the filename. Marco
|
|
Control (command buttons) display problem
|
| |
Sometimes, there are some black spots (mostly below) the command buttons. Resizing removes them, or shifts them into a different location. What that can be and how to deal with it? I have clipped some samples of them for viewing in here: 1. [link] There are something black appearing under OK button.... more »
|
|
Opening a folder and auto-selecting file in it
|
| |
Hello How do I open a particular folder windows explorer from VB and automatically highlight a particular file in windows explorer ? I know this is possible cuz Ive done it earlier, I just cant remember which APIs did it. Please advise. Thank you
|
|
How to Handle WinWord Control By VB6
|
| |
we are working on app. in which we need to handle WinWord And only allow few users to use all the available feature of WinWord (new, save, cut, copy, paste, etc...) and other user get access to read that document... we are working in VB6 so it is possible to handle WinWord by this or any code in it... more »
|
|
Buffers
|
| |
1) Is my buffer operating asychronously ?? In other words, once I add the data to the buffer, control flow should be finished in this proc since the buffer is handled by a separate timer--or am I wrong? 2) The procedure call to IsRTState_Idle is the slowest point since it must evaluate (Select/Case) what state the buffer is in. Anyway to handle this... more »
|
|
Uninstall a product with VB6 code
|
| |
Hi- I need uninstall a VB6 application. This application was installed with a msi package. I try: Shell "msiexec /x package.msi" But I don’t know the path of package.msi, then fail. What can I do? Suggestions... Thanks in advanced.
|
|
Publish CLR as an executable
|
| |
I have a CLR project that I want to publish as an executable. When I try to use the VBC /target:exe command I get an error indicating that there is no sub-form. All I have in the project is a stored procedure and sql script that has an embedded cursor. Is there a way to do this?
|
|
vb. net 2.0 create a "value" copy of a form
|
| |
Scenario: I have an Mdi main form wich contains childreen forms. Every child form has a lot of controls such as textbox and datagridview. I'd like to know if it's possible to make a copy of a form, but not in referenced mode. e.g. Dim myChildNumber1 as new MyCustomForm() Dim myInstanceNumber1 as MyCustomForm()... more »
|
|
Problem figuring out a date
|
| |
Hi, The new version of firefox is storing their expire date in this 10 digit format: 2145801610 and according to the information in the browser this should be the date: Wednesday, December 30, 2037 9:00:00 AM Does anyone know how they are converting that number to that date. I have tried IsDate and Format, but get errors for wrong value. So I am assuming... more »
|
|
|