In VB Script I want to be able to calculate the duration between two days. Suppose I was given two Dates 07/30/2008 and 4/12/2009. I want to state it is 8...
15721
resres3
Jun 6, 2008 6:22 am
hi everyone Is there a way to get around the "one-at-a-time" With...End With limitation? Can I "Set" and object to point to my objects? The sub I am writing is...
15722
Adelle Hartley
adelle@...
Jun 6, 2008 7:06 am
resres3 wrote: You're almost there with the code in your post. Just need some declarations and a small change. Dim A As SameTypeAsThis Dim B As SameTypeAsThat...
15723
res
resres3
Jun 6, 2008 8:52 am
Thanks for the reply. Afaict, the reference to the original is lost, isn't it? thanks You're almost there with the code in your post. Just need some ...
15724
Have A_nice_day
halfof4is2
Jun 8, 2008 3:46 pm
I spent parts of two days wondering why my program wouldn't display the form after running the following code. All it would do is show the code itself. I...
15725
crombierob
Jun 9, 2008 5:52 am
I bet you are not using Option Explicit ? If I run this code with Option Explicit, it fails and breaks on the declaration of top. If I run it with the first 3...
15726
Michael Hodge
braxtoncotta...
Jun 9, 2008 1:12 pm
So far as I can see, my VB6 programs close down fully when the user exits from within the code of the program (Alt+X, for instance). However, if a user...
15727
crombierob
Jun 9, 2008 2:05 pm
I don't think Alt X does anything. You may have provided an accelarator key (letter), in your close button ? I would have a look at the code in your Close...
15728
Shawn K. Hall
vb_shawn
Jun 11, 2008 4:35 am
... Yes, there's always "insanity." If you want to drive junior programmers insane, publish code without option explicit and use as many reserved words as...
15729
Adelle Hartley
adelle@...
Jun 11, 2008 6:14 am
... Hi Shawn... That goes for *so many* default options. Using other people's computers drives me crazy. Adelle....
15730
crombierob
Jun 11, 2008 10:06 am
Hi Adelle, Would 'one' example be Windows Explorer which requires at least 10 changes to get it the way it should be ? Rob ... programmers ... reserved...
15731
Michael Hodge
braxtoncotta...
Jun 13, 2008 4:58 pm
Like many others, I am getting fed up with giving programs to friends - who then can't get them to work! I have tested them on XP (on which resides my VB6),...
15732
topper_duke
Jun 13, 2008 7:04 pm
I've been able to create a distribution list using VB, but it seems that the email address & name of the contacts are the email address. I need to be able to...
15733
crombierob
Jun 14, 2008 5:39 am
I have a couple of thoughts, one of which is a bit radical(some might say cowardly). I never distribute my applications as installers. I just give them the...
15734
crombierob
Jun 14, 2008 5:58 am
PS I use Fat32 Not sure if NTFS would be as tolerant of my simplistic approach. If you are using NTFS on the main drive, I believe you could use Fat32 on the...
15735
sureshsubhap
Jun 19, 2008 7:22 pm
Could you provide some samples of FLexGrid operations in VB6 which can add or edit fields informations and those can save into tables Regards Suresh...
15736
Muhammed Abedur Rahman
romel_abed
Jun 19, 2008 7:22 pm
Dear My program is in VB and database is in MS ACCESS. Everything works fine when i compile it. I can run the compiled .exe file on the pc which has VB 6...
15737
crombierob
Jun 20, 2008 2:55 am
I would browse through these examples - www.vb-helper.com/index_controls.html#flexgrid www.vb-helper.com/index_database.html#ado In the latter one, ignore any...
15738
Farrukh Munir Khansaheb
fkhansaheb
Jun 20, 2008 3:24 am
Just Download vbrun6.exe and MDAC.exe client computer these are vb runtime files and even there comes a error like msflxgrd.OCX not found or not...
15739
farid essa
farid_bit
Jun 20, 2008 7:57 pm
Hi, I'm sending u MSADODC.OCX just download attachment file and place it in client computer as per given below instruction. Register and install OCX files in...
15740
danang_namasaya
Jun 22, 2008 9:30 am
Hi all, im lil bit confused with this one. i hope there are some explanation from you all. i use internetdial (wininet method) in my project to make a DUN...
15741
Iqbal hossain
iqbalcse2000
Jun 22, 2008 4:47 pm
You can create installer for your application using "Package & Deployment Wizard" Regards, Md. Iqbal Hossain http://www.SabaSafa.com Do you need a coder? ... ...
15742
Erick
mrx_amr69
Jun 23, 2008 9:15 am
I was given a program that is able to read an Excel sheet and generate a report from a certain row in Word document format. here are the functions I need to...
15743
justcurious2012
Jun 24, 2008 8:11 pm
Dear friends, Can anybody help me as to how i print a A4 size half page bill printed and also the printing head should stop at that halfway mark? Waiting for...
15744
misk94555
Jun 25, 2008 8:32 am
...instead of just making a reference? Colleagues, I wasn't able to find a definitive answer to this one on the web. Is there a way in VB6 to make a copy of an...
15745
Adelle Hartley
adelle@...
Jun 25, 2008 5:19 pm
... In VB6, structures work that way, but not classes. I guess you could store all of the class' properties in a structure, and then have one property which...
15746
Gil
gilparsay
Jun 29, 2008 5:02 pm
before giving up. hanging myself in the closest eatery. I have a class. I want to Type.GetType("MyClass"). it returns Nothing. i tried it when the class...
15747
Rob
crombierob
Jun 30, 2008 5:19 am
Hi, This link may help (especially if you post your questions) - http://www.vbforums.com/showthread.php?p=3161835#post3161835 Also these may help - ...
15748
Adelle Hartley
adelle@...
Jun 30, 2008 3:02 pm
... From within the class, just GetType() From elsewhere, GetType(MyClass) (no quotemarks). Adelle....
15749
Gil
gilparsay
Jul 2, 2008 2:11 am
client/server application. And it's realy not my field. Im using TcpListener/TcpClient. I want to test many things on my computer befor I start to jump around....