Search:

Type: Posts; User: SNIPER.PS

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    456

    VS 2010 Re: Remove Lines on TextBox

    Hello

    This is what you want


    TextBox1.Lines = TextBox1.Lines.Skip(220).Take(47).ToArray

    All The Best :)
  2. Replies
    7
    Views
    2,300

    VS 2013 Re: Extract string from exe file

    i try it all .. and no result
  3. Replies
    7
    Views
    2,300

    VS 2013 Re: Extract string from exe file

    if you mean this code


    TextBox1.Text = System.IO.File.ReadAllText("c:\WindowsApplication1.exe", Encoding.UTF8)


    it gives me only this

    http://im51.gulfup.com/rf94ac.png
  4. Replies
    7
    Views
    2,300

    VS 2013 Re: Extract string from exe file

    Thank you mr. jmcilhinney , but it gives me only this result in image .. when i use this code


    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim...
  5. Replies
    7
    Views
    2,300

    VS 2013 Extract string from exe file

    Hello guys

    when i open .net exe file in notepad i will get string like this in image

    How can i get this string programmatically and put in TextBox

    Thank you :)
    ...
  6. Re: Convert Form Shape To Image Shape

    Thanks a lot mr.Edgemeal :)
  7. [RESOLVED] Convert Form Shape To Image Shape

    Hello Guys

    i use this glass to convert the form shape to image shape like this .. my question is when i put controls on the form it will disappear .. how can show the controls

    Before

    116035...
  8. Replies
    1
    Views
    462

    VS 2008 How to create advance property

    Hello Guys

    How to create advance property .. like Items property in ListBox Control .. or Nodes property in TreeView

    Thanks
  9. Replies
    3
    Views
    441

    Re: Array Item Check

    Hello


    If myArray(2) IsNot Nothing Then
    'do something
    End If

    All The Best

    Mohammad Farah
  10. Re: How do I delete the spaces and lines and @ From RichTextBox

    Hello

    Welcome aftfm brother :)

    Take this Two codes , choose what do you want


    RichTextBox1.Text = RichTextBox1.Text.Replace(ControlChars.Lf, " ")

    Or
  11. Replies
    7
    Views
    3,739

    VS 2010 Re: String Sorting

    Hello

    Thanks , You are right .. and the code after edited will be


    Dim Lst = (From Item As String In ListBox1.Items Select Item Order By Item.Split("_")(0) Ascending, Val(Item.Split("_")(1))...
  12. Replies
    7
    Views
    3,739

    VS 2010 Re: String Sorting

    Hello

    Another Easy Solution By LINQ


    Dim Lst = (From Item As String In ListBox1.Items Select Item Order By Val(Item.Split("_")(1)) Ascending).ToArray
    ListBox1.Items.Clear()...
  13. Replies
    4
    Views
    892

    VS 2010 Re: How To Use Regex In this Sitiuation ??

    Hello

    Welcome Ayman Brother :)

    First import this name space


    Imports System.Text.RegularExpressions

    And This Code Test All Number which sparated by comma
  14. VS 2010 Re: I need to remove duplicates and originals

    Hello

    From reading books and help a members in many forums .. especially arabs forums like http://vb4arab.com

    All The Best :)

    Mohammad Farah
  15. VS 2010 Re: I need to remove duplicates and originals

    Hello

    Another Solution


    TextBox2.Lines = TextBox1.Lines.Where(Function(Line) System.Text.RegularExpressions.Regex.Matches(TextBox1.Text, "\b" & Line & "\b").Count = 1).ToArray

    All The Best...
  16. VS 2010 Re: How to make my program 'always on top'

    Hello


    Me.TopMost = True

    All The Best

    Mohammad Farah
  17. VS 2010 Re: How can I remove everything after a char for every item in a listbox?

    Hello

    this an answer using LINQ and Regex


    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim Lst As New ArrayList
    ...
  18. Replies
    2
    Views
    597

    VS 2008 Increase Quality Of Icons

    Hello Guys

    Im Using This Code To Convert Image To Icon , But The Icon File Quality Is Bad, How I Can Increase Its Quality


    Dim Ico As Icon, Bmp As Bitmap
    Bmp = New Bitmap(PictureBox1.Image,...
  19. Replies
    4
    Views
    809

    VS 2008 Re: Problem In ToolBox Window

    The Problem Has Resolved By Rset Setting As in the picture

    From Tool Menu whe Select

    http://www.vb4arab.com/vb/uploaded/34004/01315147669.jpg

    After That
    ...
  20. Replies
    4
    Views
    809

    VS 2008 Re: Problem In ToolBox Window

    up .. up
  21. Replies
    4
    Views
    809

    VS 2008 Re: Problem In ToolBox Window

    how can solve this problem Manually Or Automically ?
  22. Replies
    4
    Views
    809

    VS 2008 [RESOLVED] Problem In ToolBox Window

    Hello Guys

    Problem In ToolBox Window , Look At This Picture

    The Icons of controls Is Inverse

    Thanks For All
  23. Replies
    7
    Views
    1,349

    Re: Error When Using MultiThreading in vb6

    i will try it
  24. Replies
    7
    Views
    1,349

    Re: Error When Using MultiThreading in vb6

    why not
  25. Replies
    7
    Views
    1,349

    Re: Error When Using MultiThreading in vb6

    yes that happen each time
  26. Replies
    7
    Views
    1,349

    Error When Using MultiThreading in vb6

    Hello Guys

    when i use MultiThreading in vb6 shows me this error and after that project is closed . The file in Attachments

    http://www.vb4arab.com/vb/uploaded/34004/01308419037.jpg

    Thanks For...
  27. Re: Extract And List Api Functions And Its Parameter Form Dll Files

    For i = 1 To 1000000000000000000000000000000000000000000
    Up
    Next i
  28. Re: Extract And List Api Functions And Its Parameter Form Dll Files

    Please Help
  29. Re: Extract And List Api Functions And Its Parameter Form Dll Files

    up......
  30. Re: Extract And List Api Functions And Its Parameter Form Dll Files

    Thanks For All But The The Program That I Want Like This Example In Link, it work but problem in parameter.

    http://www.vb4arab.com/vb/uploaded/34004/01304530152.zip
  31. Re: Extract And List Api Functions And Its Parameter Form Dll Files

    I Do it but it give me this msgbox

    http://www.vb4arab.com/vb/uploaded/34004/01304444559.jpg

    thanks for you DrUnicode
  32. Re: Extract And List Api Functions And Its Parameter Form Dll Files

    Thanks . But the example does not work.
  33. Extract And List Api Functions And Its Parameter Form Dll Files

    Hello Guys

    How Can I Extract And List Functions And Its Parameter Form Dll Files

    Thanks For All
  34. Replies
    7
    Views
    5,985

    Re: How To Get Text From An Image

    can you help me by code .. Thanks :)
  35. Replies
    7
    Views
    5,985

    Re: How To Get Text From An Image

    no no not crack i used this way in my prgramm , that is it
  36. Replies
    7
    Views
    5,985

    How To Get Text From An Image

    Hello Guys

    How To Get Text From An Image Like This Image By Code

    http://www.vb4arab.com/vb/uploaded/34004/01303977803.jpg

    Thanks For All
  37. Re: How To Text Be Unicode In TextBox And Label

    Thanks For All
  38. Re: How To Text Be Unicode In TextBox And Label

    where i find it ?
  39. Re: How To Text Be Unicode In TextBox And Label

    Thanks mohammad brother . But how can i show text unicode in stander textbox.
  40. Re: How To Text Be Unicode In TextBox And Label

    Thanks But I Want Code For TextBox
Results 1 to 40 of 96
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width