Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 2,799
» Latest member: Jerrygef
» Forum threads: 856
» Forum posts: 3,643

Full Statistics

Online Users
There are currently 3 online users.
» 0 Member(s) | 1 Guest(s)
Bing, Google

Latest Threads
Looking for Adventure? Fi...
Forum: Random Discussion
Last Post: iHOMEz
11-16-2024, 09:18 PM
» Replies: 0
» Views: 457
Prettys Womans in your to...
Forum: Random Discussion
Last Post: iHOMEz
10-30-2024, 07:45 AM
» Replies: 0
» Views: 736
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-26-2024, 10:50 AM
» Replies: 0
» Views: 766
Beautiful Womans from you...
Forum: Random Discussion
Last Post: iHOMEz
10-19-2024, 02:48 PM
» Replies: 0
» Views: 862
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-06-2024, 05:00 PM
» Replies: 0
» Views: 1,031
Womans from your city - V...
Forum: Random Discussion
Last Post: iHOMEz
07-28-2024, 10:26 AM
» Replies: 0
» Views: 1,410
Supreme Сasual Dating - A...
Forum: Random Discussion
Last Post: iHOMEz
06-14-2024, 11:28 AM
» Replies: 0
» Views: 1,831
Beautiful Womans in your ...
Forum: VB.NET
Last Post: iHOMEz
06-09-2024, 09:23 PM
» Replies: 0
» Views: 1,633
Hangman in Rust
Forum: Other
Last Post: brandonio21
02-04-2018, 11:14 AM
» Replies: 2
» Views: 20,631
How to: Search files from...
Forum: VB.NET
Last Post: brandonio21
11-25-2017, 12:55 PM
» Replies: 1
» Views: 15,942

 
  Looking for coffee recommendations!
Posted by: brandonio21 - 04-16-2015, 10:56 AM - Forum: Random Discussion - No Replies

So for a while I have been drinking coffee pretty much every day. I've tried Folgers, Maxwell House, Starbucks, and Melita brand coffees, which I make at home.

Does anyone have any recommendations for other brands of coffee to try? I'm looking to expand my pallette.

Print this item

  Website Giveaway 2014-2015 Source Code
Posted by: brandonio21 - 03-08-2015, 09:49 PM - Forum: C#.NET - Replies (2)

In my 2014-2015 Website Giveaway, I promised that I would post the source code for the program used to determine the winners. Unfortunately, when I originally tried to post the source code, BP Forums would not allow me to post due to permissions errors. This was, of course, one of the main reasons why I decided to completely revamp BP Forums.

Anyway, here is the source code for the giveaway. If you have any questions, feel free to ask!


.zip   WebsiteGiveaway1415.zip (Size: 60.94 KB / Downloads: 1181)

Print this item

  PK3 Explorer/DMD/MD2 Converter (New Version)
Posted by: Worf - 10-24-2014, 04:56 AM - Forum: Share your programs! - No Replies

Hi.

I have been working on one of my old projects and have add and improved it a little. I have added an PK3 Explorer. All info below.


PK3 Explorer

Allows you too create/open PK3 files to add or remove files. View textures from inside the PK3 file in the 'Texture Viewer' without having to extract the PK3 file first.
You can also open standard zip files.

Texture Viewer

Allows you to View the texture of the model. You can also save or load/add new textures.

I am planning on adding more features to the Texture Viewer to allow you to change the size of the texture and the ability to edit the textures.

Supports the following OS's - Windows 7 Windows 8


PK3 Explorer & Dmd/Md2 Converter release notes. 21/10/2014


DMD/Md2 Converter Update.

V1.2

Added option to choose between converting from Dmd to Md2 or Md2 to Dmd. (The original version didn't convert from Md2 to Dmd.)

Fixed a couple of bugs.

-------------------------------------------------------

PK3 Explorer update. V1.0

Fixed extraction of files & Folders ...... didn't extract folders.

Added custom compression Level for zip files.

Fixed a few other bugs.

-------------------------------------------------------

Texture Viewer.

Added ability to load and add new textures to PK3 files.

-------------------------------------------------------

There is only an x86 version at the moment.

Download:

X86
http://1drv.ms/1wtXTmK

Please post any comments/bugs/improvements/Wish List

Regards

Tony

Print this item

  Running an embeded EXE .NET 2013
Posted by: Worf - 10-14-2014, 04:48 AM - Forum: Programming Help - Replies (1)

Hi.

I'm currently working on a new project for working with .PK3 - .DMD & .MD2 files.

Now, I have an EXE (cv.exe) that I would like to embed into my program and execute through the routine below.

I've tried different methods found on the internet without any luck.

Code:
' This routine runs MD2Tool with the selected tasks. (Convert)    
  
Private Sub RunMD2tool(ByVal path As String, ByVal file As String, ByVal tasks As String)    
  
Dim p As New Process()    
  
Dim infs() As String = {"""" & path & "\" & (file) & """" & tasks}    
  
With p.StartInfo    
For f = 0 To infs.Count - 1    
.Arguments = infs(f)    
.FileName = "cv.exe"    
  
' Hide the window ?    
p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden    
p.Start()    
  
Do While Not p.HasExited    
Application.DoEvents()    
Loop    
Next    
End With    
  
MsgBox("Convertion complete.")    
  
SinglePath.Text = Nothing    
Label7.Text = Nothing    
  
End Sub

Many thanks for your help.

Regards

Tony

Print this item

  View 3D Models in VB .NET
Posted by: Worf - 09-26-2014, 05:50 AM - Forum: Programming Help - Replies (2)

Hi.

Are there any addons for VB .NET to allow the viewing of 3D Models in different formats including MD2 filesas this is something I want to in my application?

Many Thanks for you help

Print this item

  Help with PCX file.
Posted by: Worf - 09-23-2014, 04:30 AM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (2)

Hi.

I'm in real need of being able to display .PCX graphic files in my app. I am using Visual Studio 2013 .NET.

I've tried GDPicturedotnet but for some reason it is not showing up in the Toolbox and when I select 'Show all' it is greyed out. I've also tried IocompDotNet V4 SP3 but unable to find any help files or documents on how to use their commands.

Many, Many thanks for your help.

Print this item

  Open Zip files into a listview box
Posted by: Worf - 09-09-2014, 05:12 AM - Forum: Programming Help - Replies (2)

Hi.

I'm working on my DMD To MD2 Converter program o add more features to it.

One of them is to open a zip file and list the contents into a listview box and allow the user to select any files to extract.

I've searched around but couldn't find what im looking for.

Thank you for you help.

Tony

Print this item

  What devices drive your day?
Posted by: brandonio21 - 08-01-2014, 09:23 AM - Forum: Computing - No Replies

After getting off the subway today and having someone comment on my Pebble watch, I was curious, what kind of devices do you guys use throughout your day that may not be used by the general public?

Here are some devices I use:

  • Pebble Smartwatch
  • Nexus 7 Tablet

At home, I also use:
  • Google Chromecast

Print this item

  NullReferenceException when adding item to generic list
Posted by: brco900033 - 04-17-2014, 11:28 AM - Forum: Programming Help - Replies (1)

I have a little problem that I can't seem to solve.
When I try to add a value (integer) to a generic list (of integer), I always get a NullReferenceException.

This is my code:
[code2=vbnet]Dim listIndexes As List(Of Integer) = Nothing
For Each i As ListViewItem In Me.listKeys.Items
For Each i2 As ListViewItem In Me.listKeys.Items
If i.Text = i2.Text Then
listIndexes.Add(i.Index) 'The error persists here: NullReferenceException
listIndexes.Add(i2.Index) 'and propably an error here too
End If
Next
Next
Me.SelectKeys(listIndexes) 'This line just selects the items in the listview[/code2]

I've discovered that the index of these two items in the listview are both zero.

Hope someone can help,
brco

Print this item

  multiple csv files add sql server tables via VB.NET
Posted by: secilsengul - 04-14-2014, 01:02 PM - Forum: Programming Help - Replies (1)

How can i multiple csv files import to database table with VB.NET ? This an important for me. Pls help

Print this item