Search:

Type: Posts; User: Lasering

Page 1 of 13 1 2 3 4

Search: Search took 0.22 seconds.

  1. Replies
    7
    Views
    1,523

    VS 2010 Re: Webpage, InputBox, onKeyUp, AJAX

    How to retrieve a table that was created using AJAX after a onKeyUp event was triggered.
  2. Replies
    7
    Views
    1,523

    VS 2010 Re: Webpage, InputBox, onKeyUp, AJAX

    Do you know the hoops I've to jump? Or some way to get me started on a workaround?
  3. Replies
    2
    Views
    1,724

    VS 2010 Re: MouseWheel

    Add this code:
    Private Sub PictureBox1_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.MouseHover
    PictureBox1.Focus()
    End Sub
    Then try the BreakPoint again.
  4. Replies
    7
    Views
    1,523

    VS 2010 Re: Webpage, InputBox, onKeyUp, AJAX

    Now it gets me a lot of unwanted results.

    If I cant find another solution, I'll stick with this.
  5. Replies
    7
    Views
    1,523

    VS 2010 Re: Webpage, InputBox, onKeyUp, AJAX

    Thats what I already did. But that "search" is not complete. Try to search "berk" there and in the search textbox. The results will be different: with the textbox you will have five results whereas...
  6. Replies
    7
    Views
    1,523

    VS 2010 Webpage, InputBox, onKeyUp, AJAX

    Hi!

    I want to extract some information from a web site (Bloomberg). This side has a search textbox with a onKeyUp event that, as far as I can understand, uses AJAX to create a table.

    Is it...
  7. Thread: Read XML File

    by Lasering
    Replies
    5
    Views
    1,027

    VS 2008 Re: Read XML File

    You could use LINQ to XML which is more intuitive then XmlDocument. If you are willing to.
    These two links will have all you need:

    LINQ to XML Vb Samples
    LINQ to XML Programming Guide

    PS: You...
  8. Re: Need help with, show screen shot pic in another form

    Completely more thorough explanation.

    I'm also of the opinion that default instance was a very bad choice from Microsoft.
  9. Re: Need help with, show screen shot pic in another form

    Seems to me you have two Forms4. And you are sending the image to a picturebox in the Form4, but showing the other Form4 (the MyFirstForm).
    Try this (instead of creating the new Form4):...
  10. Replies
    3
    Views
    821

    VS 2008 Re: XML settings and data

    Found the solution here. LINQ to XML is very neat and easy to use.
  11. Thread: Custon UI?

    by Lasering
    Replies
    6
    Views
    910

    VS 2008 Re: Custon UI?

    For that one, you have to pay, although you can try the trial.

    Seems to be an installer, so after you install it the controls should appear on the Toolbox of Visual Studio.
  12. Replies
    3
    Views
    821

    VS 2008 Re: XML settings and data

    My.Settings is very nice, but doesn't allow to add new settings in runtime.

    Serializing/deserializing a class is very limited. If I want to serialize two different classes to the same XML I would...
  13. Thread: Custon UI?

    by Lasering
    Replies
    6
    Views
    910

    VS 2008 Re: Custon UI?

    Either they build it from scratch using something like GDI, or they used something like this.

    But my money is on the GDI.
  14. Replies
    3
    Views
    821

    VS 2008 [RESOLVED] XML settings and data

    Hi!

    In your opinion what's the best way to write and read to a XML file if you want to insert random data to the file, like settings, and later on change, add or delete some of that data?

    By...
  15. Replies
    2
    Views
    8,142

    VS 2008 Re: Disabling Windows Key Using Vb.net?????

    I don't know how to do that, but I guarantee you'll have to mess around in the Windows API. If that is even possible to do.

    Look in my signature to see if you find some useful API.
  16. Thread: Look and Feel

    by Lasering
    Replies
    3
    Views
    733

    Re: Look and Feel

    Good old google. I searched for wallpapers :P
  17. Replies
    4
    Views
    2,793

    VS 2005 Re: Math Equation in VB.net ??? How To ??

    You don't need the Sign function because
    sing(H)*Abs(H)^0.5 = H/Abs(H) * Abs(H) ^.5 = H ^.5 = Sqrt(H)

    Note: Also if you just want to evaluate the expression, VB.Net is not the best choice. Try to...
  18. Replies
    2
    Views
    746

    VS 2010 Re: how file names in tree

    Here you have the all thing already done, and has a bonus it also deals with the "standard" icons:

    http://www.codeproject.com/KB/cpp/VbNetExpTree.aspx

    You need to register but it worth, since...
  19. Thread: Look and Feel

    by Lasering
    Replies
    3
    Views
    733

    Re: Look and Feel

    You can try background image properties, and use events like MouseEnter, MouseEnter.

    That should do the trick.

    Heres a project with some ideias.
  20. Replies
    3
    Views
    965

    Re: Start Menu+Recently Used Programms

    I'm not using any program to make the installer (if thats your question). But that exactly the point I want to make this "manually".
    Maybe with a example its clear:
    Imagine you install Firefox, and...
  21. Replies
    3
    Views
    965

    Start Menu+Recently Used Programms

    Hi!

    How can I make a program appear in the recently used programs in start menu, without having to use ANY installer. I know that must involve editing/create some registry entries (I just don't...
  22. Replies
    10
    Views
    755

    Re: A price for this program.

    Well inicially I was thinking charging him for it, but after reading the post I decided not to.
  23. VS 2008 Re: [RESOLVED] String IndexOf and Remove VS Regex

    Now, so do I! Regex rocks!!
  24. Replies
    3
    Views
    785

    Re: Pattern Generator Help

    Well you get a square because you make both loops looping through the same range. You can make something like:
    For line As Integer = 0 To 10
    For column As Integer = 0 To 5
    'Your code
    ...
  25. Replies
    3
    Views
    580

    Re: Finding information in a string

    You can use regular expressions .

    Write this at the top of the file where you are going to use them:
    Imports System.Text.RegularExpressions
    Then do
    Dim results As Match =...
  26. VS 2008 Re: String IndexOf and Remove VS Regex

    Just changed everything to Regex.
  27. Replies
    3
    Views
    785

    Re: Pattern Generator Help

    Well that would be quite simple. You create a nested loop (that is a loop inside another loop).

    The first loop would cycle through the lines, so it would go from 0 to number of lines -1.
    The...
  28. VS 2008 [RESOLVED] String IndexOf and Remove VS Regex

    Hi!

    I have a string with 60000+ characters. I look for informations inside the string in a sequentially order. Every time I found a information I delete whatever is behind that information. In...
  29. Replies
    10
    Views
    755

    Re: A price for this program.

    Its no problem. Its for personnal use, my friend is a film fanatic. And I won't charge anything for the program. To do so would be stupid.
  30. Replies
    10
    Views
    755

    A price for this program.

    Hi!

    I really don't if I'm posting in the right section.

    I've made a program to a friend, but now I don't what price I should ask for it.

    What the program does:

    Reads a excel file that...
  31. Replies
    90
    Views
    99,848

    Re: Using the BackgroundWorker Component

    Excellent post! It has helped me a lot!! Keep up the always great work jmcilhinney!
  32. Replies
    11
    Views
    794

    Re: [2008] Select Case Help

    I would start by breaking the number in two. For example if you have 197.18 I would break it into 197 and 18. Then count the number of numbers in each number. 197 has three numbers so it would start...
  33. Re: [2008] Calling/Executing a subroutine

    Try:
    TA1_LostFocus(sender, e)
    CA1_CheckedChanged(sender, e)
  34. Replies
    10
    Views
    952

    Re: Good Tutorials?

    This is a good way to start: VB.NET School
  35. Replies
    1
    Views
    554

    Re: [2008] Convert a picture into text

    You could use an OCR. Look at this post for more info: [2005] Ocr
  36. Replies
    11
    Views
    1,424

    Re: [2008] Login to a web page

    Damm, cant find it, is it a COM?
  37. Replies
    11
    Views
    1,424

    Re: [2008] Login to a web page

    For some reason unknown to me I'm getting an error on this line:
    Dim doc1 As New mshtml.HTMLDocument
    saying that "Type 'mshtml.HTMLDocumentClass' is not defined". Shouldn't this class come with...
  38. Replies
    8
    Views
    1,092

    Re: [RESOLVED] [2008] Move bytes in array

    Sorry dbasnett, I was only trying to show another way to do it. Not disrespect your post.
  39. Replies
    8
    Views
    1,092

    Re: [RESOLVED] [2008] Move bytes in array

    I would do:
    Dim data As New List(Of Byte)(New Byte() {&HE4, &H96, &HA3, &H47, &H42, &H4A, &H80, &H90})
    data.RemoveRange(0, 2)
  40. Replies
    11
    Views
    1,424

    Re: [2008] Login to a web page

    The idea is to create a windows application of a website. First I need to login to the site. Then get the data from the source code to show up on the form, as well send data from the form to the...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width