Search:

Type: Posts; User: TCarter

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. VS 2010 Distributing items across several listboxes.

    Hey guys, long time since I posted here. I've been working in C#, and have yet to find a decent *ACTIVE* C# forum for help...



    So, heres my scenario:

    ListboxQueue 1: 80 Items. (Queue)
    ...
  2. VS 2010 Re: [RESOLVED] Embedded Web Server that supports ASP.Net 4

    Fixed the issue.

    The debug messages were actually being sent to a console which helped me fix it.

    My path was wrong, and for some reason it was also looking for the Mono.WebServer &...
  3. VS 2010 [RESOLVED] Embedded Web Server that supports ASP.Net 4

    Hello guys,

    I am trying to make a asp.net app easier to use for my client; Currently I have him download Abyss Web Server and configure it, however that is causing him headaches. I am now looking...
  4. Re: Alternative to JET.OLEDB for reading CSV data.

    CSV = Comma Separated Values.

    Why not just use the SPLIT function and put them into an array?
  5. Replies
    15
    Views
    7,745

    VS 2010 Re: Strange Timeout Error

    (Guess it helps if I actually read the queries huh?)

    You can't delete tblFactSales from tblFactSales.

    You could DELETE * from tblFactSales WHERE something = somethingelse.
  6. Replies
    6
    Views
    1,019

    Re: ReGex Woes...

    Thanks everybody for the info.

    BluPig, your idea is quite simple and im wondering why I didn't think of it. Thanks.

    .paul. thanks for the code snippets. the 1st code snippet only displays the...
  7. Replies
    6
    Views
    1,019

    [RESOLVED] ReGex Woes...

    Hello everybody, I am trying to pull data from a PHP Array.

    The information is as follows:



    Array
    (
    [status] => Expired
    [registeredname] => First Last
  8. Replies
    5
    Views
    756

    VS 2008 Re: Can i make it type something for me?

    Yes, however, I believe SendKeys.SendWait (i believe) is more effective, as i believe it adds a delay between characters. I haven't used sendkeys in ages though.
  9. Replies
    12
    Views
    1,120

    VS 2010 Re: Is there a way...

    you could always do


    if flags(flags.getUpperBound(0) - 1) then tagList.Add(tags(i) &" and "


    Now, theory says, it'll get the 2nd to the last item in the flags, then add it with a " and " in...
  10. Replies
    10
    Views
    1,572

    VS 2010 Re: Intentionally make a program stop responding.

    Ya, i guess i'll just make a dummy app that locks up for testing.

    I was just curious if there was a debug tool that would literally lock up an app to make it stop responding.
  11. Replies
    10
    Views
    1,572

    VS 2010 Re: Intentionally make a program stop responding.

    The program i am trying to make stop responding is not developed by me (it's a dedicated serve exe).
  12. Replies
    10
    Views
    1,572

    VS 2010 Intentionally make a program stop responding.

    I am making a process monitoring program for his game server. Occasionally, the programs stop responding.


    I've used the if process.responding then process.kill la de da, but its not working...
  13. Re: is there any .net class libraries for accounting and payrolls etc..

    I could be wrong, but wouldn't most of the accounting & calculating of payrolls be simple math with the appropriate tax information and such?
  14. Replies
    10
    Views
    2,739

    Re: Windows 8 type buttons creation

    That appears to have an aero effect to them.

    There is a codebank submission on how to make forms with codebank.

    However, what I would do is this:

    Create my background image,

    and set the...
  15. Replies
    6
    Views
    1,785

    VS 2008 Re: How to make my application lag/freeze free?

    The easiest way is to use a background worker.


    When you add the code to add, the UI and the process are all on the same thread making the UI freeze/lag.

    So, your best bet would be to add a...
  16. VS 2010 Re: Operator '

    I actually found a PHP for what I wanted to do, and am using that temporarily.

    However, thanks for the insight Formless.
  17. VS 2010 Re: Operator '

    scratch that, it got rid of the errors, but it doesnt appear to be working still.
  18. VS 2010 Re: Operator '

    I actually got it, thanks anyways folks.


    Had to add: AscW before the url(...)
  19. VS 2010 Re: Operator '

    Yes jmc, I am clearly incapable of understanding what you are saying in your first post.

    I appreciate the help you do around the forums, and there are things that both you, and I could still...
  20. Replies
    21
    Views
    1,787

    Re: If statements inside if statements?

    As I said before,

    your "how are you" is inside the if statement for your "hello"


    so, with your code, in order for that to fire, your text needs to be:

    Hello How are you?

    Since, it needs...
  21. VS 2010 Re: Operator '

    Not particularly,

    maybe you could assist me in what exactly to search for.
  22. VS 2010 Re: How to make my application save to a .txt file

    Tip: Right click in code, click snippets.

    Short Answer:

    My.Computer.FileSystem.WriteAllText("TheFile.txt", "TextContents", False)
  23. Replies
    4
    Views
    884

    VS 2010 Re: Can not open database - can not login

    Fairly self explanatory, the username and/or password is wrong.
  24. Replies
    2
    Views
    865

    Re: My SQLException was unhandled error

    You have select * from username & password

    Now, this is where you're wrong.

    The syntax is wrong.


    I've never seen people pulling all the fields from 2 different tables at the same time. And...
  25. Replies
    3
    Views
    586

    Re: Compiled Prg Works Source does not

    So, when using the vs debugger, it fails, but when you compile it, it runs fine?

    What errors appear in the 'error list' when you try to run it via the debugger?
  26. VS 2010 Re: Operator '

    Could you throw me an example?
  27. Thread: Alert Reader

    by TCarter
    Replies
    2
    Views
    637

    Re: Alert Reader

    There are plenty of .net related components that allow you to read emails.

    However, you can also use the .net api to read the emails as well, just google "vb.net read email"

    Now,

    save the...
  28. Replies
    2
    Views
    546

    Re: Searching line to line for a regex

    I personally would read it line by line, then


    if myline.contains("Package") then
    'Run regex here
    end if
  29. Replies
    21
    Views
    1,787

    Re: If statements inside if statements?

    For a thing like that, it appears you're putting your 'how are you' inside your if statement for 'hello'.

    This will not trigger since the phrase wasn't hello.

    You'd have to use case, or...
  30. VS 2010 [RESOLVED] Operator '

    Hey guys, maybe you can help me.

    I am trying to convert a piece of C# code, and I ran it through a converter, and had to make some changes.

    I am now running into this error:

    Operator '<<' is...
  31. VS 2010 Re: Which is best data structure to use for this program?

    XML is also a simple way.
  32. Replies
    5
    Views
    743

    Re: MessageBox(resolved)

    Msgbox("Text", "Title") also works
  33. Replies
    0
    Views
    598

    VS 2010 Code Behind Download Speed?

    Howdy,

    I have been trying to find a stable site that shows your download speed (in MBPS), i am trying to do this from a class module, so I can't use a webbrowser control to read from it.

    i...
  34. VS 2010 Re: combobox selection alters checkedlistbox contents

    This can be done with if statements on the combo box for the on selection changed,

    then if the information is STATIC and not dynamic, this would be easy to do.

    If Combobox1.text = "this" then...
  35. Replies
    5
    Views
    1,016

    VS 2010 Re: Component Licensing

    Although I will be experimenting with my own version of licensing, I think ultimately I will get this when money allows me.

    When starting projects, I try to do everything 100&#37; in house, and WISH...
  36. Replies
    5
    Views
    1,016

    VS 2010 Re: Component Licensing

    Scratch my last, I think i'll just go for that licensing module.

    It gives the source so I can make my own custom billing, which I was worried that it would not.
  37. Replies
    5
    Views
    1,016

    VS 2010 Re: Component Licensing

    Thanks jmcilhinney, and for $170 that looks like a good buy.

    However, i'm curious how they go about doing it.

    As with programming, the joy comes from making your own custom solution.
  38. Replies
    5
    Views
    1,016

    VS 2010 Component Licensing

    Howdy,

    I am working on some custom components that I would like to sell with a form of licensing,

    Is there a way to make a component exit a application?


    Meaning, if the license key is no...
  39. Replies
    2
    Views
    762

    VS 2010 Re: BGWorker woes.. How to loop a list?

    Thanks buddy! I'll look into that!
  40. Replies
    5
    Views
    580

    Re: How to open another window?

    if you use me.dispose before the next form is loaded, your program will fail.


    Best way to do it is, on the 1st form: form2.show

    on the 2nd form's startup: form1.close(or dispose)

    or you...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width