Testing. Please ignore. -Dave ... eGroup home: http://www.eGroups.com/list/vbhelp Free Web-based e-mail groups by eGroups.com...
3
Dave Notik
dave@...
Mar 5, 1999 11:53 am
Please ignore. -Dave ... eGroup home: http://www.eGroups.com/list/vbhelp Free Web-based e-mail groups by eGroups.com...
4
Dave Notik
dave@...
Mar 5, 1999 12:54 pm
Hi. Please ignore. -Dave ... eGroup home: http://www.eGroups.com/list/vbhelp Free Web-based e-mail groups by eGroups.com...
5
Dave Notik
dave@...
Mar 9, 1999 5:23 am
Hi everyone, This forum is slowly growing, and I figured I'd invite the developers currently subscribed to ask your Visual Basic questions. I, as well as the ...
6
sutropd@...
Mar 9, 1999 3:22 pm
Is there any way to distinguish the bynary type from text type of file when you are dowlnloading them from the server, using FTP (all the files on the server...
7
sutropd@...
Mar 9, 1999 3:32 pm
Hello! i have one more question. Does anybody know if it's possible to retrieve the number of currently logged-in users to FTP server (NT), using VB3? I have 3...
8
Vadim Levtchouk
vyl@...
Mar 9, 1999 5:57 pm
Hi everybody. I am a newbee in Vb world. I have a small problem. I have calculated some coordinates of some figure X1,Y1, X2,Y2, ....all them should be shown...
9
Sutrop, Diana
SutropD@...
Mar 9, 1999 6:29 pm
I don't know if that's what you need. Use Line method To draw a box use the B option If you are including this option, you can draw a box whose upper left...
10
Vadim Levtchouk
vyl@...
Mar 9, 1999 7:01 pm
Thanks a lot. The problem is, that the form has height and width in pixel or somewhat else. Next, the Y coordinates start from up to down. My calculations...
11
vbhelp@...
Mar 10, 1999 2:54 pm
... There's really no such thing as a "binary type" - applications make the distinction, not the files themselves. You just need to look at the information in...
12
vbhelp@...
Mar 10, 1999 2:59 pm
... Coordinates are in Twips. The aspect ratio is 1:1, so a 2.5 square will look like a square. You can adjust the percieved scale using the ScaleWidth and...
13
Vadim Levtchouk
vyl@...
Mar 10, 1999 3:13 pm
Thanks a lot! It seems worked. I have a form IMAGEN, and in GENERAL module I do the following: ============================================= Public XY(2, 5) As...
14
VBHelp
vbhelp@...
Mar 10, 1999 3:16 pm
... If it works, it works. ;-) - Matt H - http://matthart.com ... eGroup home: http://www.eGroups.com/list/vbhelp Free Web-based e-mail groups by eGroups.com...
15
Sutrop, Diana
SutropD@...
Mar 10, 1999 5:42 pm
Thank you Matt! It works! Diana. ... From: vbhelp@... [SMTP:vbhelp@...] Sent: March 10, 99 8:54 AM To: vbhelp@egroups.com Subject: Re: Types...
16
Thangs
rthangavel@...
Mar 13, 1999 10:40 am
Hi . This Problem is faced When Opening a Ado Connetion . I had a User Data Source Name Defined thru MicroSoft Odbc For Oracle . First I Developed my System...
17
VBHelp
vbhelp@...
Mar 13, 1999 1:56 pm
I don't use VBScript, sorry. I do know that you must have ADO installed on the server, and the data must also reside on the server. - Matt H -...
18
Bob Mergner
rmergner@...
Mar 13, 1999 7:09 pm
Hi, I am trying to start an exe from a service that I have written in VB6. The service starts up other applications that can then be shut down by messages. My...
19
sikatuna@...
Mar 14, 1999 9:23 am
I need help on how to organize my visual basic program just like doing it in a menu editor or something else. Anyone ? My main purpose is to have a pull down...
20
Jeff Archacki
aurelius@...
Mar 14, 1999 5:46 pm
Does anyone have a simple VB function or proc for removing a specific character in a string, i.e. a comma or quotation mark? ... eGroup home:...
21
Ollila
skmm.ollila@...
Mar 14, 1999 7:42 pm
Hi! I'm making a simple game with VB 4 pro. How can i make some simple graphics vith VB 4 pro?? And how can I put control keys in the game? I'm quite beginner...
22
IINerDII@...
Mar 14, 1999 10:42 pm
Use a MiD String Function... Example: Dim i, StrLetter, StrNew StrNew = "" For i = 1 to Len(TxtString) 'Chang TxtSring to the String.... StrLetter =...
23
Jason Roozee
jason@...
Mar 15, 1999 12:24 am
If you are using VB6, there is a function 'Remove39; Dim MyString as string MyString = "ABCD??EFG? MyString = Replace(MyString, "?", Empty) ' MyString will =...
24
Jason Roozee
jason@...
Mar 15, 1999 12:28 am
In your form, under the KeyDown Sub, put: Debug.print Chr(KeyCode); KeyCode Then, press your F1-12 keys, and record which keys are which. I know there is a...
25
VBHelp
vbhelp@...
Mar 15, 1999 3:55 am
Look up the Line, Circle, and Pset methods of the PictureBox and Form. You can load BMP images into Image controls and PictureBoxes. Control keys should be...
26
VBHelp
vbhelp@...
Mar 15, 1999 3:55 am
Private Sub ClearString(aStr As String, aClr As String) Dim k As Long k = InStr(aStr, aClr) Do While k aStr = Left$(aStr, k - 1) & Mid$(aStr, k + 1) k =...
27
Jason Roozee
jason@...
Mar 15, 1999 4:23 am
If you are using VB6, I highly suggest using my method. If not, the method Matt gave would work. -Jason Roozee ==================== Centrix Technologies, Inc. ...
28
ville_tammi@...
Mar 15, 1999 5:23 pm
I have a visual basic 6 and this is the problem! Im trying to do porgram that counts "5,4,3,2,1" whit timer and label. Why this doesn't work timer1.timer() or...
29
Dave Notik
dave@...
Mar 15, 1999 5:35 pm
Hi, Such information is basic and can be found in your Visual Basic help documentation. Additionally, please do not ask general how-to questions. This forum...
30
VBHelp
vbhelp@...
Mar 15, 1999 7:03 pm
The Interval doesn't increase or decrease, it just defines when the Timer fires. In Form_Load: Label1.Caption = "5" Timer1.Interval = 1000 In Timer1_Timer ...
31
imagelnk@...
Mar 16, 1999 1:45 am
Hi, i need to know that if i have a variable defined as a string, and i dont know its position, if i can remove it from a text box? we will call the variable...