Search results for query: *

  1. Dunfiddlin

    Question Strange behaviour with WebClient.DownloadFile

    You mean apart from the fact that it's a fully fledged browser with the relevant script engines and so on whilst you're trying to download using a default Web Request? That's like asking why a mouse can't pull a donkey cart!
  2. Dunfiddlin

    Question save 1 image as 3 different icons

    FILENAME & "_32x32." & EXT Might help!
  3. Dunfiddlin

    Question Strange behaviour with WebClient.DownloadFile

    Looks like there's a failure in the redirect at sourceforge. This works .. "http://sourceforge.net/projects/portableapps/files/Mozilla%20Firefox%2C%20Portable%20Ed./Mozilla%20Firefox%2C%20Portable%20Edition%2016.0.2/FirefoxPortable_16.0.2_English.paf.exe"
  4. Dunfiddlin

    Question DataGridView1 not work CellDoubleClick

    No, it wouldn't. The same problem applies. You create the form as frm but assign the values to the textboxes on FrmCustomers. So the visible form 'frm' never gets filled.
  5. Dunfiddlin

    Flowlayoutpanel control flow

    So release one of the side anchors.
  6. Dunfiddlin

    Question Free Statistics .Net library

    Have you looked at R? The R Project for Statistical Computing
  7. Dunfiddlin

    Retriving EXCEL data

    Dim dv As New DataView(dt) ' where dt is the table to which you are applying the filter dv.RowFilter = "id = 1" ' assuming that your datatable column name is 'id' It's been a while since I used one so I've assumed that the filter is inclusive. Obviously, if it's not, you'll need "id <> 1"
  8. Dunfiddlin

    Storing values in an array

    Dim find_postcode() As String = resultsList.ToArray
  9. Dunfiddlin

    Retriving EXCEL data

    You can't use full SQL command set when reading Excel files as databases unfortunately. If you want to filter results you'll have to do so in the dataset/datatable (eg. using DataView) after data collection.
  10. Dunfiddlin

    Question DataGridView1 not work CellDoubleClick

    As you can't seem to decide whether you want this information on frm, FromCustomers (I'm assuming that's a simple typo?), or FrmCustomers, I can't say I'm particularly surprised.
  11. Dunfiddlin

    Question should i need to run dll for every change

    If by 'run' you mean 'build', yes!
  12. Dunfiddlin

    Compare CSV files to get modified records

    The easiest way is to make lists of the values and simply 'subtract' one form the other ... Dim master As List(Of String) = System.IO.File.ReadAllLines(masterfile).ToList ' read master Dim newcsv As List(Of String) = System.IO.File.ReadAllLines(amendedfile).ToList ' read current...
  13. Dunfiddlin

    Automatically highlight control with focus

    No, you do it like this Private Sub TextBox1_GotFocus(sender As Object, e As System.EventArgs) Handles TextBox1.GotFocus, TextBox2.GotFocus, Textbox3.GotFocus etc. etc. sender.BackColor = Color.BlanchedAlmond End Sub
  14. Dunfiddlin

    Question TradeBit Intergration

    There's no API because there's no development necessary. All the searches are done through URLs so all you have to do is learn the structure and navigate accordingly http://www.tradebit.com/filesharing.php/search/0/searchterm is the basic structure...
  15. Dunfiddlin

    Automatically highlight control with focus

    You could redirect all the GotFocus and LostFocus events to a single Sub and use the sender variable (that is what it's there for after all).
  16. Dunfiddlin

    Bucket

    Well it isn't. Your class is Bucket so where does Water.Bucket come from? You can't refer to Address Of HandleOverflow if HandleOverflow doesn't actually exist.
  17. Dunfiddlin

    Question Multiline textBox Question

    Sorry, no idea how you started it happening. Can't reproduce the problem whatever I do.
  18. Dunfiddlin

    VB2010 accessing with getelementbyID element <Textarea> strange behaivior

    If you're using GetElementById, shouldn't you actually be using the id ("df_2_0") and not the name?
  19. Dunfiddlin

    Question Struggles with Regular Expressions

    On the basis that Regex should be avoided at all costs in my book this seems to me like going all round the houses to achieve a very simple task. Firstly split the string on "\n" to give you an array of values such as "AZ|Arizona" .... "WV|West Virginia" and then the world's your oyster. You can...
  20. Dunfiddlin

    How to use classes, they still puzzle me a bit

    Well the first thing to say is that it's really not modules v. classes, not least because you can write a class (or several of them) in a module and, indeed, write a structure without a module. A module is no more than an extension to the program code especially useful for truly global variables...
Back
Top