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

Search:

Type: Posts; User: Tealc

Search: Search took 0.02 seconds.

  1. Thread: Set

    by Tealc
    Replies
    8
    Views
    1,104

    Re: Set

    Guess I don't know what he means and don't have any desire to try a figure it out. I'm tired of seeing threads with tittles like "help" "ASSISTANCE REQUIRED FAST" "Set" and then you open them and the...
  2. Replies
    0
    Views
    1,171

    ms sql 2008 INSERT

    Can someone please show me the correct way to INSERT a record into a table? I have seen lots of examples online but they are all different some use error checking some lock the table some do other...
  3. Replies
    6
    Views
    1,114

    Re: Technology Changes

    Thanks for the responses it helps a lot. I get annoyed at how fast things move because I program as a hobby. I don't work for a large software company with weekly or monthly meetings that keep...
  4. Replies
    6
    Views
    1,114

    Re: Technology Changes

    Well I did hear that MS was removing support for VB6 in the next version of Windows but maybe they just mean development support. I thought when they removed support it meant programs designed in...
  5. Replies
    6
    Views
    1,114

    Technology Changes

    I am only a hobby programmer and cannot keep up with all the new technology. I want to write a program that with run my business because there is nothing on the market that will do what I need.
    ...
  6. Thread: Bug in .Net?

    by Tealc
    Replies
    6
    Views
    961

    Re: Bug in .Net?

    Well I tried returning a bool but it looks like I need more information then a simple yes or no so now I am using a Guid.

    I can still use the example though, but I don't see what the difference...
  7. Thread: Bug in .Net?

    by Tealc
    Replies
    6
    Views
    961

    Re: Bug in .Net?

    Instead of using a bool I decided to just return the guid becuase I will need it anyway. I am having a hard time figuring out how to test for no returned reaults though. So I changed to the...
  8. Thread: Bug in .Net?

    by Tealc
    Replies
    6
    Views
    961

    Bug in .Net?

    For example the following statements will never return true, even when they should.



    bool n;
    label1.Text = bool.TryParse(textBox1.Text, out n).ToString();


    I need to convert a SQL result...
  9. Replies
    3
    Views
    1,307

    Re: iterate Through Class Fields

    Thank You!

    I am going to try that and see if it works. That is pretty cool. I might run into one problem because in some of my classes I have more then one type, for example:



    public class...
  10. Replies
    3
    Views
    1,307

    iterate Through Class Fields

    I have some classes with a lot of fields I need to check. Its takes so much duplicated code to check each field so I want to iterate through each field.

    How can I do it? It doesn't compile.

    ...
  11. Replies
    7
    Views
    9,240

    Re: Stopping a Window from loading twice.

    Yes I am new and that probably is the cause of some of it but I'm also not stupid. I've been writing sofrware for years and WPF has so many bugs I'm suprised it was even released. It is so limited it...
  12. Replies
    4
    Views
    13,588

    Re: Linq Convert DataContext to DataTable

    Because I would like my interface for data providers to return an object I know is compatible with DataGridView.

    This is my current code:




    public object Associates_SelectAll()
    {...
  13. Replies
    4
    Views
    13,588

    Linq Convert DataContext to DataTable

    I have been searching for several hours and cannot find a way to convert my result to a data table without major hacking. There has to be an easier way. This code fails no matter how many variations...
  14. Replies
    7
    Views
    9,240

    Re: Stopping a Window from loading twice.

    Idk how to do that. I think I might just go back to Windows Forms it seems like WPF has a very long way to go yet. Designing a window is 10x harded then designing a form and I've found more little...
  15. Replies
    0
    Views
    2,262

    storing Guid in MySql?

    I have looked on google and found several options to store a c# guid in MySql but which is the correct datatype to use? I heard string or binary, and I heard that its hard to convet data back to a...
  16. Thread: byte[] to Binary

    by Tealc
    Replies
    2
    Views
    718

    Re: byte[] to Binary

    Ok thanks I will try 64.
  17. Replies
    7
    Views
    9,240

    Re: Stopping a Window from loading twice.

    Well for one I thought about that but then I would have very messy code because I would need a status bool for every window.

    Second, it doesn't work anyway because when Window1 loads Window2 with...
  18. Replies
    7
    Views
    9,240

    Stopping a Window from loading twice.

    Hi.

    I have a menu item that loads a Window. The problem is every time I click the menu item it loads a new instance of the same Window. This may corrupt my database so I need only one Window open....
  19. Thread: byte[] to Binary

    by Tealc
    Replies
    2
    Views
    718

    byte[] to Binary

    I have a byte[] in c# that holds a SHA512 hash. I want to store the byte[] in a binary field in my MySQL and also in my MS SQL databases. What size do I need to make the binary field so that it is...
Results 1 to 19 of 19





Click Here to Expand Forum to Full Width

Featured