VBcode

Questions about programming languages and debugging
Post Reply
PopPooB
Fame ! Where are the chicks?!
Fame ! Where are the chicks?!
Posts: 236
Joined: 16 May 2007, 16:00
16
Location: CandyLand
Contact:

VBcode

Post by PopPooB »

Anyone know what the code is for a load button that opens a browse for a file like thing

and also whats the code to drag the window around
96% better then all connections global
Kiss My Ass Good Bye

bubzuru
.net coder
.net coder
Posts: 700
Joined: 17 Apr 2007, 16:00
17
Contact:

Post by bubzuru »

more info plz

PopPooB
Fame ! Where are the chicks?!
Fame ! Where are the chicks?!
Posts: 236
Joined: 16 May 2007, 16:00
16
Location: CandyLand
Contact:

Post by PopPooB »

uhhhhhhh how much more info that's about as specific as i can get

i need the script for a load button that opens up a window that browses for files like when upload something to a website

plus a need a script that when you click anywhere on the window(form1) and drag it moves the window around
96% better then all connections global
Kiss My Ass Good Bye

User avatar
floodhound2
∑lectronic counselor
∑lectronic counselor
Posts: 2117
Joined: 03 Sep 2006, 16:00
17
Location: 127.0.0.1
Contact:

Post by floodhound2 »

Actually you really need to be more specific.

You are asking in general terms. When it comes to Programming you’ll need to be straight. I mean do you want to use an API or a custom form, ill need more information so I don’t lead you down the wrong path. Scripts are not usually considered VB either, as far as i know.

I can help so please don't take this harshly.
₣£ΘΘĐĦΘŮŇĐ

PopPooB
Fame ! Where are the chicks?!
Fame ! Where are the chicks?!
Posts: 236
Joined: 16 May 2007, 16:00
16
Location: CandyLand
Contact:

Post by PopPooB »

im just using vb6 and by vb code i mean the scripts when you double click on something in a simple exe form in vb6
96% better then all connections global
Kiss My Ass Good Bye

bubzuru
.net coder
.net coder
Posts: 700
Joined: 17 Apr 2007, 16:00
17
Contact:

Post by bubzuru »

add a common dialog control and one button

Code: Select all

Private Sub Command1_Click()
Dim fname As String
CommonDialog1.ShowOpen
fname = CommonDialog1.FileName
End Sub
a very simple answer because you didnt give alot ov detail about wot you want to do tell me wot you want to make and maybe i can help more

Post Reply