its vb6...superaison wrote:um, is this vb6 or vb 2005? if its vb6 then i need help
Programming: Loading Halo2 Maps In VB
-
- Posts: 118
- Joined: Wed Mar 30, 2005 5:35 pm
-
- Posts: 175
- Joined: Mon Jul 25, 2005 5:06 pm
-
- Posts: 118
- Joined: Wed Mar 30, 2005 5:35 pm
-
- Posts: 108
- Joined: Sat May 07, 2005 8:21 pm
- Contact:
-
- Posts: 108
- Joined: Sat May 07, 2005 8:21 pm
- Contact:
-
- Posts: 59
- Joined: Sat Jul 03, 2004 2:35 am
- Location: Hmmmmmm... That's a toughie... What is "AT MY COMPUTER"?
- Contact:
-
- Posts: 1474
- Joined: Sun Aug 14, 2005 11:39 pm
- Location: On Vacation From The Loads Of Bull*hit That Goes On Here
- Contact:
Im confused....
Lets Say i wanted a "Open map" Button, But So You Can Choose The Location of The Map. How would i do that?
Also Where Do I Put All This Code?
Im Confused.........
Lets Say i wanted a "Open map" Button, But So You Can Choose The Location of The Map. How would i do that?
Also Where Do I Put All This Code?
Im Confused.........
I made this 100% by myself, Everything from the background, to the location of the tags, Get yours http://customgamercards.com
-
- Posts: 59
- Joined: Sat Jul 03, 2004 2:35 am
- Location: Hmmmmmm... That's a toughie... What is "AT MY COMPUTER"?
- Contact:
go to planet source code (http://www.planet-source-code.com/vb/) and search for common dialog
-
- Posts: 1474
- Joined: Sun Aug 14, 2005 11:39 pm
- Location: On Vacation From The Loads Of Bull*hit That Goes On Here
- Contact:
i know how to get a command diaglog in but not so the code works correctly with it
I made this 100% by myself, Everything from the background, to the location of the tags, Get yours http://customgamercards.com
-
- Posts: 1474
- Joined: Sun Aug 14, 2005 11:39 pm
- Location: On Vacation From The Loads Of Bull*hit That Goes On Here
- Contact:
I Know A Lot Of People Use Visual Basic 2005 (Express Edition)
I Converted The Codes From VB6 To The Newer Version
( I Have Only Finished The First Little Bit So I Will Edit The More I Find Out)
I Think Its Correct
I Converted The Codes From VB6 To The Newer Version
( I Have Only Finished The First Little Bit So I Will Edit The More I Find Out)
Code: Select all
Dim ByteArray() As Byte
Dim FileName As String
Dim SizeOfFile As Integer
Fno = FreeFile()
FileOpen(Fno, "C:\Zanzibar.map", OpenMode.Binary)
SizeOfFile = LOF(Fno)
ReDim ByteArray(SizeOfFile - 1)
FileGet(Fno, ByteArray)
FileClose(Fno)
I made this 100% by myself, Everything from the background, to the location of the tags, Get yours http://customgamercards.com
-
- Posts: 13
- Joined: Fri Oct 13, 2006 3:45 pm
- Location: Learning C++
The Fno doesnt work because it says it needs to be declared
you could try i think it should work
you could try
Code: Select all
Dim Fno