Search:

Type: Posts; User: ShadowTzu

Page 1 of 2 1 2

Search: Search took 0.13 seconds.

  1. Replies
    10
    Views
    2,816

    [VB.NET] Re: Games in Vb.net

    Hello, If you are interested in graphics made in vb.net, you can have a look at what I'm doing on this post:: https://www.vbforums.com/showthread.php?873827-Tzu3D-Game-Engine&p=5380687
    And have a...
  2. Replies
    2
    Views
    7,146

    [VB.NET] Re: Tzu3D, Game Engine

    You can make your own PostProcess shaders but not yet on the objects themselves.
  3. Replies
    2
    Views
    7,146

    [VB.NET] Tzu3D, Game Engine

    Hello, I present you my game engine on which I work. Based on my own 3d engine, Tzu3D, developed in VB.NET and using DirectX 11
    My goal is to provide a gaming engine to the VB.NET community; to...
  4. Thread: Delay Loop

    by ShadowTzu
    Replies
    7
    Views
    1,735

    Re: Delay Loop

    maybe my classes can help you: https://github.com/ShadowTzu/TEP
  5. Replies
    2
    Views
    808

    Re: Array inside of other array?

    how? like that:
    Public Structure myStruct

    Public Structure myStruct

    Public Structure myStruct
    Public Structure myStruct

    Public Structure myStruct
    Public Structure...
  6. Replies
    13
    Views
    1,468

    Re: How to put 16 arrays into a textbox

    For learning:
    Dim result As String = String.Empty
    For i As Integer = 0 To Meter_Array.Count - 1
    result = result & Meter_Array(i)
    Next
    TextBox7.Text = result

    for speed:
    TextBox7.Text =...
  7. Thread: DX Graphics?

    by ShadowTzu
    Replies
    32
    Views
    2,677

    VS 2015 Re: DX Graphics?

    The last support for .NET from Microsoft is Directx9 with directX managed. You can found dll here:
    C:\Windows\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\Microsoft.DirectX.dll...
  8. Thread: DX Graphics?

    by ShadowTzu
    Replies
    32
    Views
    2,677

    VS 2015 Re: DX Graphics?

    I recommend you to use SlimDX, it's a wrapper for DirectX9, DirectX10 and DirectX11 and fully compatible with VB.NET (SharpDX is not) and DirectX Managed (from microsoft) is slow.
  9. VS 2013 Re: 95% used memory and won't go down even after all the jobs has done

    First look, I see that you never dispose anything:
    GCoffeeCon.Dispose()
    dsGCoffee.Dispose()
    daGCoffee.Dispose()
  10. VS 2015 Re: How to add the address of a method to a list from a string

    Thank you! that's what I wanted.
  11. VS 2015 [RESOLVED] How to add the address of a method to a list from a string

    I have a list from a delegate and would like to add functions from a string:
    Public Delegate Sub myFunction()
    Public list_Function As List(Of myFunction)


    Public Sub Add(Name as String)
    ...
  12. VS 2012 Re: How to play 2 or more audio files at the same time ?

    https://www.dropbox.com/s/w8u8ouelaq5sg24/multiple_sound.zip?dl=0

    :)
  13. Replies
    14
    Views
    1,839

    VS 2013 Re: Loosly compare string

    'Add every filename in a list of string
    list_files = New List(Of String)
    'for ...
    ' list_files.add filename...
    'next

    'find Ugly_duckling
    list_files = list_files.FindAll(AddressOf...
  14. VS 2010 Re: How to get data from html source in visual basic as string

    'you need to replace SOURCE_STRING by the source code of your webpage example: Dim splitted() As String = Split(GetCurrentWebDoc.documentElement.outerHTML, "HeaderLabel2>")
    Dim splitted() As String...
  15. VS 2010 Re: How to get data from html source in visual basic as string

    Dim splitted() As String = Split(SOURCE_STRING, "HeaderLabel2>")

    Dim data As String = Trim(Split(splitted(1), "<")(0))
    Dim split_data() As String = Split(data, " ")

    Dim Forename As String =...
  16. Replies
    14
    Views
    1,991

    VS 2013 Re: change Directory path

    yeah, it's not a solution because you have the same link for every line.
    I have found this:
    http://www.codeguru.com/columns/dotnet/accessing-files-in-a-onedrive-account-from-code.html
    with a...
  17. Re: Dual progress bars: Current file, total files

    I agree with Inferrd, here is a solution:

    Private Function GetFileSize(Url As String) As Long
    Dim FileSize As Long = 0
    Dim req As WebRequest = HttpWebRequest.Create(Url)
    ...
  18. Replies
    14
    Views
    1,991

    VS 2013 Re: change Directory path

    I don't know, I never try
  19. Replies
    14
    Views
    1,991

    VS 2013 Re: change Directory path

    what you want is not grab only one file, but a list a files, without being registered we can't get this list.
  20. Re: Dual progress bars: Current file, total files

    Please read again:
  21. Replies
    14
    Views
    1,991

    VS 2013 Re: change Directory path

    ok, I can't see any list of files because I am not registered. Which mean that is not easy to grab it by code.
  22. Re: Dual progress bars: Current file, total files

    can you try this:
    Me.ProgressBar1.Value += e.ProgressPercentage
  23. Replies
    14
    Views
    1,991

    VS 2013 Re: change Directory path

    This code cannot work with a url. if you give us more detail about your url may be we can help you to extract the list.
  24. Re: Tcp client connected but could not get data

    I am agree with passel, there are something wrong at the third line.
  25. Re: [VB2010] Microsoft Speech Recognition really sucks???

    You need to execute the learning module of your voice in Windows. After that, you have a better recognition.

    Edit: Oh, and where is DictationGrammar?

    Dim Diction As DictationGrammar = New...
  26. Re: Exit code from the main program disposing the classes?

    ?? A friend class with public member, what do you not understand?
    Nothing is set to nothing, it's a singleton.
  27. Re: Exit code from the main program disposing the classes?

    don't worry, everything work perfectly :)
  28. VS 2013 Re: Hi, VBFORUMS I just have a question to ask?

    You can compile VB.NET if you want:
    Imports Microsoft.VisualBasic
    Imports System
    Imports System.Text
    Imports System.CodeDom.Compiler
    Imports System.Reflection
    Imports System.IO
    Imports...
  29. Re: Exit code from the main program disposing the classes?

    In a graphic library or in a game, you need to manage every resources (textures, sounds, shaders, ...), to manage memory usage: dispose the unused resources and reload when there needs, you can't do...
  30. Re: Exit code from the main program disposing the classes?

    When you have more than 100 classes to dispose in real time, my class is very useful
  31. Re: Set Right Clicked word to a variable.

    can you try:
    StartPos = rtbRoom.Text.LastIndexOf(" ", CharIndex -1)
  32. Re: Exit code from the main program disposing the classes?

    If you have many class to dispose there are a smart solution: Class collector, you can dispose every class added with one line:

    http://pastebin.com/hQw1TPjG
  33. Replies
    4
    Views
    953

    Re: Program run very slow at specifed time

    strange problem

    I see "I", Is it inside a loop?
    If ItemValues(I) = True Then

    and this, Is it also in a loop?
    If Not Conn.State = ConnectionState.Open Then
    Conn.Open()
    ...
  34. Re: Getting an unexpected exception!!!

    Have you created "conn" inside Indexload ?
    If yes, have you add "conn.dispose" before End Sub ?
  35. Re: Getting an unexpected exception!!!

    What there are in "IndexLoad"?
  36. Re: Getting an unexpected exception!!!

    Maybe, try to Dispose everything before closing your application (Class.Dispose, Class=Nothing)
  37. Replies
    15
    Views
    2,275

    Re: Opening files with VB.NET Application

    Add to your form class:

    Private Shared FiletoOpen As String
    Public Shared Sub Main(Args() As String)
    If Not Args Is Nothing AndAlso Args.Length > 0 Then
    FiletoOpen =...
  38. Replies
    1
    Views
    736

    VS 2012 Re: Reading data from XML file

    m_nodelist = m_xmld.SelectNodes("/Data/Game/Images/screenshot")
    Game doesn't exist !


    m_nodelist = m_xmld.SelectNodes("/Data/Images/screenshot")
    '[...]
    m_nodelist =...
  39. Re: How to make a multiple connection downloader!!!

    http://codes-sources.commentcamarche.net/source/browse/100543/MultiThreadDownloadManager#browser

    ;)
  40. Re: [VB.NET] 48H Game: ludum dare 31 (VB.NET + DIRECTX 11)

    Results of my game for Ludum Dare 31 (2600 games):

    Overall: #445 (3.29 / 5.00)

    Humor: #170 (3.21 / 5.00)
    Audio: #371 (3.00 / 5.00)
    Fun: #432 (3.21 / 5.00)
    Graphics: #436 (3.28 / 5.00)...
Results 1 to 40 of 68
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width