Search:

Type: Posts; User: vb_ftw

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    11
    Views
    1,128

    Re: Any thoughts on Joshep Knoy?

    people are too focused on their own problems to look into or care about other peoples problems, fears, etc

    like me, i have a truck load of problems...
  2. Replies
    11
    Views
    1,128

    Re: Any thoughts on Joshep Knoy?

    sometimes "empathy can be hard to understand.
  3. Replies
    11
    Views
    1,128

    Re: Any thoughts on Joshep Knoy?

    yea, they are doing a good thing and should be supported...
  4. Replies
    11
    Views
    1,128

    Any thoughts on Joshep Knoy?

    These people are really on to something. From my perspective printing that many flyers is pretty expensive. They really are trying to get this done.

    and it's the right thing to do, so here's my...
  5. Thread: VB Assistance

    by vb_ftw
    Replies
    2
    Views
    1,102

    Re: VB Assistance

    why complicate things...allow the user to choose a date from another datetimepickercontrol and create a sub and send it the datetimepicker
    see the example:

    Private Sub...
  6. Re: KeyDown and Mousedown in conjunction problems.

    it's because u have put the code on the button 1 keyup event. this will only work if button 1 has focus.

    maybe u should try the form's key up event.
  7. Replies
    10
    Views
    8,219

    VS 2010 Re: Help with Function

    it already does that.
  8. Thread: Kill Process

    by vb_ftw
    Replies
    1
    Views
    509

    Re: Kill Process

    this should work, add it in the Form's closing event

    Dim PluginsToKill = System.Diagnostics.Process.GetProcessesByName("IEPluginsProcessNameAsAppearsInProcessesTabInTaskManager")
    For Each...
  9. Replies
    40
    Views
    2,465

    Re: Project for my son

    what visually means here is with examples and results.
  10. VS 2010 Re: Help with checked list box and folder copy

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    Dim BaseDir As String = "C:\TestDirectory2\"
    For Each c As String In...
  11. Replies
    4
    Views
    615

    VS 2010 Re: CheckedListBox issue

    Me.Label1.Text = "(" & If(e.NewValue = CheckState.Checked, (Me.CheckedListBox1.CheckedItems.Count + 1).ToString, (Me.CheckedListBox1.CheckedItems.Count - 1).ToString) & ") of (" &...
  12. VS 2010 Re: Help with checked list box and folder copy

    For Each subFolders As IO.DirectoryInfo In dir.GetDirectories
    Me.ListBox1.Items.Add(subFolders.FullName)
    Next
  13. Replies
    4
    Views
    615

    VS 2010 Re: CheckedListBox issue

    see here http://www.vbforums.com/showthread.php?t=673505
  14. Replies
    15
    Views
    1,428

    VS 2005 Re: Regex pattern problem?

    Dim ToRemove As String = String.Concat(item.Text, "<p id=""images"">")
    Dim pattern1 As String = String.Concat(ToRemove, "(.*?)>")
    Dim match As MatchCollection = Regex.Matches(str1,...
  15. Replies
    22
    Views
    2,157

    VS 2010 Re: Conditional Logic In One Line

    i would do it like this:

    If Not (Me.txtPcidSystem.Text = Me.txtPcidDatabase.Text And TestData.BypassCheck_PCID = -1) Then
  16. Replies
    3
    Views
    5,519

    VS 2010 Re: checkedlistbox ItemCheck event

    you could try the MouseUp event along with CheckonClick property of checkeslistbox
  17. Replies
    15
    Views
    1,428

    VS 2005 Re: Regex pattern problem?

    maybe ur pattern should be: my strings 1<p id=""images"">(.*?)</p>
  18. Replies
    6
    Views
    1,739

    Re: Thermometer Suggestions please

    http://www.sustainabilitymeasurement.com/index.html

    looks good but expensive
  19. Thread: WMP function?

    by vb_ftw
    Replies
    2
    Views
    564

    Re: WMP function?

    u can use the playstate property with "playing"
  20. VS 2010 Re: Stop Button Code Execution at some point?

    or:
    iif (mycondition,on true Exit Sub,nothing)
  21. Thread: Wierd renaming

    by vb_ftw
    Replies
    1
    Views
    437

    VS 2010 Re: Wierd renaming

    check the "handles..." at the end of the event
  22. Replies
    3
    Views
    749

    VS 2005 Re: Error in opening an Excel file

    ha! too late:rolleyes:
  23. Replies
    3
    Views
    749

    VS 2005 Re: Error in opening an Excel file

    google helped: http://support.microsoft.com/default.aspx?scid=kb;en-us;320369
  24. Replies
    7
    Views
    783

    VS 2008 Re: Regex Pattern help

    System.Text.RegularExpressions.Regex.Matches(Str, pattern, System.Text.RegularExpressions.RegexOptions.Singleline)

    u can use single line option
  25. Replies
    7
    Views
    783

    VS 2008 Re: Regex Pattern help

    it would be helpful if u posted your code
  26. Replies
    7
    Views
    783

    VS 2008 Re: Regex Pattern help

    why not use the htmlagility pack and use xpath
    agilitypackhtmldocument.documentnode.selectnodes("//*[@class='clientticketreply'])
  27. VS 2010 Re: Modify Length of string and delete unneeded characters

    Dim dots As New String(".", (15 - TextBox1.Text.Length))
    str = str.Replace("Name...............", TextBox1.Text & dots)

    u might want to do some error handling for if the name in textbox...
  28. Re: HELP how to get element by id without webbrowser

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim webreq As System.Net.HttpWebRequest =...
  29. Re: HELP how to get element by id without webbrowser

    use htmlagilitypack
  30. Replies
    1
    Views
    496

    Re: View and Search Excel Workbook

    yes, u can
  31. Replies
    4
    Views
    2,067

    Re: VB2010 - CheckedListBox, CheckBox Help

    it converts each individual char in the string to an integer
  32. Re: VB.Net 2008 Print DataGridView (Text Wrap top header column and lock in width)

    i had a similar problem. what i ended up doing was exporting the dgv to excel and then printing, or u can put it into excel, record a macro and set ur page setup and then translate the macro to .net,...
  33. Replies
    4
    Views
    2,067

    Re: VB2010 - CheckedListBox, CheckBox Help

    >>

    Dim mystringofnums As String = "0110100110"
    Dim listofintegers As New List(Of Integer)
    listofintegers.AddRange(mystringofnums.Select(Function(x) Integer.Parse(x)))

    ...
  34. VS 2010 Re: HTTPWeb Request Login Failed. Any help Please?

    request.Method = "POST"

    also, it's post not get. i checked

    use fiddler
  35. VS 2010 Re: HTTPWeb Request Login Failed. Any help Please?

    S=&username=" & TextBox1.Text & "&password=" & TextBox2.Text & ""

    maybe ur string is wrong
    ...
  36. Replies
    8
    Views
    700

    Re: Problem in the Logic

    u could wrap this around an if statement to check for contains() on "="
    u could use val() too.
  37. Replies
    2
    Views
    431

    Re: Change direction of RowHeaders in DGV

    there is a property RightToLeft. set it to true in the properties column or

    DataGridView1.RightToLeft = Windows.Forms.RightToLeft.Yes
  38. Thread: Strings with ""

    by vb_ftw
    Replies
    4
    Views
    553

    VS 2010 Re: Strings with ""

    or simply double quote the double quotes:
    dim cake = """I Love Cake"""
  39. Replies
    8
    Views
    700

    Re: Problem in the Logic

    rough suggestion:

    Dim strExp = line.Substring(5, line.IndexOf("=") - 5)
    Try
    If strExp = svalue Then
    svalue = svalue + 1
    End If
    ...
  40. Re: “Object reference not set to an instance of an object”

    at the line in red colName is no yet declared or added to the datatable, it's a string
    u should set the unique property of the column after it declared as datacoumn
Results 1 to 40 of 144
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width