Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #4K
~6K People Reached
Interests
fitness sports in general, mine was 'Taekwondo', but now I turned from a successful sport man to a furniture
PC Specs
I love Windows and Windows only
Favorite Forums
Favorite Tags

10 Posted Topics

Member Avatar for vbnetskywalker

hi guys... I'm developing a commercial app using VB6 , this time in my case I have to be worried about the code disclosure I konw any app can be cracked by a Pro Cracker, but I'm targeting people with a Decompiler ([URL="http://www.soft32.com/Download/free-trial/VB_Decompiler/4-124248-1.html"]like this[/URL]) with no assembly knowledge, It's not …

Member Avatar for AndreRet
0
2K
Member Avatar for nickelmann

try this out [code=vb] Dim InputText As String = "Jack born in, 1987" Dim Separators() = New Char() {" "c, ","c} ' u can add more Separators Dim Words = InputText.Split(Separators) 'filter words Words = Words.Where(Function(W) W.Trim.Length > 1 AndAlso _ W.Equals("in", StringComparison.OrdinalIgnoreCase) _ ).ToArray For Each Word In Words …

Member Avatar for nickelmann
0
2K
Member Avatar for Psychoticus

take a look at the class [Win32_Processor] take a look at the field [Architecture] and see what each value (which is a number) means [url]http://msdn.microsoft.com/en-us/library/aa394373(VS.85).aspx[/url] [CODE] Dim con As ConnectionOptions = New ConnectionOptions Dim machineName As String = System.Environment.MachineName Dim mss As ManagementScope = New ManagementScope("\\" & _ machineName & …

Member Avatar for vbnetskywalker
0
125
Member Avatar for 21KristianN

who told you that you can't count lines ???? (he lied to you) [CODE] Private Sub Rich_SelectionChanged() _ Handles Rich.SelectionChanged With Rich Me.StatusBar_Pos.Text = _ String.Format("Col : {0} Line : {1}", _ .SelectionStart - .GetFirstCharIndexOfCurrentLine(), _ .GetLineFromCharIndex(.SelectionStart)) End With End Sub [/CODE] I'm sorry I used a lot of the …

Member Avatar for 21KristianN
0
174
Member Avatar for Psychoticus
Member Avatar for TommyTran

you can ue this [CODE]Dim R = Label1.Text.ToCharArray.Reverse Label1.Text = String.Join("", R.Cast(Of String).ToArray)[/CODE] but I'm sure your teacher wants you to do it the hard way (using loops) to give you better understanding

Member Avatar for Ranx
0
94
Member Avatar for TommyTran

take a look at this complete example it still need some job from you (tiny job, if you figure it out then you understood a big part of my code, that way you get the benefits of the assignment, which is understanding the code) [CODE] Private Sub btn_Encode_Click() Handles btn_Encode.Click …

Member Avatar for vbnetskywalker
0
133
Member Avatar for tqmd1

would you please the next time you have an error msg just tell the number of line it's shown on anyways ......... from the code you provided the msg could be raised at the line number 17 make sure that the DataGridView has Columns already added , or you can …

Member Avatar for vbnetskywalker
0
141
Member Avatar for TommyTran

linq is your friend try this out [code=vb] Dim InputText As String = "vbnetskywalker" Dim Letters = From c As Char In InputText.ToCharArray _ Select c & " = " & AscW(c) & " " MsgBox(String.Join(vbCrLf, Letters.ToArray)) [/code] hope this helps

Member Avatar for vbnetskywalker
0
123
Member Avatar for vbnetskywalker

hi guys lately I've been experiencing LinqToSql + Sql Server Express 2005, and it was a great journey (muddy) anyway .... I'm at the point that I want to make a Backup/Restore for the database backup for SSE is as easy as a simple copy paste of the mdf file, …

0
72

The End.