CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Mur16

Page 1 of 8 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    6
    Views
    9,391

    Re: Saving Controls to File - Help!

    If you are putting the controls on the form, through the menu, then you can keep track of what is on the form and what is not on the form. Keep a list of all of the available objects with a flag of...
  2. Replies
    2
    Views
    1,114

    Re: Datagridview Checkbox

    I don't think the CheckBox.Value is what you want. You will need to put a checkbox on a form, catch the event, put a break in the event and look at the checkbox to see what actually turns true when...
  3. Thread: Random Sort

    by Mur16
    Replies
    4
    Views
    1,198

    Re: Random Sort

    Remove the selected item from your list and hold it. Order the remaining list then Insert the held item at position zero
  4. Replies
    4
    Views
    1,935

    Re: Integer Programming Homework Assignment

    Can you hard code the polynomials or is it supposed to take those as input? If you can hardcode then create an N dimensional array of all integers (with a reasonable limit):
    (0,0,0)
    (0,0,1)...
  5. Replies
    8
    Views
    1,991

    Re: Homework Help!! Please!!

    Seriously? That's your profile pic?
  6. Replies
    4
    Views
    1,580

    Re: Password Decrypte

    All of the gyrations are essentially shifting the character right 13. To decrypt you need to subtract 13 from the ASCII of the character. If this is less than 32 then add 95.

    I don't think the...
  7. Re: Best way to have multiple copies of class report to central location.

    I believe each of the objects created will have access to all of the objects on/in the form. What timing issues are you running into?

    Maybe define some sort of array in the main form along with a...
  8. Re: Quuikest way to determine if an array element exists in a string

    What are the min/max "words" in the AuthorSearchDict key fields (i.e. FirstName, MiddleName, LastName, etc. etc.) Maybe 2, 3 or 4? Take your input string and create sequential "names" from the...
  9. Replies
    1
    Views
    1,133

    Re: Form not responding

    What are the events you are using to sense data? I would suggest creating some sort of log and have many possible events write to that log to see if 1) any one of them stops & 2) find the one that...
  10. Thread: help with timer

    by Mur16
    Replies
    8
    Views
    2,250

    Re: help with timer

    looks like you should try an anger managment forum
  11. Thread: help with timer

    by Mur16
    Replies
    8
    Views
    2,250

    Re: help with timer

    What's the difference between "do nothing" and "freeze"? If it's not frozen then it is doing something, right?
  12. Replies
    3
    Views
    4,114

    Re: Combination of characters.

    This is kool without recursion. There are actually N^N posibilites. I would create that many arrays of char with length N (a 1-dim array of string would probably work too with appending). Then you...
  13. Replies
    3
    Views
    4,114

    Re: Combination of characters.

    What do you have so far?
  14. Re: Getting animated expansion effect to my GUI in .NET 2.0

    Create intermediate forms and open/close them in a timed sequence
  15. Replies
    13
    Views
    2,527

    Re: what do i need to do to make this happen?

    This is kind of tacky too but try:


    Try
    InitializeDatabase()
    Catch
    ' nothing
    End

    Maybe you won't get the error.
  16. Replies
    13
    Views
    2,527

    Re: what do i need to do to make this happen?

    Here's a shot. Your program will read the XML file from the file share (z) when it loads. As with any program, you will control when it saves it's data to the file share. The program will also need...
  17. Re: visual basic express read/write to excel question

    Here are some chunks of stuff I've used before:


    Dim oExcel, oBook, oSheet As Object
    oExcel = CreateObject("Excel.Application")
    oBook = oExcel.workbooks.add
    ...
  18. Replies
    1
    Views
    873

    Re: Getting started: where exactly?

    Get a compiler (say Visual Studios). Make up a project (say the least coins exercise). Give 'er a run. Ping here if you get stuck.
  19. Re: Alternative row color of a Tablix in report Viwer in vb.net 2010

    I couldn't find an alternating row feature in the Tablix but you can use an expression to set the background for each row. If you truely want alternating then you will probably have to pass some sort...
  20. Re: How to pick a random number from given set of numbers

    it is an advanced high school
  21. Replies
    2
    Views
    6,194

    Re: Image expand/contract effect

    use the same events, have the routine resize the image gradually, say 10% at a time where "time" is up to you.
  22. Replies
    2
    Views
    1,038

    Re: Comparing field value to system clock

    .25 is 15 seconds
  23. Replies
    2
    Views
    2,138

    Re: Visual Basic 2010 Help Needed

    You are receiving a compile error, not a runtime error. The error has to do with the fact that karateDataSet has not been included in your Form1 class. I don't work with code when building forms so...
  24. Replies
    2
    Views
    2,367

    Re: VB.NET--DataGridView Columns

    You can Add columns to the DGV programatically. That way you can dictate the HeaderText, DefaultCellStyle, etc. The important thing, when you are adding a column, is to set the DataPropertyName. This...
  25. Re: HELP!! How to prevent Input of Alphabets in the code below >>>

    Assign the value of the InputBox to a string. Check the string to see if it IsNumeric.
Results 1 to 25 of 176
Page 1 of 8 1 2 3 4





Click Here to Expand Forum to Full Width

Featured