Search:

Type: Posts; User: Libero

Page 1 of 13 1 2 3 4

Search: Search took 0.36 seconds.

  1. VS 2010 Re: Add column to datagrid containing RMS values.

    Thx jayinthe813! Your suggestion works, but there is one problem though. I must recalculate RMS for each row because it isnt static as the value will change for each row. Like in my picture. 122941
  2. VS 2010 Add column to datagrid containing RMS values.

    Hi all!

    I got a datagridview with values in a col named "INJ1". I want to add one column with the RMS value from each row in "INJ1". Sometimes it can be a LOT of rows. The formula for Excel looks...
  3. [RESOLVED] Whats wrong with my CREATE TABLE code??

    Private Sub CreateTable()
    Dim con1 As New OleDbConnection("Provider=Microsoft.Jet.Oledb.4.0;Data Source=" & Application.StartupPath & "\projekt\" & prjNameTxt.Text & ".mdb;Jet OLEDB:Database...
  4. Replies
    2
    Views
    617

    Re: Why do i get empty cells in my datagrid??

    TY jmcilhinney! I tried with OLEDB instead as you told me 2. Now it seems to read the data as i want. Here is my connection now:



    Dim MyConnection As System.Data.OleDb.OleDbConnection
    ...
  5. Replies
    2
    Views
    617

    Why do i get empty cells in my datagrid??

    Hiya!

    Im using this code to populate a datagridview:


    Private Sub PopGrid(ByVal Filename As String)

    Dim ConnectionString As String = "Driver={Microsoft Excel Driver...
  6. Replies
    9
    Views
    5,712

    VS 2010 Re: Useing webcam to detect motion

    Please be kind. This forum IS for helping each other. He didnt ask for code, did he??
  7. Replies
    5
    Views
    802

    VS 2008 Re: Searching multiple string in a string

    Someone else??
  8. Replies
    5
    Views
    802

    VS 2008 Re: Searching multiple string in a string

    Sorry, i will show more of my code.



    Dim Countnr As Integer
    For x = 0 To ListBox1.Items.Count - 1
    ListBox1.SelectedIndex = x
    File =...
  9. Replies
    5
    Views
    802

    VS 2008 Searching multiple string in a string

    I got this code:



    If File.Contains(Searchwhat) Then
    Countnr = Countnr + 1
    VinBox.Items.Add(filename)
    ...
  10. Replies
    1
    Views
    2,116

    Value.Contains in VBA????

    I want to look for a char in a cell with a big string and return true if found. In VB.net we have the excellent ".contains", how should i do in VBA?? (Excel) :confused:
  11. Replies
    5
    Views
    549

    Re: Help with remove "Enter"

    Koolsid> Your code did the trick. Thx alot m8.
  12. Replies
    5
    Views
    549

    [RESOLVED] Help with remove "Enter"

    Excel 2007
    I got an Excel sheet with 2000 rows. Each cell looks like:



    Sometext
    Somemoretext


    What i want is:
  13. Replies
    4
    Views
    20,775

    What is a *.tbl file???

    On my work, we have an application that picks together some files. And with that files the app create a *.zip-archive. It will also add a file to that archive with fileextension *.tbl. If i open that...
  14. Replies
    2
    Views
    592

    Re: Horizontal to vertical string..

    Of course, didnt even think about that. Thx alot!!!!
  15. Replies
    2
    Views
    592

    [RESOLVED] Horizontal to vertical string..

    I got a string like "HOE KOP MUT WER HYT LIT POK GHU". I know how to write that out to a textfile, but i want it like this when i am about to output it to a file:
    HOE
    KOP
    MUT
    WER
    HYT
    LIT ...
  16. Replies
    13
    Views
    22,536

    Re: How do i get active sheets number.

    Well, you saved my ass once again. I owe you a beer. Thx again m8. :thumb:
  17. Replies
    13
    Views
    22,536

    How do i get active sheets number.

    I know how to step in sheets with (for example):



    Sheets(4).Select


    Lets say i want to step to next sheet, then i want to know wich number that is active at the moment. I dont know how to...
  18. Replies
    5
    Views
    521

    Re: Want help with this searhmacro

    anhn> Your code did the trick. Thx alot m8.
  19. Replies
    5
    Views
    521

    Re: Want help with this searhmacro

    Well, i was not clearly maybee. I do not know the sheetname, the string i search for can be on any sheet.
  20. Replies
    5
    Views
    521

    [RESOLVED] Want help with this searhmacro

    Hiya! I recorded this macro (excel 2007) when i searched through whole workbook.




    Sheets("Sheet2").Select

    Cells.Find(What:="four", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
    ...
  21. Replies
    18
    Views
    1,029

    Re: Is this the right language?

    You have to install VB.net, and then compile his code from that.
  22. Replies
    1
    Views
    451

    Re: [2008] Encoding

    Ehhhh, ok??
  23. Replies
    13
    Views
    1,099

    Re: Make a sound play in VB?

    You can also have alook at my sig. I describe how you can play resource sounds.
  24. Replies
    11
    Views
    1,112

    Re: [RESOLVED] [02/03] Email an application

    Or you can just use:



    My.Computer.Audio.Play(My.Resources.Hit, AudioPlayMode.Background) 'Hit is the name of embedded soundfile.

    Please have a look in my sig for playing embedded sound....
  25. Re: Best way to build an application in VB 2008

    I recommend you to have a look at this site. It will show you some interactive stuff about alot of stuff. ;)

    http://msdn2.microsoft.com/sv-se/vbasic/bb466226(en-us).aspx
  26. Replies
    13
    Views
    788

    Re: [2005] right click menu

    Gaaah!!! jmcilhinney, you must correct me everywhere??? :o ;)
  27. Replies
    17
    Views
    1,500

    Re: How to download a web page?

    Nice explained as usual. Thx jmcilhinney.
  28. Replies
    13
    Views
    788

    Re: [2005] right click menu

    I guess a Contextmenu will do it for ya. Have a look here.http://www.vbforums.com/showthread.php?t=491896&highlight=contextmenu
  29. Replies
    3
    Views
    648

    Re: saving webpage data in notepad

    Ok. Looks like a work for a vbguru. And im not ;)
  30. Replies
    5
    Views
    562

    Re: [2005] how do i add a sound file?

    Look at my sig. :D
  31. Replies
    3
    Views
    648

    Re: saving webpage data in notepad

    Ok, dont know exactly what you mean. But you can download your page like this:


    My.Computer.Network.DownloadFile("https://bannerweb.avc.edu/avcprod/az_tw_zipsched.P_search", "c:\temp.html")
  32. Replies
    17
    Views
    1,500

    Re: How to download a web page?

    Interesting. So what you mean is that "application.startuppath" is not needed anymore??
  33. Replies
    17
    Views
    1,500

    Re: How to download a web page?

    Its not working because there is no valid path to store the file. Try:

    My.Computer.Network.DownloadFile("http://webpage.com/index.html", "c:\index.txt")
  34. Re: [2005]My program took a snapshot but it's all jumbled up?

    Or you might have a look at my sig. That code works with all game i have tested.
  35. Replies
    1
    Views
    596

    Re: Format Richtextbox on the fly.

    Noone??? :(
  36. Replies
    1
    Views
    596

    Format Richtextbox on the fly.

    I cant for my life figure out how to do this.



    For i As Integer = 0 To ListBox1.Items.Count - 1
    Dim Comp1 As String = ListBox1.Items.Item(i)
    Dim Comp2 As String =...
  37. Re: When i run my (EXE) file on another computer i get the following error message ?

    Yes you can, just type "icon" in the searchbox. :wave:
  38. Re: When i run my (EXE) file on another computer i get the following error message ?

    ROFLOL Sorry bout it uaeXuae. Did not ment to break your thread. :lol:
  39. Re: When i run my (EXE) file on another computer i get the following error message ?

    I will not share that info. :p If uaeXuae wants to share it, then you have to ask him. :wave:

    stanav> Did u recognized the icon??:bigyello:
  40. Re: When i run my (EXE) file on another computer i get the following error message ?

    Oh, and that icon next to your clock, whats that??? Think i've seen it somewhere. :rolleyes: ;)
Results 1 to 40 of 487
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width