- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
- 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
10 Posted Topics
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 … | |
Re: 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 … | |
Re: 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 & … | |
Re: 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 … | |
Re: [CODE]MsgBox(My.Computer.Info.OSVersion)[/CODE] workaround it | |
Re: 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 | |
Re: 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 … | |
Re: 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 … | |
Re: 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 | |
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, … |
The End.