Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #3K
~8K People Reached
Favorite Forums

9 Posted Topics

Member Avatar for SlyMaelstrom

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 to set the control source as a string, and the string …

Member Avatar for kiran2010
0
665
Member Avatar for RahulV

[QUOTE=RahulV;821739][code=visualbasic] Private Declare Function Function_Name Lib "user32" () As Datatype [/code] I've found such lines used in many VB6 projects and tutorials. What is it? What actually is this used for? Are there more such function? How to find out more such function/properties? A detail explanation will be helpful and …

Member Avatar for vb5prgrmr
0
5K
Member Avatar for RahulV

[QUOTE=RahulV;819710]Hi, How can i open a PDF file in Form instead of using a shell to open it? Also i want to select some text in the opened PDF file and store it in a variable. Thank you.[/QUOTE]Adobe provides documentation on how to do this using their API and a …

Member Avatar for SlyMaelstrom
0
689
Member Avatar for SlyMaelstrom

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 title does not exist. Not for the pre-defined text box control in VB, anyway. However, it is …

Member Avatar for SlyMaelstrom
0
166
Member Avatar for RahulV

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 changing the code in the sub-routine, then you'd have to call it asynchronously in a new thread …

Member Avatar for hkdani
0
185
Member Avatar for venomocity

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 with in his code is using the Filename as the alias. …

Member Avatar for venomocity
0
179
Member Avatar for SlyMaelstrom

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:[CODE]If myTable.thisField[currRecord] == myTable.thisField[currRecord+1] then // Run a Query[/CODE] Does anyone know the VBA code for this? Thanks.

-1
105
Member Avatar for shakoush2001

[CODE]Form1->BorderStyle=bsNone; Form1->WindowState=wsMaximized; [/CODE] I believe...

Member Avatar for shakoush2001
0
462
Member Avatar for grandfilth

[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvbadev/html/exactlywhenisit.asp[/url] Try this. If you're not up for reading it, the code would be: Sub CopyWorksheet_Click() Range("A1").FormulaR1C1 = Now End Sub

Member Avatar for grandfilth
0
142

The End.