Search the web
Sign In
New User? Sign Up
andreavb · Andrea VB Programmers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3708 - 3743 of 8974   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3708 cupidruby@...
Send Email
Apr 1, 2001
4:35 pm
3709
Hi. I'd like help with the following. Your help will be greatly appreciated. I have a form in an MSAccess 2000 db that requires the following calculations. ...
bobitt@...
Send Email
Apr 1, 2001
6:16 pm
3710
option explicit means you have to declare variables before using them! if u wont write that statment' you wont have to declare vars' and the vb will make every...
yuval
yuvalmy@...
Send Email
Apr 1, 2001
10:09 pm
3711
USE THE ISNULL() FUNC LIKE THAT: If isnull(Address.Fields("Suburb")) Then txtSurburb.Text = "" bye hope it helped ... From: <astewart@...> To:...
yuval
yuvalmy@...
Send Email
Apr 1, 2001
10:10 pm
3712
try reinstall crystal reports ... From: <Yunan@...> To: <andreavb@yahoogroups.com> Sent: Friday, March 30, 2001 1:55 PM Subject: [andreavb] Crystal...
yuval
yuvalmy@...
Send Email
Apr 1, 2001
10:10 pm
3713
When creating an ActiveX control does it have to be destroyed explivitly. Which means to say, that does one have to write the code for releasing the ActiveX...
Rohan
makhee@...
Send Email
Apr 1, 2001
10:33 pm
3714
make that combo as style 2 from the begining (property) and use that: Adodc1.Recordset.MoveFirst While Adodc1.Recordset.EOF = False Combo1.AddItem...
omega
omega1@...
Send Email
Apr 1, 2001
10:48 pm
3716
hi to everyone, could someone pls help me out on how to check is the value of a text box is null? ive tried this code: Private Sub Text1_KeyPress(KeyAscii As...
knowell
noel@...
Send Email
Apr 2, 2001
2:02 am
3717
hi to all, can visual basic change the structure of a query in access? assuming that i already created a query in access. example that i have a query named...
knowell
noel@...
Send Email
Apr 2, 2001
3:23 am
3718
I think the textbox is not null try to add this code Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then Text1.Text = UCase(Text1.Text) If...
Yunan@...
Send Email
Apr 2, 2001
3:32 am
3719
... try use IsEmpty(Text1.Text) or Text1.Text ="" adios, uwan...
uwan
neograve@...
Send Email
Apr 2, 2001
4:00 am
3720
... well, actually yes it does....it usually ends when you ended your app that use it...why you asked this ? is there any problem ? adios, uwan...
uwan
neograve@...
Send Email
Apr 2, 2001
4:00 am
3722
thank you!!! ... text ... is ... on ... _-> ... site at http://www.andreavb.f2s.com ... http://docs.yahoo.com/info/terms/...
knowell
noel@...
Send Email
Apr 2, 2001
4:23 am
3723
I am repeating this question on crystal reports selection formula, as there was no replies / discussions on this. I would like to select records from an access...
cskumar
cskumar@...
Send Email
Apr 2, 2001
4:29 am
3724
thanks it worked!!! =) even if i only used the trim$(text1.text) ="" could you pls kindky explain to me what trim$ do? eg: ucase(text1.text) returns the...
knowell
noel@...
Send Email
Apr 2, 2001
4:29 am
3725
Trim function is used to delete the blank space before and after on string value for example , if you have a sting value : a = " abc def " when you use ...
Yunan@...
Send Email
Apr 2, 2001
5:40 am
3727
thank you for explain it to me!!! i understand now.. thanks again... ... andreavb@yahoogroups.com ... andreavb@yahoogroups.com ... Null text value? ... Null ...
knowell
noel@...
Send Email
Apr 2, 2001
6:38 am
3728
hi to all, i just posted this message again, in case nobody have read the previous message... pls help me...=( can visual basic change the structure of a query...
knowell
noel@...
Send Email
Apr 2, 2001
9:22 am
3729
anyone can help me how to click submit button on web browser? i've try the code on www.vbpoint.cjb.net but it does'n work....
visualbasic@...
Send Email
Apr 2, 2001
12:49 pm
3731
... Well, the problem i am facing is that when i use the application for a long period....and frequently restart the application...it seems to be getting ...
Rohan Makhija
makhee101@...
Send Email
Apr 2, 2001
2:34 pm
3733
Hi Kumar: You are using SelectionFormula method. Try using ReplaceSelectionFormula instead. The following is what I read from Seagate Help: "If you have...
Ganesh Krishnamurthy
ganeshk@...
Send Email
Apr 2, 2001
4:46 pm
3734
I am sorry but there was a typo in my last mail. There is no equal symbol on ReplaceSelectionFormula syntax. cryrpt.ReplaceSelectionFormula "{hospital...
Ganesh Krishnamurthy
ganeshk@...
Send Email
Apr 2, 2001
4:49 pm
3735
We just completed the www.salcentral.com site a Web Services search engine. But what makes it very special is that we can quickly drop in a VB components...
Michael Clark
mike@...
Send Email
Apr 2, 2001
4:51 pm
3736
You can set a variable = to the text in the text box. Dim sCity as String sCity = text1.text You then substitute sCity into the Qurey instead of "LA" ... Your...
Dario Zanchetta
dariozan@...
Send Email
Apr 2, 2001
6:31 pm
3737
... can you give me the name of activeX you used ? adios, uwan...
uwan
neograve@...
Send Email
Apr 2, 2001
11:52 pm
3738
If you are selecting your data into a recordset instead of creating another selection criterea for crystal you could simply pass the recordset into crystal and...
Corinna Robertson
CRobertson@...
Send Email
Apr 3, 2001
1:03 am
3739
Dear Ganesh, When i used replace select formula (without the equal symbol), i get a run-time error saying object does not support this property/method. i am ...
cskumar
cskumar@...
Send Email
Apr 3, 2001
4:47 am
3741
You can do it...It depends the tecnology you use to access the db. Tell me... ADO OR DAO....
Agrofamilia
barlassina@...
Send Email
Apr 3, 2001
11:51 am
3742
Ok here is the Deal – Setting – Win 98, NT 4, Win 2K Problem – I have a 98 machine named Taco with a shared printer named GenericBlaBla The VB program...
athena187@...
Send Email
Apr 3, 2001
2:43 pm
3743
I have used a VB.TextBox component to create an ActiveX control of my own called IntEdit. This control is setup as the "StartUp Control" in the ActiveX Control...
Rohan Makhija
makhee101@...
Send Email
Apr 3, 2001
4:22 pm
Messages 3708 - 3743 of 8974   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help