Yeah, I'm sure it would. Crazy, but that's not a big deal for me.IdeasVacuum wrote:..... I'm often wrong but does that imply dependency on the .Net runtime?
Search found 86 matches
- Fri Dec 16, 2011 6:29 am
- Forum: Coding Questions
- Topic: calling a dll created in vb.net 2010
- Replies: 6
- Views: 3986
Re: calling a dll created in vb.net 2010
- Fri Dec 16, 2011 2:59 am
- Forum: Coding Questions
- Topic: calling a dll created in vb.net 2010
- Replies: 6
- Views: 3986
calling a dll created in vb.net 2010
Have been searching and searching with no luck, so it's time so finally post.. Can anyone tell me how to call a vb.net dll in pure basic?
I made a vb.net dll in visual studio 2010 (file->new->project->class library)
It looks like this basically
Public Class MyClass
Public Function test ...
I made a vb.net dll in visual studio 2010 (file->new->project->class library)
It looks like this basically
Public Class MyClass
Public Function test ...
- Mon Nov 07, 2011 8:05 pm
- Forum: Announcement
- Topic: PureBasic 4.60 Final !
- Replies: 88
- Views: 35999
Re: PureBasic 4.60 Final !
Thanks for the hard work gentlemen!
- Tue Jul 12, 2011 2:05 am
- Forum: Announcement
- Topic: Terraria Map Viewer
- Replies: 3
- Views: 4332
Re: Terraria Map Viewer
works well - a very helpful tool.
only one issue I encountered - it doesn't close the world file once it's finished with it; this blocks the game from accessing it. I suggest inserting CloseFile(mapFile) at the end of the Load() procedure.
Also, you can probably get some speed increase by ...
only one issue I encountered - it doesn't close the world file once it's finished with it; this blocks the game from accessing it. I suggest inserting CloseFile(mapFile) at the end of the Load() procedure.
Also, you can probably get some speed increase by ...
- Mon Jul 11, 2011 11:43 pm
- Forum: Off Topic
- Topic: Want an invite to Google+?
- Replies: 0
- Views: 845
Want an invite to Google+?
Hey folks, anybody interested in an invite to Google+ pm your email and I'll shoot one your way.
- Mon Jun 27, 2011 6:26 am
- Forum: Announcement
- Topic: Terraria Map Viewer
- Replies: 3
- Views: 4332
Terraria Map Viewer
I've been playing with a (dirt simple) Terraria Map Viewer. I've seen a lot of guys' projects floating around and I thought I'd do my own quick & dirty version in PB.
*edit* Forgot to mention it's not completely done, still missing a few things.
Based heavily on this one in particular -> http ...
*edit* Forgot to mention it's not completely done, still missing a few things.
Based heavily on this one in particular -> http ...
- Fri Jun 24, 2011 5:10 pm
- Forum: Coding Questions
- Topic: Change a byte in memory
- Replies: 5
- Views: 1661
Re: Change a byte in memory
Or you can use a Byte-Array like:
Structure ByteArray
b.b[0]
EndStructure
Define Text.s = "Some Text"
Define *MemoryID.ByteArray = @Text
; change a byte
*MemoryID\b[4] = '!'
Debug Text
Wow, that's a great example, much more elegant than what would have done :/
Define Text.s = "Some Text ...
Structure ByteArray
b.b[0]
EndStructure
Define Text.s = "Some Text"
Define *MemoryID.ByteArray = @Text
; change a byte
*MemoryID\b[4] = '!'
Debug Text
Wow, that's a great example, much more elegant than what would have done :/
Define Text.s = "Some Text ...
- Wed Jun 15, 2011 5:00 pm
- Forum: General Discussion
- Topic: How do you load a DLL made in PB in Java?
- Replies: 5
- Views: 2314
Re: How do you load a DLL made in PB in Java?
filthy java convert, sic 'em boys. haha, jk.Nituvious wrote:I have been learning Java lately and I want to use a PureBasic DLL that a friend of mine made, but everything I seem to try results in a failure.
Are there any Java guru's here that know how to call a PB Dll?
- Mon May 23, 2011 4:38 pm
- Forum: Coding Questions
- Topic: jabber/google talk authenticating/connecting
- Replies: 3
- Views: 1618
Re: jabber/google talk authenticating/connecting
Wow, very nice find. Much appreciated, ehowington!ehowington wrote:this may shed some light ?
http://www.cs.illinois.edu/class/sp11/c ... ts/mp1.pdf
- Thu May 12, 2011 5:39 pm
- Forum: General Discussion
- Topic: xListView Class: open source need people to help perfect it!
- Replies: 7
- Views: 2017
Re: xListView Class: open source need people to help perfect
Still down?JustinJack wrote:Oops, yes. Microsoft just updated my dang web server and IIS is down now, have to see what happened. I'm at work now, but I'll check into it this PM an re-post the link.

- Wed May 04, 2011 6:02 pm
- Forum: General Discussion
- Topic: What IDE colors do you use?
- Replies: 4
- Views: 1460
Re: What IDE colors do you use?
There's some cool themes listed in that thread above. As for me, I just use the default purebasic theme, not that I'm too lazy to change it, I actually just really like it.
- Tue May 03, 2011 8:20 pm
- Forum: Tricks 'n' Tips
- Topic: Use Google Translate in your PB apps!
- Replies: 11
- Views: 6409
Re: Use Google Translate in your PB apps!
Very cool Nituvious.
I think I found the ones you were missing:
I think I found the ones you were missing:
Code: Select all
#Filipino = "tl"
#Slovenian = "sl"
- Mon May 02, 2011 3:34 pm
- Forum: General Discussion
- Topic: xListView Class: open source need people to help perfect it!
- Replies: 7
- Views: 2017
Re: xListView Class: open source need people to help perfect
Would very much like to see this, but the link is dead
.

- Thu Feb 10, 2011 6:17 pm
- Forum: Tricks 'n' Tips
- Topic: Maze generation v1.2
- Replies: 14
- Views: 4285
Re: Maze generation
Wow, well done man. Looks like a lot less code than I thought.
- Wed Feb 09, 2011 4:30 pm
- Forum: Tricks 'n' Tips
- Topic: PureCapture, (ScreenCapturing Windows)
- Replies: 16
- Views: 5076
Re: PureCapture, (ScreenCapturing Windows)
Ha! Very intersting, thanks for sharing 
