| Thread | Last Post | Replies |
|
| CLng | 19 Jun 2004 13:07 GMT | 4 |
What _exactly_ is the syntax of the string that CLng will accept without throwing an exception (an "error" in VB speak)? where is this documented?
|
| Change VBA absolute reference to relative | 18 Jun 2004 14:16 GMT | 4 |
I have recorded the following macro using Excel. Cursor was in cell E7 Selection.Cut Range("E5").Select ActiveSheet.Paste
|
| Point in the right direction | 17 Jun 2004 21:55 GMT | 2 |
I am completely new to VB (have been using MS Access with an SQL Server backend). In access I have a report with subreports where each report is based on a table that is populated at runtime with the necessary data. Subreport is
|
| Assigning Default Value to Object Property in Class Module | 16 Jun 2004 01:17 GMT | 10 |
I use a couple class modules in my projects to speed development and am looking to do the following: Private mvarFieldObject as Object Public Property Set FieldObject(ByVal vData As Object)
|
| Send music files | 12 Jun 2004 00:31 GMT | 2 |
i'm a student informatics and i'm busy with a music database project. I've a database with all my songs in and i want to play them with Windows media player. So i have a listbox, when i select song they stand in that lisbox and when i
|
| Multiple commands to one Shell session | 10 Jun 2004 18:58 GMT | 12 |
I need to launch an external application using the Shell command. However, this particular application needs to be run from it's current location or will not launch properly. For example, this won't work..... shell environ("comspec") & " /c " & """C:\Program Files\Some
|
| Saving a Word Doc as Text File in VB | 09 Jun 2004 23:01 GMT | 4 |
Set WordApp = CreateObject("Word.Application" Set CurDocument = GetObject("c:\MyFile.doc" CurDocument.SaveAs FileName:="c:\MyFile.txt", FileFormat:=??? Anyone know the keyword to save a Word Document as a Text File
|
| Modal form... | 09 Jun 2004 13:59 GMT | 3 |
Is there a way to open a form as if modal (when it's actually not) so that the following code is executed?? Thanks, Ivan
|
| Can a property be an array???VB.NET | 08 Jun 2004 23:14 GMT | 2 |
Does any one know if a property can be an array??? I mean, I build a structure called mStr and I want my property to be an array of it...I know I can do Public Property ListItems() As mSt but I need the property ListItems to be an array so that I can call it : mClass.ListItems(1) ...
|
| ADODB datashaping syntax | 08 Jun 2004 12:12 GMT | 2 |
The example on : http://msdn.microsoft.com/library/en-us/oledb/htm/oledbprovinvoking_the_data_sha ping_service_for_ole_db.asp shows how to associate a "daughter" recordset to a parent recordset. What I really want to do is to associate two sibling recordsets to a single
|
| The STR command has disappeared | 07 Jun 2004 21:42 GMT | 2 |
I have been working on a project where I frequently use the STR function. The project file got modified and now that function is gone. It doesn't even register in autocomplete anymore. I assume there is some sort of "include" file I must have misplaced. Anyone know what's going on ...
|
| Recursive file search for certain extensions | 07 Jun 2004 14:44 GMT | 2 |
I'm trying to write a vb program to search through a specified folder and its subfolders looking for files with certain extensions. I want to be get the size of all the files and folders minus these certain extensions. To do this, I am trying to use the FSO. Right now I have ...
|
| Exporting Access data into excel using vb6 | 03 Jun 2004 21:26 GMT | 7 |
What is the syntax for exporting Access tables into Excel Files?
|
| String Manipulation - Find Position | 03 Jun 2004 19:16 GMT | 4 |
I think this is a fairly simple question, but for some reason I am struggling to find the solution! Assume I get an address into my app which looks as follows: The Purple Widget Company, 4 Privet Drive, Little Whinging, Surrey,
|
| Hidden ActiveX Property | 02 Jun 2004 22:31 GMT | 2 |
Does any one know how to have a Property on an ActiveX control to only be available at Run time What I was wanting to do was to have a property (Let/Get) that is available at run time, but I didn't want it to show up in the Properties list during development time Is this possible
|