Search:

Type: Posts; User: kiwis

Page 1 of 13 1 2 3 4

Search: Search took 2.08 seconds.

  1. Replies
    1
    Views
    1,032

    Customer Control GANTT Chart

    I want to build my own Customer Control - that being a GANTT Chart.

    Can someone help me with where to get started on this?
  2. Thread: Custom Control

    by kiwis
    Replies
    9
    Views
    1,404

    Re: Custom Control

    on the datagridview can I modify the row header on the left - add a text label / picturebox etc on there? can I change that from grey to white background? etc
  3. Thread: Random Question

    by kiwis
    Replies
    6
    Views
    926

    Re: Random Question

    and is there a way to type text at the end of the line and not a new line?
  4. Thread: Random Question

    by kiwis
    Replies
    6
    Views
    926

    Re: Random Question

    can I change the color of the background on a console?
  5. Replies
    1
    Views
    5,096

    Border Style change

    I have a DockPanel where in VB.NET I'm adding borders to it at runtime. I'm adding a style resource to this border too.

    Via VB.NET code I want to on the mouse over event change the style and then...
  6. Thread: DataGird A Row

    by kiwis
    Replies
    1
    Views
    3,549

    DataGird A Row

    I'm wanting to add a row to my WPF application.

    I'm looping through all files in a folder and if it meets some conditions i'll populate them in my Gird. (Conditions not in code yet)

    However I ...
  7. Replies
    1
    Views
    618

    VS 2008 Changing a ComboBox Selected Item

    I wantt o change the selected item in a combo box if a user enters a name which is already in my dataset. The Combo Box is linked to my database set and all the other text boxes are linked using my...
  8. Replies
    5
    Views
    3,372

    VS 2008 Re: TextBox AutoCompleteCustomSource

    Cool, I've already done this but thanks for pointing it out.

    What I don't get is reading the MSDN on this it did not point it out, looking at my link how was I to work that out?
  9. Replies
    5
    Views
    3,372

    VS 2008 Re: TextBox AutoCompleteCustomSource

    Cheers .paul. can I ask what the addrange is used and when? and why new string?
  10. Replies
    5
    Views
    3,372

    VS 2008 TextBox AutoCompleteCustomSource

    I'm having trouble setting my own autocomplete list. Looking at MSDN website it says to use an "AutoCompleteStringCollection" which is from " System.Collections.Specialized.StringCollection" but my...
  11. Replies
    1
    Views
    585

    VS 2008 Re: Error Updating my database...

    Okay it's because my access datebase has a field type of attachemnt. How can I update a picture if I have added one to a picturebox.
  12. Replies
    1
    Views
    585

    VS 2008 Error Updating my database...

    I'm not sure what you need to see to help this error but this is my button update click event code and my error. i'm just trying to update my database.

    Can someone please help ???



    Private...
  13. Thread: Game Timer...

    by kiwis
    Replies
    11
    Views
    1,236

    VS 2008 Re: Game Timer...

    As usual you helped to a point. I asked if it was a control. I have never seen it before. You could have said yes here is a link. With 53 thousand posts to your name you have the time to post this...
  14. Thread: Game Timer...

    by kiwis
    Replies
    11
    Views
    1,236

    VS 2008 Re: Game Timer...

    Don't worry about helping.
  15. Thread: Game Timer...

    by kiwis
    Replies
    11
    Views
    1,236

    VS 2008 Re: Game Timer...

    I didn't look because I wasn't sure if it was a control or something else. I was waiting to see IF you would help and point me in the right direction.
  16. Thread: Game Timer...

    by kiwis
    Replies
    11
    Views
    1,236

    VS 2008 Re: Game Timer...

    Eric51 - cheers, I had my way working but your way is better.
    jmcilhinney - Stopwatch? is this a control i've not heard of before?
  17. Thread: Game Timer...

    by kiwis
    Replies
    11
    Views
    1,236

    VS 2008 Game Timer...

    I want my game to tick over month by month at a set interval. I would use the timer control to get the interval. But how can I pause it? Say if one "month" is 5 minutes in my game and user hits...
  18. Replies
    4
    Views
    817

    VS 2008 Controls V User Controls

    How many controls can I have before I should start looking at user defind controls because of too many controls making my program go slow?
  19. Replies
    2
    Views
    730

    VS 2008 Binary Serialisation

    Can I save an array into my .bin file then read the array again just like a string or Integer??
  20. Replies
    18
    Views
    1,262

    VS 2008 Re: Saving a game..

    The above code works fine. I was setting the value to one in a early part of my testing code. THanks this looks like it will work fine.
  21. Replies
    18
    Views
    1,262

    VS 2008 Re: Saving a game..

    Try
    Dim Stream As FileStream
    Dim obj As New Object

    Dim formatter As IFormatter = New BinaryFormatter()
    Stream = New FileStream(TextBox5.Text &...
  22. Replies
    18
    Views
    1,262

    VS 2008 Re: Saving a game..

    Dim formatter As IFormatter = New BinaryFormatter()
    Dim Stream As New FileStream(textbox5.Text & ".bin", FileMode.Open, FileAccess.Read, FileShare.Read);
    Dim obj As New...
  23. Replies
    18
    Views
    1,262

    VS 2008 Re: Saving a game..

    Arrr


    <Serializable()> Public Class MyObject
    'Serializable
    Public n1 As Integer = 0
    Public n2 As Integer = 0
    Public n3 As Integer = 0
    Public n4 As Integer = 0
    ...
  24. Replies
    18
    Views
    1,262

    VS 2008 Re: Saving a game..

    I guess I know what your saying but i'm lost.
  25. Replies
    18
    Views
    1,262

    VS 2008 Re: Saving a game..

    But I thought I was doing it here

    Formatter.Serialize(Stream, obj)
  26. Replies
    18
    Views
    1,262

    VS 2008 Re: Saving a game..

    Okay I got it... welll until I run it....


    Try

    Dim obj As New MyObject
    obj.n1 = 1
    obj.n2 = 1
    obj.n3 = 1
    obj.n4 = 1
  27. Replies
    18
    Views
    1,262

    VS 2008 Re: Saving a game..

    I have this..

    Imports System.Runtime.Serialization
    Imports System.Runtime.Serialization.Formatters.Binary
    Imports System.IO
    ...
    .....
    ...
    .
  28. Replies
    18
    Views
    1,262

    VS 2008 Re: Saving a game..

    would you be able to convert this to VB code

    MyObject obj = new MyObject();
    obj.n1 = 1;
    obj.n2 = 24;
    obj.str = "Some String";
    IFormatter formatter = new BinaryFormatter();
    Stream stream = new...
  29. Replies
    18
    Views
    1,262

    VS 2008 Re: Saving a game..

    So let me get this right, I create a class define all my variables etc and then use them. At the point where I click a button to save my game I just run the binary formatter saving it to the file...
  30. Replies
    18
    Views
    1,262

    VS 2008 Re: Saving a game..

    Thanks XML could be changed so a binary file would be better. I'm looking for something on reading and writing Binary files but I can't anything. Can you help?
  31. Thread: one form

    by kiwis
    Replies
    1
    Views
    531

    VS 2008 one form

    as per my other post i'm making a game. I'm thinking of having buttons at the top which will be the various sections i.e banking | buy new stuff etc

    I want the rest of the form to be about the...
  32. Replies
    18
    Views
    1,262

    VS 2008 [RESOLVED] Saving a game..

    I'm looking at making a game. However I want it to be able to used by more than on person. So i want to be able to save the game then when you open it again you either open a game or start a new one....
  33. Thread: Layers..

    by kiwis
    Replies
    4
    Views
    623

    VS 2008 Re: Layers..

    God now I got everything inside this tool and I want to remove this.... i delete it and it deletes everything. What to do?
  34. Thread: Layers..

    by kiwis
    Replies
    4
    Views
    623

    VS 2008 Re: Layers..

    What is the Document Outline window ?
  35. Thread: Layers..

    by kiwis
    Replies
    4
    Views
    623

    VS 2008 Layers..

    I have heaps of stuff on my form and I have decided to add a ToolStripContainer to my form, how can i place this under everything?
  36. Thread: TextBox Value

    by kiwis
    Replies
    27
    Views
    1,601

    VS 2008 Re: TextBox Value

    What does this do? it means i have to change a lot of code
  37. Thread: TextBox Value

    by kiwis
    Replies
    27
    Views
    1,601

    VS 2008 Re: TextBox Value

    this... what is this about?
  38. Thread: TextBox Value

    by kiwis
    Replies
    27
    Views
    1,601

    VS 2008 Re: TextBox Value

    How do I open it? what is it?
  39. Thread: TextBox Value

    by kiwis
    Replies
    27
    Views
    1,601

    VS 2008 Re: TextBox Value

    s**t so I do. I was looking at it so much I overlooked it. thanks
  40. Thread: TextBox Value

    by kiwis
    Replies
    27
    Views
    1,601

    VS 2008 Re: TextBox Value

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
    Try

    AddHandler PictureBox1.Paint, AddressOf Me.pictureBox1_Paint...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width