Forum: Visual Basic 4 / 5 / 6 Mar 9th, 2009 |
| Replies: 2 Views: 1,815 It's declaring a function from an external library to be used in the current class or module. Private tells the compiler (or interpreter) that you want the sub procedure or function to be defined for... |
Forum: Visual Basic 4 / 5 / 6 Mar 8th, 2009 |
| Replies: 5 Views: 1,107 You can't in any way other than the documentation that I provided. This is Adobe's documentation telling you how to access the data. Now... if you want to open it in a web browser object, then you... |
Forum: Visual Basic 4 / 5 / 6 Mar 7th, 2009 |
| Replies: 5 Views: 1,107 He said he wants to select some text and store it into a variable. I assume he means he wants it open to be able to read the data with the code.
To the OP, another point I forgot to make. Text in... |
Forum: Visual Basic 4 / 5 / 6 Mar 6th, 2009 |
| Replies: 10 Views: 839 Right, there is a huge difference between having events and having to handle them yourself. Regardless of how it's handle, there is an event when you press a key. I'm not trying to stop the event,... |
Forum: Visual Basic 4 / 5 / 6 Mar 6th, 2009 |
| Replies: 10 Views: 839 Yeah, believe me. I was taught on C++. I know all about event handling. This is not necessary and I'm not sure why you believe it is. I didn't ask to change how copy functionality, there is no need... |
Forum: Visual Basic 4 / 5 / 6 Mar 6th, 2009 |
| Replies: 8 Views: 765 Google it.
There is way too much to be said about multi-threading to write in a reply to this thread and I don't have the time or patience to write it all. Not to mention, I wouldn't want the... |
Forum: Visual Basic 4 / 5 / 6 Mar 6th, 2009 |
| Replies: 10 Views: 839 I think the suggestions that I provided are simplier and more portable than that. This is a distributed MDE. Do you really want me to package a DLL with it for some small copy feature?
Once again,... |
Forum: Visual Basic 4 / 5 / 6 Mar 6th, 2009 |
| Replies: 5 Views: 1,107 Adobe provides documentation on how to do this using their API and a javascript object. You need Acrobat professional on your computer to perform certain operations. As far as reading, I'm sure there... |
Forum: Visual Basic 4 / 5 / 6 Mar 4th, 2009 |
| Replies: 8 Views: 765 Do you think he is looking to avoid executing it, at all? I didn't even consider that's what he was asking. He said stop execution and I saw that exec() continued in an infinite loop, so I assumed he... |
Forum: Visual Basic 4 / 5 / 6 Mar 4th, 2009 |
| Replies: 10 Views: 839 I'm not talking about something spawned from a mouse-click event. This event doesn't tell you what you're clicking, it tells you where you're clicking. Even if the event fired when you click on the... |
Forum: Visual Basic 4 / 5 / 6 Mar 4th, 2009 |
| Replies: 10 Views: 839 Thanks, as I said in my original post, I can handle Ctrl-C on a key-press event. The problem is handing the right-click option. I don't want to leave any loose ends for the end-user to complain about... |
Forum: Visual Basic 4 / 5 / 6 Mar 4th, 2009 |
| Replies: 6 Views: 707 What blanks? He didn't give you any blanks. The only thing he left as a variable is the filename of the audio file you wish to play. Nobody would know that except you. The only thing I don't agree... |
Forum: Visual Basic 4 / 5 / 6 Mar 4th, 2009 |
| Replies: 8 Views: 765 You're asking to make code do something different without changing it. It's kind of difficult to do.
I would say, if you wanted to halt execution on the sub-routine before it completes without... |
Forum: Visual Basic 4 / 5 / 6 Mar 3rd, 2009 |
| Replies: 10 Views: 839 This actually pertains to Visual Basic for Application in Access 2003, but I imagine that this forum should yield accurate information for a simple query such as this.
Naturally, the event in the... |
Forum: Visual Basic 4 / 5 / 6 Dec 27th, 2006 |
| Replies: 0 Views: 2,188 I'm trying to make an event procedure in VBA that will compare the same field of two records for a conditional statement. Here is some psudocode of what I want:If myTable.thisField[currRecord] ==... |
Forum: Visual Basic 4 / 5 / 6 Oct 27th, 2006 |
| Replies: 5 Views: 50,484 Wow... here is another reason why bumping posts suck... I get a stupid email from a thread I subscribed to almost a year ago. Thanks for the spam, Ganesh. |
Forum: Visual Basic 4 / 5 / 6 Dec 8th, 2005 |
| Replies: 5 Views: 50,484 Yep, that makes sense. Thank you. |
Forum: Visual Basic 4 / 5 / 6 Dec 8th, 2005 |
| Replies: 5 Views: 50,484 Hi, I'm doing some work for an Access Database but I caught a snag writing an event. I want the event to (among other things) change the Control Source of an object. This is no problem, except I have... |
Forum: C++ Oct 30th, 2005 |
| Replies: 4 Views: 2,612 Oh, I see. You were looking for a maximized screen like a video game would be maximized. I understood it like you wanted a standard windows form maximized. |
Forum: C++ Oct 29th, 2005 |
| Replies: 4 Views: 2,612 Form1->BorderStyle=bsNone;
Form1->WindowState=wsMaximized;
I believe... |
Forum: Visual Basic 4 / 5 / 6 Oct 29th, 2005 |
| Replies: 3 Views: 3,780 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvbadev/html/exactlywhenisit.asp
Try this.
If you're not up for reading it, the code would be:
Sub CopyWorksheet_Click()
... |