Search:

Type: Posts; User: high6

Page 1 of 13 1 2 3 4

Search: Search took 0.26 seconds.

  1. Replies
    2
    Views
    849

    Re: Install on linux for apache?

    Okay well if anyone wants to know. You must add literally 1 line to the conf file. Or at least I needed to.



    MonoServerPath /opt/mono/bin/mod-mono-server2


    Apparently it wasn't auto finding...
  2. Replies
    2
    Views
    849

    [Resolved] Install on linux for apache?

    Anyone know of an up to date guide? Everything I have seen is really old and I have not been able to get them to work.

    I have installed/compiled mono, xsp and mod_mono. But how do I configure...
  3. Replies
    0
    Views
    452

    Assembly Delay Load?

    Is there a way to load a bunch of module at once without having to worry about dependencies? I have a bunch of modules in a resource file and it would be a lot easier if I could just load them all at...
  4. Replies
    0
    Views
    1,109

    Java Applet Policy file?

    How do you use a policy file online? I have tried several different names but it just isn't being found.
  5. Replies
    1
    Views
    475

    2.0 breakpointing a separate thread?

    void Main()
    {
    Thread t = new Thread(Test);
    t.Start();
    }

    void Test()
    {
    int i = 0;
    i++;
  6. Replies
    1
    Views
    584

    Custom Textbox control.

    I am looking to create a custom textbox control because I plain on integrating a lot of features into it. Such as, "Free movement" which would allow you to pan across the text.

    Basically would WPF...
  7. Replies
    9
    Views
    3,347

    Re: Background worker, listview and flickering

    My bad, didn't see that part :P.

    Also wouldn't it be better to just have it as a list instead of a queue? That way you can AddRange it and clear it.
  8. Re: Get random int, but number can't be near specific range?

    Ya but it will loop an undefined amount of times when it isn't needed.
  9. Re: Get random int, but number can't be near specific range?

    That is not very efficient...

    Anyways... My only guess would to generate 2 random numbers. 1 being below and the other being above the current value. Then you just have it randomly pick one.
  10. Replies
    9
    Views
    3,347

    Re: Background worker, listview and flickering

    Also maybe you should add more at a time by using AddRange().
  11. Replies
    0
    Views
    475

    VS 2005, filters/file structure?

    I was wondering, is it possible to have the filters in VS become the file structure? What I mean is like I add the filter "Folder1". I want it to create a folder in my project folder named "Folder1"...
  12. Replies
    3
    Views
    705

    2.0 Re: New Immediate Window session?

    Hm, Building the project (even if it is up to date) seems to do it. Although hoping there is a better way.
  13. Replies
    3
    Views
    705

    2.0 New Immediate Window session?

    How do you start a new session? Like if I was to type in


    Class a = new Class1();

    How do I clear "a" and the rest of the variables from the scope?
  14. Replies
    6
    Views
    4,173

    2.0 Re: ListBox Refresh DataSource?

    Okay well this works and doesn't take 10-20 seconds to load.



    class WDFEntryList : List<WDFEntry>, System.ComponentModel.IListSource
    {
    public bool ContainsListCollection
    {
    ...
  15. Replies
    6
    Views
    4,173

    2.0 Re: ListBox Refresh DataSource?

    class WDFEntryList : System.ComponentModel.BindingList<WDFEntry>
    {
    }

    class WDFFileList : List<WDFFile>
    {
    public WDFEntryList Entries = new WDFEntryList();

    public void Refresh()
    ...
  16. Replies
    6
    Views
    4,173

    2.0 Re: ListBox Refresh DataSource?

    But with BindingSource can you give the ListBox a custom list?
  17. Replies
    6
    Views
    4,173

    2.0 Re: ListBox Refresh DataSource?

    I will try BindingList.

    I tried that, it gave the same result. GetList() was only called once when I set the DataSource.
  18. Replies
    6
    Views
    4,173

    2.0 ListBox Refresh DataSource?

    I want to refresh my list because right now I have a custom List with a sub List and I want to have each sub list entry as a separate line.


    class WDFFileList : List<WDFFile>,...
  19. Replies
    0
    Views
    464

    2.0 Get ImageBase with Assembly class?

    Is there a way to get the ImageBase of the assembly in memory with the Assembly class?

    For example, the ImageBase of Assembly.GetExecutingAssembly() would be 0x400000 (in most cases).
  20. Replies
    0
    Views
    649

    Font with hex glyphs?

    I was wondering because most programs don't support this, is there a font that contains hex glyphs for all unused characters?

    I am talking about ᄅ. (In firefox it should display as 11 over 05 in a...
  21. Replies
    0
    Views
    557

    MSVS C++ enable Format Document?

    How do you enable Edit->Advanced->FormatDocument in MSVS C++ 2005 pro?
  22. Re: [3.0/LINQ] Embed An XML File in a DLL

    A downside to embedding files is that to update the file you will have to update the dll too.
  23. Replies
    1
    Views
    1,777

    [2.0] Refresh listview data?

    I have a class that inherits a listviewitem. How do I force the listview to update the display?



    public class AClass : System.Windows.Forms.ListViewItem
    {
    const string booltrue =...
  24. Replies
    7
    Views
    3,379

    Re: value from text box in where clause

    string sql = string.Format(@"
    SELECT
    userNm,
    Password
    FROM
    Users
    WHERE
    userNm = '{0}' AND Password = '{1}'", userName.Text.Replace("'","\\'"), password.Text.Replace("'","\\'"));
  25. Replies
    3
    Views
    2,696

    [2.0] Regex match if it doesn't end with?

    I basically want a regex expression that only matches if the string doesn't end in ".php".

    The only thing I know of would be "[^.php]". But because of how [^x] works, it would also match things...
  26. Thread: [2.0] Pop3?

    by high6
    Replies
    2
    Views
    635

    [2.0] Pop3?

    Currently I am using http://sourceforge.net/projects/hpop/ with ssl prebuilt in for (gmail).

    Are there any other better classes? This class only seems to support getting 250 emails and I cannot...
  27. Replies
    8
    Views
    1,061

    Re: [3.0/LINQ] Text to ascii binary

    ret = (((c & 1) != 0) ? "1" : "0") + ret;

    It is called a condition operator.

    It is basically like doing.



    if ((c & 1) != 0)
    {
  28. Replies
    8
    Views
    1,061

    Re: [3.0/LINQ] Text to ascii binary

    updated, my bad :P. Was appending on the wrong side.
  29. Replies
    8
    Views
    1,061

    Re: [3.0/LINQ] Text to ascii binary

    string Int2Bin(int c)
    {
    string ret = "";
    while (c > 0)
    {
    ret = (((c & 1) != 0) ? "1" : "0") + ret;
    c >>= 1;
    ...
  30. Replies
    1
    Views
    582

    [2.0] Implement ==?

    class test
    {
    public int i = 0;
    static bool EqualsHelper(test a, test b)
    {
    return (a.i == b.i);
    }
    static...
  31. Replies
    0
    Views
    901

    [2.0] CookieContainer bug?

    I will try the best to explain this :X.

    This site is very strict about urls being http://site.com instead of http://www.site.com.


    string GET_Site(string site, CookieContainer cookies, bool...
  32. [2.0] VS Debugger, go to address, and don't pass exception to debugger?

    Finally got VS Debugger to work and I am liking it so far but 2 problems.

    1.) How do you go to an address? In the disassembly window, I have tried tons of combinations but nothing works. It always...
  33. Replies
    1
    Views
    1,527

    [2.0] CheckForIllegalCrossThreadCalls

    What are the pros/cons of disabling Control.CheckForIllegalCrossThreadCalls?
  34. Replies
    42
    Views
    2,244

    Re: [2.0] Certification?

    I am getting certified just to help with freelancing. I am 16 so I am not looking to be hired by a company yet :P.
  35. Replies
    42
    Views
    2,244

    Re: [2.0] Certification?

    Well I am not specifically looking to get microsoft certified.

    http://www.brainbench.com

    found that site too.
  36. Replies
    42
    Views
    2,244

    Re: [2.0] Certification?

    sorry for so many posts.

    www.expertrating.com

    Any have anything to say about that site? Looks cheap and is online(I think).
  37. Replies
    42
    Views
    2,244

    Re: [2.0] Certification?

    looks like this is the one I should take.

    http://www.microsoft.com/learning/en/us/exams/70-548.mspx

    has C#/VB.

    On this other page it says there are 2 exams required to get this...
  38. Replies
    42
    Views
    2,244

    Re: [2.0] Certification?

    Windows development/C#
  39. Replies
    42
    Views
    2,244

    Re: [2.0] Certification?

    Are there any microsoft certifications for specific languages?
  40. Replies
    42
    Views
    2,244

    Re: [2.0] Certification?

    The links on microsoft for 2005 .net certification are broken...

    http://www.transcender.com/dept.aspx?dept_id=102400

    Looking at those, are their actual tests on the site or just practice ones?
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width