Search:

Type: Posts; User: deviousdexter

Page 1 of 4 1 2 3 4

Search: Search took 0.00 seconds.

  1. i dont want the xmlnode list count - i want the...

    i dont want the xmlnode list count - i want the node count of each of the elements within xmlnodelist.
  2. getting the value of elements in a nodelist

    i have an Xml document loaded and have used the folwing to get the nodelist for all elements with the tag "item".




    XmlNodeList nodelist = Info.GetElementsByTagName("item");



    each "item"...
  3. i have alot of textboxs and didnt really want to...

    i have alot of textboxs and didnt really want to pass them all one by one - if i could pass them as a collection that would be better.
  4. I have tried the above changes but still says...

    I have tried the above changes

    but still says 'no definition found'.

    typing ' this.parent.' and checking the intellisense panel does not show any of the textboxs i have on form1.

    My initial...
  5. I am trying to do it this way to try to make the...

    I am trying to do it this way to try to make the method in populate more flexible for future use.

    I also want to ensure it is done the correct ( safe) way., rather than one that does the job.
    ...
  6. Update FOrm textboxs from a seperate class

    I have a Form - Form1, which contains several textboxs all with private accesibility.

    i also have a class - Populate, from which i want to be able to modify the textbox.text values on form1 when i...
  7. Replies
    5
    Views
    1,708

    Sorry i thought i had posted back to this thread,...

    Sorry i thought i had posted back to this thread, must have forgotten the submit button.

    both the Theoobe and Magos' solutions were tried and did what i needed - i opted for Magos solution for no...
  8. Replies
    5
    Views
    1,708

    Enum problem

    just a quickie - my head seems to have gone blank

    i have an enum




    public class1
    {
    public enum types
  9. Replies
    7
    Views
    3,909

    yes i was fortunate enough to have pulled the...

    yes i was fortunate enough to have pulled the file and checked the structure of the XML so i knew what the layout was.

    I t seems to me, after returning to programming after a very log break that...
  10. Replies
    7
    Views
    3,909

    thanks for the help, appreciated. i had some...

    thanks for the help, appreciated.

    i had some time to play around with this today and came up with an alternative to your suggestions which does what i need.

    assuming that the people.xml has...
  11. Replies
    7
    Views
    3,909

    Parsing Xml

    Hi all

    Need a bit of help with some XML ( i am new to XML so not sure what i am doing)

    i have used a httprequest to acquire the xml information i need but i believe it uses elements
    note ....
  12. Replies
    1
    Views
    2,107

    Accessing USB devices

    does C# now contain any native classes for accessing devices such as USB webcams and external hard drives without resorting to using older calls to WIN32(??). i was thinging mayber there was someting...
  13. Replies
    23
    Views
    2,700

    Beauty is in the eye of the beholder - and as...

    Beauty is in the eye of the beholder - and as long as it works and is right - im blind :)

    edit:

    if i want to use this in the class ( for re-using later) is this a suitable method ?

    i can see...
  14. Replies
    23
    Views
    2,700

    ok i was playing around with this ( and kind of...

    ok i was playing around with this ( and kind of came up with Magos' suggestion)
    but want i want to know is this the right way to do it ? i dont want to use it if it is wrong and i end up with a bad...
  15. Replies
    23
    Views
    2,700

    ok expanding on this a little im am using...

    ok expanding on this a little

    im am using Leave event from the textbox to check the input.


    private void textBox1_Leave(object sender, EventArgs e)
    {
    ......
    }
  16. Replies
    23
    Views
    2,700

    checking input

    had a quick google for this but no luck ( well not what i wanted).

    checking input is a textbox is valid i.e. is a character or numeric value.

    any way to do this without importing user32.dll for...
  17. Replies
    5
    Views
    1,384

    thanks for that - i can see the problem - dont...

    thanks for that - i can see the problem - dont know why they have been added to the form in the wrong order maybe just the way the IDE deals with it :)
  18. Replies
    5
    Views
    1,384

    maybe parse was the wrong word to use in this...

    maybe parse was the wrong word to use in this case. basically when i use this piece of code it appears to start going through the controls in reverse order. there is a button and several text boxs...
  19. Replies
    5
    Views
    1,384

    Controlcollections

    hi again.

    Just used a control collection to parse all the textboxs on my form, and from what i can see it parse's in reverse order ?? is this correct ?

    is there anyway to make it follow the tab...
  20. Replies
    18
    Views
    8,224

    DriectX SDK or XNA ?

    which of these is now the way to go. i read somewhere that DirectX is "no longer supported" ? and XNA should be used instead because of its cross platform abilities to Xbox 360.

    I was under the...
  21. Replies
    11
    Views
    2,553

    glad i could help :) maybe more to do with...

    glad i could help :) maybe more to do with bling's patience tbh lol
  22. Replies
    2
    Views
    5,615

    password box in c#

    is there an implementation of the 'pasword' style textbox in C#, Similar to the one in Visual Web Builder ?

    or should i look at including the

    using System.Web;
    using System.Web.UI;
    using...
  23. Replies
    11
    Views
    2,553

    Are you using more than one picturebox ?? if so...

    Are you using more than one picturebox ?? if so is this an array or individually named ?




    pictureBox1.Paint += new PaintEventHandler(paintBoard);

    .
    .
    .
  24. Replies
    11
    Views
    2,553

    from what i can see here, you are painting to the...

    from what i can see here, you are painting to the panel not the picturebox. your e.Graphics is pointing to the panel paint not the picturebox paint, this is why your X is appearing behind your...
  25. Replies
    11
    Views
    2,553

    okay from my limited knowledge ( its limited...

    okay from my limited knowledge ( its limited trust me)...

    i take it you want the X to appear over the image in the picturebox

    1. is it not easier to create a graphic for the bitmap and then...
Results 1 to 25 of 85
Page 1 of 4 1 2 3 4