Forum: Visual Basic 4 / 5 / 6 Aug 31st, 2009 |
| Replies: 26 Views: 50,939 Yeah right. You don't need anyone's help here to get a trial key.
You can ask the vendor who will gladly give it for a legitimate trial user. |
Forum: Visual Basic 4 / 5 / 6 Aug 30th, 2009 |
| Replies: 26 Views: 50,939 As a Developer, I would think you would understand the value of one's work and not be here blatantly asking to voilate copyrighted software. Shame on you! |
Forum: Visual Basic 4 / 5 / 6 Mar 8th, 2009 |
| Replies: 3 Views: 494 What's it look like? It's a thing of beauty !
What are you interested in. I'd be happy to share. |
Forum: Windows Vista and Windows 7 Feb 20th, 2009 |
| Replies: 10 Views: 6,352 I found a workable solution to the error. My user has SP1 applied to their Vista machine, and we still got the error. You can right-click on the exe itself, select a compatability mode setting... |
Forum: Visual Basic 4 / 5 / 6 Feb 20th, 2009 |
| Replies: 3 Views: 494 I'm not even sure where to post this, but since I wrote the code in VB6, maybe here...
This is really more of an Outlook problem, but what I'm doing is programatically creating email. Here's the... |
Forum: Windows Vista and Windows 7 Feb 17th, 2009 |
| Replies: 1 Views: 704 There is another post out here on this... saying that Vista puts some boot related files in the "primary" partition, and that if you delete that first partition, as you suggested you did, you've... |
Forum: Windows Vista and Windows 7 Feb 17th, 2009 |
| Replies: 9 Views: 3,218 If you're running XP and go to install Vista, the install process will allow you to make the machine duel boot as long as you have enough disc space and install Vista in a new partition.
On the... |
Forum: Windows Vista and Windows 7 Feb 17th, 2009 |
| Replies: 4 Views: 618 but has anyone tried to Install Win XP on a machine already running Vista ? |
Forum: Windows Vista and Windows 7 Feb 17th, 2009 |
| Replies: 6 Views: 1,342 Has anyone taken a machine running Vista, then tried to add XP as a second OS to dual boot ? |
Forum: Windows Vista and Windows 7 Feb 17th, 2009 |
| Replies: 10 Views: 6,352 I have another idea and more information on this VB6/Vista issue. I have to admit first, I don't like Vista and I'm still using W2k and XP for development desktops, but... It's come to my... |
Forum: Windows Vista and Windows 7 Feb 14th, 2009 |
| Replies: 10 Views: 6,352 First of all, as jbennet says, Microsoft did commit to supporting VB6 and it DOES so indicate that on their web site.
I tested installing VB6 on a machine with a virgin copy of Vista Home and it... |
Forum: Visual Basic 4 / 5 / 6 Feb 13th, 2009 |
| Replies: 4 Views: 3,757 Try UN registering the ocx, then immediately re-register it.
This fixed most of my problems with Vista. It's a Vista registration issue, not your code. |
Forum: Windows Vista and Windows 7 Feb 13th, 2009 |
| Replies: 5 Views: 4,915 I wasted hours and hours on the same problem only to find an obscure solution. There is a problem with registering an ocx and some DLLs with Vista. After you install your program, use Regsvr to... |
Forum: Visual Basic 4 / 5 / 6 May 24th, 2008 |
| Replies: 26 Views: 50,939 You need to purchase the Developer Edition. |
Forum: VB.NET Apr 23rd, 2008 |
| Replies: 1 Views: 1,938 The first thing I have to tell you is to consult the VB migration guide and make sure the control you are using is still supported with Vista. There is a list of controls that are still supported,... |
Forum: Visual Basic 4 / 5 / 6 Apr 23rd, 2008 |
| Replies: 3 Views: 1,162 I've never had to append before, but to "overwrite" as you say, just delete the file before you re-create it. In VB6 its just
Kill Filename
where Filename is a fully qualified file name. |
Forum: Visual Basic 4 / 5 / 6 Apr 18th, 2008 |
| Replies: 12 Views: 2,777 Look up the Selected property for the ListBox control.
Dim i as integer
For i = o to lstBox.ListCount
If lstBox.Selected(i) then
lstBox.RemoveItem i
Exit For
... |
Forum: IT Professionals' Lounge Jan 11th, 2008 |
| Replies: 7 Views: 1,204 I want to chime in with something too Joe. One of the points Darkang made was good diagnostics, and I've been telling students for years that a good language processor provides good clear messages.... |
Forum: Visual Basic 4 / 5 / 6 Jan 10th, 2008 |
| Replies: 0 Views: 1,438 I wrote a VB6 application to generate email for my application.
I can generate plain text messages just fine, but I really want to have the message in RTF format. Does anyone know how to generate... |
Forum: Visual Basic 4 / 5 / 6 Jan 3rd, 2008 |
| Replies: 14 Views: 11,084 You're not going to get anywhere until you successfully access the database. Isolate the code and single step execution to find out where the logon is failing. What type of DB are you accessing... |
Forum: Visual Basic 4 / 5 / 6 Jan 2nd, 2008 |
| Replies: 14 Views: 11,084 I don't use VBA much, sorry.
For a range, like a date range, I make two parameter variables FromDate and ToDate, then just use them in the record select formulae. |
Forum: Visual Basic 4 / 5 / 6 Dec 27th, 2007 |
| Replies: 14 Views: 11,084 I think I hear the cash registers at Business Object cha-chinging ! |
Forum: Visual Basic 4 / 5 / 6 Dec 26th, 2007 |
| Replies: 14 Views: 11,084 I am running two versions of Crystal Reports on the same machine with VB6. Versions 7/8/9 all use similar DLL's. V10 and V11 are major upgrades. Given your problems, I'm beginning to wonder if... |
Forum: Visual Basic 4 / 5 / 6 Dec 25th, 2007 |
| Replies: 2 Views: 3,861 Second, I access a SQL Server database via ODBC. Since I can't predict or dictate what the SQL Server (that's the SQL Server, not the Windows Server) will be, the name is passed to the program as a... |
Forum: Visual Basic 4 / 5 / 6 Dec 25th, 2007 |
| Replies: 2 Views: 3,861 There will be two posts minimum...
First, I'll refer you to the Knowledgebase Articles that give the needed information, and second I'll give you code samples to run a report given the methods I... |
Forum: Visual Basic 4 / 5 / 6 Dec 25th, 2007 |
| Replies: 14 Views: 11,084 Give me a few minutes and look for for a new post. I'll start a thread called "How to launch a Crystal 11 report from VB6". This is a nuisance to too many people. Stand by. |
Forum: Visual Basic 4 / 5 / 6 Dec 25th, 2007 |
| Replies: 14 Views: 11,084 Find the thread "How to add Crystal Report 11 in VB6" and read it. There is a topic in the Biz Objects that is a cook book for getting you through the connection problem. I can't remember what... |
Forum: MS Access and FileMaker Pro Apr 4th, 2007 |
| Replies: 2 Views: 3,795 The Asterisk * is the wild card for the LIKE operator in Access. |
Forum: Visual Basic 4 / 5 / 6 Mar 26th, 2007 |
| Replies: 10 Views: 9,938 [quote=intellogo;334757]Hello Henry pal,
I am not working on the Microsoft BIBLIO.MDB database file.
I have made a seperate database file of my own. An this is not an academic task . Its simply... |
Forum: Visual Basic 4 / 5 / 6 Mar 25th, 2007 |
| Replies: 10 Views: 9,938 [quote=intellogo;334340]
Actually, i have to show a report on market competetors for Book Titles. for an X book publishing company.
And i have 2 cases that can come under them:
1. A... |
Forum: Visual Basic 4 / 5 / 6 Mar 25th, 2007 |
| Replies: 10 Views: 9,938 I don't use Messenger.
If there is nothing to relate the two tables, why would you want the contents of two unrelated tables on the same report?
You should come up with another tactic. |
Forum: Visual Basic 4 / 5 / 6 Mar 25th, 2007 |
| Replies: 10 Views: 9,938 There isn't any simple solution to this problem, but maybe I can educate you a bit. Look up the SQL commands Union and Interesect to see if they may apply in this situation. When faced with this,... |
Forum: Visual Basic 4 / 5 / 6 Mar 23rd, 2007 |
| Replies: 11 Views: 11,130 I CAN'T FIND YOUR OTHER POST. |
Forum: ASP.NET Mar 23rd, 2007 |
| Replies: 5 Views: 11,429 I know exactly what you mean! I thought I had an incompatible version of HTML since that is what the page is rendered with. I don't know what they do, but if you're using InstallShield or the... |
Forum: Visual Basic 4 / 5 / 6 Mar 23rd, 2007 |
| Replies: 11 Views: 11,130 You got it right. Work on your deployment. |
Forum: Visual Basic 4 / 5 / 6 Mar 23rd, 2007 |
| Replies: 11 Views: 11,130 That's the whole idea, isn't it? Run Time support for Crystal is free. You paid for crystal, now you get to distribute your applications with crystal reports as well. Happy hunting. Henry |
Forum: Visual Basic 4 / 5 / 6 Mar 21st, 2007 |
| Replies: 14 Views: 11,084 Then something went wrong with the install. You have the correct components identified, but you have to have them references in your VB project for Crystal to work. |
Forum: Visual Basic 4 / 5 / 6 Mar 21st, 2007 |
| Replies: 11 Views: 11,130 #1 You pass off your parameter value as a formula in the RecordSelection property.
#2 Don't design the report with a propmt for the parameter. You're going to pass off any record selection... |
Forum: Visual Basic 4 / 5 / 6 Mar 13th, 2007 |
| Replies: 26 Views: 50,939 No one said you can't call Crystal from VB, there is just a lot of confusion on how exactly to call CRv11 from VB6.
I don't know what you question is regarding "keys". Elaborate if you have a... |
Forum: Visual Basic 4 / 5 / 6 Mar 1st, 2007 |
| Replies: 26 Views: 50,939 If you have any more grief with it, make a post. I can post code samples if need be.
Once you look at the code needed, a lot of things make sense, but it's all in that one document anyway. |