Search:

Type: Posts; User: chris-2k

Page 1 of 9 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    1,245

    VS 2010 Re: go to eac h item amd then remove it

    thx paul, wrks.

    now document complete for wba, ts not reching, what can i do.
  2. Replies
    8
    Views
    1,245

    VS 2010 Re: go to eac h item amd then remove it

    im maing an attaachhment downloader.

    forget the for each, now i only use

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles b3.Click
    For...
  3. Replies
    8
    Views
    1,245

    VS 2010 Re: go to eac h item amd then remove it

    ty sir.
    i figured take ir outside the for each which ient working.

    why.....
  4. Replies
    8
    Views
    1,245

    VS 2010 go to eac h item amd then remove it

    hi, this should be easy................... seems not, yet i know i done it yrs ago.

    so, in my for each alone wba will go onnly 1 url theres 5+ in listbox, help......

    and im getting index out...
  5. Replies
    11
    Views
    1,757

    VS 2010 Re: need to loop thru checked items

    So can no1help?
  6. Replies
    11
    Views
    1,757

    VS 2010 Re: need to loop thru checked items

    hmm....

    now i've lost install order functionality.....

    could someone take a look.
  7. Replies
    11
    Views
    1,757

    VS 2010 Re: need to loop thru checked items

    hi

    i managed to work it out, here is the code:

    For Each kvp As KeyValuePair(Of Integer, program) In SelectPrograms.programs
    Dim index As Integer = kvp.Value.order
    ...
  8. Replies
    11
    Views
    1,757

    VS 2010 Re: need to loop thru checked items

    hi

    like i said in post #1, when i switch category the lv clears (empty lv), n adds new items to switched cat.
  9. Replies
    11
    Views
    1,757

    VS 2010 Re: need to loop thru checked items

    hey EM, long time....

    yea i knew how to loo[p thru, since i added categorys, so the LV clears n re-populates with new items.

    check: http://www.mediafire.com/download/pxvll5kbaf8mhm2
  10. Replies
    11
    Views
    1,757

    VS 2010 Re: need to loop thru checked items

    Sorry my LV is custom.

    Class NSListView
    Inherits Control

    Event CheckedChanged(ByVal sender As Object, ByVal index As Integer)
    Class NSListViewItem
    Property Text As String...
  11. Replies
    11
    Views
    1,757

    VS 2010 Re: need to loop thru checked items

    its a listview
  12. Replies
    11
    Views
    1,757

    VS 2010 need to loop thru checked items

    Imports System.Drawing
    Public Class InstallPrograms
    Public Sub LogThisEntry(ByVal AppName As String)
    Dim D As DateTime = Now
    Dim DateOnly = D.ToString("dd-MM-yyyy")

    ...
  13. VS 2010 Re: listview doesn't display titles when read from dvd

    OK, it is a path prob...

    http://i.gyazo.com/0e22c37201228c545ef5816811fea20a.png

    it's tryna find files from the hdd which are not there, they on dvd...

    so any1 no how i can add a dvd check?...
  14. VS 2010 Re: listview doesn't display titles when read from dvd

    Yes,

    but the select button says theres 3 apps an it runs perfect from my machine, so if its an exception,, what?
  15. VS 2010 Re: listview doesn't display titles when read from dvd

    Sorry,

    the sub AddToLV shud display titles from the xml, which it is fro C drive but not dvd......

    ofcn i tried to solve, i think maybe a path prob ??
  16. VS 2010 Re: listview doesn't display titles when read from dvd

    here is a d/l: http://www.mediafire.com/download/epesdtc2at3ljco]

    all i no is, when i run my app from dvd the titles dont show
  17. VS 2010 listview doesn't display titles when read from dvd

    hi all.......

    back on my post install project, everything works good when run from C:/, D, E, F, G but when frum dvd no titles show...... can any1 help spot the proble,?


    Imports System,...
  18. Replies
    0
    Views
    1,580

    VS 2010 Custom tab control and images

    hi

    can any1 tell me how to fix?

    Class NSTabControl
    Inherits TabControl

    Sub New()
    SetStyle(DirectCast(139286, ControlStyles), True)
    ...
  19. VS 2010 Re: Fill some textboxes based off DataRow and Combobox.Text

    Lol jmc great speech.

    actually i used: Row.Item("Name")
  20. VS 2010 Re: Fill some textboxes based off DataRow and Combobox.Text

    Ok done it :)

    'Read the XML file into Memory
    Dim myXMLData As New DataTable
    myXMLData.ReadXml(SelectPrograms.XMLFile)
    myXMLData.PrimaryKey = {myXMLData.Columns("Name")}...
  21. VS 2010 Re: Fill some textboxes based off DataRow and Combobox.Text

    Ohhhh, i remove the if Rows.Count >0 Then.....

    Found out there's NO PK, need it to check colmn 1, how?
  22. VS 2010 Re: Fill some textboxes based off DataRow and Combobox.Text

    Ok think i found the prob, as jmc said "i'm looking at row 0", what can it be:

    CStr(myXMLData.Rows(0)("File"))
  23. VS 2010 Re: Fill some textboxes based off DataRow and Combobox.Text

    I tried it jmc..

    'Read the XML file into Memory
    Dim myXMLData As New DataTable
    If myXMLData.Rows.Count > 0 Then
    myXMLData.ReadXml(SelectPrograms.XMLFile)

    ...
  24. VS 2010 Re: Fill some textboxes based off DataRow and Combobox.Text

    bang on jmc, i did have it working for some time but ya no **** happens.

    how to loop all??
  25. VS 2010 Re: Fill some textboxes based off DataRow and Combobox.Text

    Option Strict On disallows late binding.

    that's why i put Is in there..
  26. VS 2010 [RESOLVED] Fill some textboxes based off DataRow and Combobox.Text

    hi

    can some one identify a fix, i had it working 3-4 weeks ago....

    since then i don't no what i've changed, it's just not filling textboxes.

    'Read the XML file into Memory
    ...
  27. Replies
    15
    Views
    1,775

    VS 2010 Re: Textbox to Combobox Item

    yep...
  28. Replies
    15
    Views
    1,775

    VS 2010 Re: Textbox to Combobox Item

    Thanks 4x2y,

    ur 2nd post nailed it down!
  29. Replies
    15
    Views
    1,775

    VS 2010 Re: Textbox to Combobox Item

    lol dun, it's not agony of typig it, i just thought it where junk code..

    no it's not inherited.
  30. Replies
    15
    Views
    1,775

    VS 2010 Re: Textbox to Combobox Item

    Nah, don't work because my textbox is custom control.....

    Lines is not a member .

    Any more...?
  31. Replies
    15
    Views
    1,775

    VS 2010 [RESOLVED] Textbox to Combobox Item

    hi

    is there an easier way with less code.:


    Dim lines() As String = Split(Setup.txtCategories.Text, vbCrLf) '~~~ Split the lines and store it in a String array
    For i...
  32. VS 2010 Re: Loop through DataRows and add all to Combobox

    Doesn't matter, i got the loop working....

    I needed to check if myXMLData.Rows >= 0 only.
  33. VS 2010 Re: Loop through DataRows and add all to Combobox

    jmc, that works.... but i have 1 item in there, it don't show now.. why?
  34. VS 2010 Re: Loop through DataRows and add all to Combobox

    because i don't even know how to bind it.
  35. VS 2010 [RESOLVED] Loop through DataRows and add all to Combobox

    hi

    title says it all, really...

    thought i was doing it right, obviosly not.....


    'Read the XML file into Memory
    Dim myXMLData As New DataTable
    ...
  36. VS 2010 Re: Only show certain items on LV based on category text in file?

    Thank u .paul, so now my installprograms form will install all checked items in all categorys?
  37. VS 2010 Re: Only show certain items on LV based on category text in file?

    Yes, right on .paul...

    also want to count checked items...
  38. VS 2010 Re: Only show certain items on LV based on category text in file?

    No .paul don't say sorry, i'm the noob.....

    I've done that and also added to the ReadFile sub:
    ElseIf programs(installOrder).checked = False Then
    ...
  39. VS 2010 Re: Only show certain items on LV based on category text in file?

    sorry you've lost me, can u show me what u mean with a boolean....
  40. VS 2010 Re: Only show certain items on LV based on category text in file?

    Yea there's only 2 for now as im testing, 3 category's with 1 empty OK..

    the problem is when i switch category the checked count would reset and only the seleced category items will go to...
Results 1 to 40 of 337
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width