Search:

Type: Posts; User: rkinci

Search: Search took 0.04 seconds.

  1. Re: [RESOLVED] Executing a method from the assembly without first referencing it?

    Executing a method without using interfaces or references does have uses. I want the option to use SqlServerCe (*.sdf) databases in my application. I can use the system.data.common namespace for...
  2. Replies
    16
    Views
    1,494

    Poll: Re: You might be doing it wrong!

    I would benefit from this even though I have been using the framework since 2007. The transition from vb6 was tough for me. My biggest challenge has
    been finding proper examples that 'work'.

    I...
  3. Thread: Class Statement

    by rkinci
    Replies
    5
    Views
    821

    Re: Class Statement

    Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim JDobject As New birthdate
    JDobject.mo =...
  4. Replies
    1
    Views
    1,007

    VS 2008 Re: Check Internet Speed

    As far as I know, the only way to determine connection speed is to test it by sending or receiving a known amount of data and keeping track of the time.
  5. Thread: Class Statement

    by rkinci
    Replies
    5
    Views
    821

    Re: Class Statement

    Public Class Form1
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    class1.object1.doThis()

    Dim inst As New...
  6. Replies
    19
    Views
    8,428

    VS 2010 Re: Editing text file specific lines

    Solving one puzzle at a time is how a beginner will learn.
  7. Replies
    19
    Views
    8,428

    VS 2010 Re: Editing text file specific lines

    The example below works. I have written the routine to save your changes using the same style that you used at the start of the thread. This is the best that you can do with what you know, and that...
  8. Replies
    1
    Views
    589

    VS 2010 Re: remove illegal xml characters

    In my experience with ascii, binary values of 0 (zero), or 255 can also look like spaces. The tab (9) character can look like a space if tabs are set at one.



    Dim weirdchar As Byte =...
  9. Replies
    19
    Views
    8,428

    VS 2010 Re: Editing text file specific lines

    Class form
    Dim items As New System.Collections.Generic.List(Of itemobject)
    Dim file As String = "C:\test.txt"

    Sub load_collection()
    items.Clear()
    Dim text As String...
  10. Replies
    19
    Views
    8,428

    VS 2010 Re: Editing text file specific lines

    Using a text file like a database does require overwriting the entire file.

    To get information, you can do as you are doing.

    To save the new information, you will need to read the text file...
  11. VS 2010 Re: An error occurred while signing: Key not valid for use in specified state.

    http://social.msdn.microsoft.com/Forums/nl-NL/csharpide/thread/dfa2d214-d32f-4174-8fcd-e82beb68c8ed
  12. Replies
    3
    Views
    6,183

    VS 2010 Re: Overloads in a Module

    Modules do not support the overloads keyword. Just remove it. Two examples below shows 'overloads' in modules and in classes. Both the module example and the class example have the same effect.
    ...
  13. Replies
    19
    Views
    8,428

    VS 2010 Re: Editing text file specific lines

    Class formx
    Private Sub Form_Load()
    Dim file As String = "C:\test.txt"
    Dim text As String = ""
    Dim items As New System.Collections.Generic.List(Of itemobject)
    ...
  14. Replies
    5
    Views
    872

    VS 2010 Re: Replace something with nothing

    If possible, I would keep a tagged string in my application that I can change to any new string in the future.



    Dim taggedstring As String = "miscint %myrandomkey% and more random info"...
  15. Re: how to merge two XML files into one file with new root element?

    Imports System.Data
    Public Class Class1
    Sub starthere()
    Dim xml1filename As String = "xmlfile1.xml"
    Dim xml2filename As String = "xmlfile2.xml"

    Dim table1...
  16. Replies
    5
    Views
    744

    VS 2010 Re: Class within a class

    Public Class mainProgram
    Public Sub starthere()
    Dim lst As New System.Collections.Generic.List(Of AddressEntry)
    Dim addressentry As AddressEntry

    addressentry = New...
  17. VS - Creating your own code signing certificates

    Creating a self signed Code Signing certificate is not easy to figure out, but is easy to do. The Microsoft SDK's includes a utility called makecert.exe. Since I develop applications for private...
  18. Replies
    0
    Views
    5,264

    VB.NET 2010 - Generic Data Provider Factory

    This code example uses reflection, factories, generics, and linq to dynamically load assemblies at runtime.

    The example below allows me to distribute my data providers separately from my...
  19. Replies
    38
    Views
    107,353

    Re: Accessing Controls from Worker Threads

    Very helpful. Thanks.
Results 1 to 19 of 19



Click Here to Expand Forum to Full Width