Search:

Type: Posts; User: Starf0x

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    14
    Views
    1,845

    VS 2013 Re: Loosly compare string

    Ian,

    Thank you for all your help, I will do my best to do so :)

    Cheers,

    Starf0x
  2. Replies
    14
    Views
    1,845

    VS 2013 Re: Loosly compare string

    Hey IanRyder,

    This ihard to comprehend for me you code (never studied for it).
    I'm trying, believe me :)

    But it doesn't always work, i have issues with this pattern:

    001.jpg
    002.jpg...
  3. Replies
    14
    Views
    1,845

    VS 2013 Re: Loosly compare string

    [QUOTE=IanRyder;4849437]Hi,

    Here is my contribution for what its worth. You are going to have to do some sort of File Name “Pattern Recognition” and work out a way to discern what is an “Ugly...
  4. Replies
    14
    Views
    1,845

    VS 2013 Re: Loosly compare string

    Hi dday9,

    That's not a feasable answer is it?
    As I said, I do not know how the files are named, I only now there are 1 or 2 that are not part of the collection, those are the ones I need.

    Kind...
  5. Replies
    14
    Views
    1,845

    VS 2013 Re: Loosly compare string

    Hi dbassnet,

    As I said, the names are not always the same e.g.:

    Legacy v2 015-000.jpg
    Legacy v2 015-013.jpg
    Legacy v2 015-014.png
    Legacy v2 015-015.jpg
    Legacy v2 015-016.jpg
    Legacy v2...
  6. Replies
    14
    Views
    1,845

    VS 2013 Re: Loosly compare string

    That would be nice ShadowTzu, if the files where alway te same.
    But I did my own research and found this, I'm not sure how waterproof this is:



    For Each strFile In strFileList
    ...
  7. Replies
    14
    Views
    1,845

    VS 2013 Loosly compare string

    Hey,

    Subject sound strange, but let me explain;

    I have a list of filenames, 99% of them look like each other, and the 1% is the one I need to capture.
    How can I compare the list and get the...
  8. Replies
    1
    Views
    335

    VS 2010 [RESOLVED] Row Color (Should Work)

    I Fixed it;

    Disabled option strict and changed 'is' to '='.


    For Each row As DataGridViewRow In frmMain.DGView.Rows
    If Not row.IsNewRow Then
    If...
  9. Replies
    1
    Views
    335

    VS 2010 Row Color (Should Work)

    Hello All,

    I really don't get it, the below should work, or am I stuck in a developers loop? :blush:

    For Each row As DataGridViewRow In frmMain.DGView.Rows
    If Not...
  10. Replies
    38
    Views
    107,876

    Re: Accessing Controls from Worker Threads

    Thank You Jim.

    This/These examples are really great and explained nicely.
    But what bothers me that VB doesn't have a delegate to do a lot controls in one go.
    If you have/collect a lot of data...
  11. Replies
    2
    Views
    665

    VS 2008 Re: PE Internal Name

    nevermind, it is obvious, stupid naming convention:

    MainModule.FileVersionInfo.InternalName

    I never expected this to b within the File Version Information, I was thinking digits.

    Starf0x
  12. Replies
    2
    Views
    665

    VS 2008 Re: PE Internal Name

    Is this a difficult question or am I missing something obvious?

    Kind Regards, Starf0x
  13. Replies
    18
    Views
    6,904

    VS 2008 Re: datagridview current cell

    That line assumes that Cells(1) has an String value, if that isn't the case it will give that error.

    Why don't you copy your code adapted code here, I mean the code I provided should be changed a...
  14. Replies
    18
    Views
    6,904

    VS 2008 Re: datagridview current cell

    Would be nice if you tell us a little more
    You can see where it goes wrong, and my code expects data in the cell, in my case this is always.

    F
  15. Replies
    18
    Views
    6,904

    VS 2008 Re: datagridview current cell

    This is what I do:



    Private Sub txtSearch_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtSearch.TextChanged
    For Me.A = 0 To Me.DGView.RowCount -...
  16. Replies
    2
    Views
    665

    VS 2008 [SOLVED] PE Internal Name

    Hello,

    Let me get straight to the point, we've (against my better judgement) decomissioned an excellent Desktop Management tool, one of the options build is was a Application Monitor and it could...
  17. Replies
    2
    Views
    706

    VS 2010 Re: Integer doesn't compare right

    Indeed, it seems that ProductVersion is also a string, that's funny :)

    Thank you for the solution Maximilian.

    Kind Regards, Starf0x
  18. Replies
    2
    Views
    706

    VS 2010 [SOLVED] Integer doesn't compare right

    I have this code:



    Dim x() As String = Split(Contents, "^")
    If x(0) > Application.ProductVersion Then
    Msgbox("Test")
    End If
  19. Replies
    6
    Views
    895

    VS 2010 Re: Can't find anything wrong:

    This suggestion helped indeed, thank you.
    Next time I'll create the array properly.

    S
  20. Replies
    6
    Views
    895

    VS 2010 Re: Can't find anything wrong:

    Well that's the thing, I usually create an array list and .add values to them, but that also errors with the same error, but let me try the suggestion and come back to you.

    S
  21. Thread: Login problem

    by Starf0x
    Replies
    13
    Views
    1,483

    VS 2008 Re: Login problem

    Just add 'End' to your Exit command and 'Hide' your logonform.

    S
  22. Replies
    6
    Views
    895

    VS 2010 [RESOLVED] Can't find anything wrong:

    I'm stuck a bit;

    I'm reading a cell value from a Datagridview, and this works fine in other projects, but not here?



    Dim OldGUID() As String = Nothing
    Dim X as Integer = -1

    For X = 0 To...
  23. Replies
    3
    Views
    621

    VS 2008 Re: Adding Time

    I would have never guessed this, thank you, You Rule.

    Starf0x
  24. Replies
    3
    Views
    621

    VS 2008 [Solved] Adding Time

    LS,

    I've been looking, but don't know the correct search criteria (english not native)

    here's my issue;

    I have 2 values (sometimes many more, but this is an example):

    00:03:00
    and
  25. Replies
    8
    Views
    942

    VS 2008 Re: Help with timers?

    How Rude!
  26. Replies
    10
    Views
    8,995

    VS 2008 Re: Might be simple, Might be hard: Reg_Binary

    Nah, it is not written in .NET, else I would be able to do this :)

    Seems to be a hard thing to crack?

    Kind Regards, Starf0x
  27. Replies
    10
    Views
    8,995

    VS 2008 Re: Might be simple, Might be hard: Reg_Binary

    Another program shows those values, and it also reads these values.

    Kind Regards, Starf0x

    PS, I think that was a typo :)
  28. Replies
    10
    Views
    8,995

    VS 2008 Re: Might be simple, Might be hard: Reg_Binary

    I can give you some examples;

    B7 59 C4 4a = Thu Oct 01 09:26:47 2009
    19 EC 9C 4a = Tue Sep 01 11:40:41 2009
    4F 55 BE 4A = Sat Sep 26 19:54:23 2009
    17 B8 C5 47 = Wed Feb 27 20:20:55 2009
    ...
  29. Replies
    10
    Views
    8,995

    VS 2008 Re: Might be simple, Might be hard: Reg_Binary

    Thank you for your response.

    The TryParse won't and can't work with a Byte Array.

    I just tried on your advise :)

    Starf0x
  30. Replies
    10
    Views
    8,995

    VS 2008 Might be simple, Might be hard: Reg_Binary

    I'm stuck at the moment gents, and would like to ask for your help.

    I have a registry value (reg_binary): B7 59 C4 4A
    I know that this value contains a Date and a Time, you guessed it :)

    How...
  31. Re: [02/03] CHecking to see if instance of application is running

    I'm not that good in vb2005, but even I understand that you should write:



    Imports System.Threading
    Private siMutex As Mutex
    siMutex = New Mutex(False, "PACITT.exe")
    If (Not...
  32. Re: [2005] String.Format an integer to time

    Took me all evening to find this tip, thnx Dude.
    (I should have gone to this forum first :) )

    Kind Regards, Starf0x
  33. Replies
    3
    Views
    469

    Re: [2008] CellFormatting

    Hmm, That Helps :(
  34. Replies
    3
    Views
    469

    [2008] CellFormatting

    Hi,

    I've noticed that the startup of my program is rather extensivly slowed down by the procedure DataGridView_CellFormatting.

    When I comment this procedure the application starts rather fast....
  35. Replies
    21
    Views
    1,283

    Re: [2008] Object Null Reference?

    Here's the full code with error:

    This is the error:


    System.NullReferenceException: Object reference not set to an instance of an object.
    at AA_Console.frmMain.CheckNewVersion()
    at...
  36. Replies
    21
    Views
    1,283

    Re: [2008] Object Null Reference?

    VB2008 already notices that the extra .autoupdate should be appended.

    Kind Regards, Starf0x
  37. Replies
    21
    Views
    1,283

    Re: [2008] Object Null Reference?

    I downloaded his sample, and created the DLL, this way i can make it app independant.

    Kind Regards, Starf0x
  38. Replies
    21
    Views
    1,283

    Re: [2008] Object Null Reference?

    My Sincere apologies if I did start the post wrong.

    I tried your solution, it gives the same error.

    Kind Regards, Starf0x
  39. Replies
    21
    Views
    1,283

    Re: [2008] Object Null Reference?

    Ok, this is it:



    Dim MyAutoUpdate As New AutoUpdate.AutoUpdate
    If MyAutoUpdate.AutoUpdate(CommandLine) Then
    Dispose()
    Application.Exit()
    End...
  40. Replies
    21
    Views
    1,283

    Re: [2008] Object Null Reference?

    DbasNett,

    The only line Changed is the RemotePath.

    And in Debug mode this works fine, but after compile it doesn't anymore, I don't get errors or wrong variables by stepping through it.

    Does...
Results 1 to 40 of 79
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width