Search:

Type: Posts; User: 03myersd

Page 1 of 13 1 2 3 4

Search: Search took 0.13 seconds; generated 8 minute(s) ago.

  1. Replies
    14
    Views
    1,617

    Re: A bit of a random walk...

    Going to go for what seems like a well educated guess here:

    Imagine an equilateral triangle with sides of length 1. 1 vertex is the centre of a unit circle, which means 2 sides are the radius of...
  2. Replies
    10
    Views
    24,398

    Re: Password mask in a console app![Resolved]

    Why not just do something along the lines of:



    Char temp;
    String pass = "";
    do
    {
    temp = Console.ReadKey().KeyChar;
    if (temp == 13) break;
  3. Replies
    16
    Views
    2,964

    Re: Identify machine and IP?

    Surely all the computers have a unique name? From the name you can get the IP and MAC address?
  4. Replies
    5
    Views
    793

    Re: Linux file permission

    For #1 the answer will be in 1 of 3 files. The first is /etc/apache2/apache.conf

    You are looking for the default directory. The other options are the files in /etc/apache2/sites-available and...
  5. Replies
    1
    Views
    727

    Visual Studio throws caught errors

    So if I have the following code for example:


    private void Form1_Load(object sender, EventArgs e)
    {
    for (int i = 1; i < 10; i++)
    {
    ...
  6. Replies
    3
    Views
    1,242

    Re: URL Rewriting

    I just tried it on a different server and it seems to almost work. I at least get redirected to the page. However, it doesn't seem to set the get parameters...


    Edit: Turns out GoDaddy hosting...
  7. Replies
    3
    Views
    1,242

    Re: URL Rewriting

    Unfortunately I am with godaddy for hosting, and as such getting the logs from them is a real pain. So far I am flying blind.
  8. Replies
    3
    Views
    1,242

    [RESOLVED] URL Rewriting

    I have been experimenting with URL rewriting.

    I have articles on a blog and they are accessed with http://site.com/article.php?id=12345

    I wish to have this in the form:...
  9. Replies
    3
    Views
    1,041

    Re: Regular Expressions

    You code performs perfectly. Thanks!
  10. Replies
    3
    Views
    1,041

    [RESOLVED] Regular Expressions

    Well once again I am here seeking help for regular expressions. They elude me to no end. But anyway, to the point.

    I have some html stored in a variable in PHP. In this code there may be any...
  11. Replies
    4
    Views
    1,377

    Re: Regular Expression for email validation

    As I said before, I am no expert, however it seems to me that that one still does not allow a plus, and unless I am mistaken it also only allows the address to have 2 sub domains?
  12. Replies
    4
    Views
    1,377

    Re: Regular Expression for email validation

    I'm not quite sure what you mean but I am using this for a client side validation of an email address on a web page using javascript. The server side validation will be the same but using php.
  13. Replies
    4
    Views
    1,377

    Regular Expression for email validation

    Unfortunately regular expressions are something I know nothing about.

    I am trying to validate an email address using javascript and this is what I am using:

    var expression =...
  14. Replies
    13
    Views
    15,841

    VS 2008 Re: Storing very large strings

    Why not just use an array with a seperate element for each line?
  15. Replies
    2
    Views
    575

    Re: Hardware suggestions for VS2010 + VB.NET

    That hardware is way overpowered for what you need.

    vbbeginner92 is correct with the hardware they listed. That is about what you would need to comfortably run it. Anything more is just wasteful....
  16. Replies
    8
    Views
    655

    Re: How to Structure Match Results Database

    Ah ok. That makes sense.
  17. Replies
    8
    Views
    655

    Re: How to Structure Match Results Database

    Ah ok, presumably then this is an application for club affairs rather than results?
  18. Replies
    8
    Views
    655

    Re: How to Structure Match Results Database

    I have never used SQLExpress. Will you be using php or asp for yours? If it's the latter I can't help at all. I have no idea about either ASP or ASP.NET. Odd really seeing as my preferred languages...
  19. Replies
    8
    Views
    655

    Re: How to Structure Match Results Database

    As far as I know its going to be a LAMP setup. But that's not guaranteed.
  20. Replies
    8
    Views
    655

    How to Structure Match Results Database

    In a few weeks I will most likely be taking over the website of my fencing club. It has been suggested that the match results are available on the website, but also the ability to click on someone's...
  21. Thread: Advertising

    by 03myersd
    Replies
    45
    Views
    3,805

    Re: Advertising

    Nope. All cookies are Ok.
  22. Thread: Advertising

    by 03myersd
    Replies
    45
    Views
    3,805

    Re: Advertising

    How are some people only seeing it once or twice? I get it every time I visit the forum?
  23. Thread: Advertising

    by 03myersd
    Replies
    45
    Views
    3,805

    Re: Advertising

    The thing about that is, I have whitelisted VBForums. If I un-whitelist them then I will have blocked adverts, which I don't want on this site as it is no doubt the main method of financial support?
  24. Replies
    11
    Views
    3,477

    Re: Mono C# for Android and Iphone

    @gep13 Apple have a major thing about people using flash to program for iOS devices. Because there isn't native support it has to be converted before being compiled, and all the converters tend to be...
  25. Replies
    11
    Views
    3,477

    Re: Mono C# for Android and Iphone

    According to Apple's terms you may only code in C,C++ or Objective-C. However, from what I have heard applications written using MonoTouch are still being accepted.

    Edit: Most people seem to be...
  26. Replies
    11
    Views
    3,477

    Re: Mono C# for Android and Iphone

    It seems rather promising. I haven't done anything with it other than load a couple of example programs. The documentation isn't the best but I am sure it will pick up as the project gains popularity.
  27. Re: On a macbook, I cant list Directories in root mac drive, any ideas?

    I wonder if "E:\docs\.." would work? Its an extremely small chance though.
  28. Replies
    12
    Views
    1,200

    Re: Questions about Computer Science

    At my university we aren't taught any particular language. We are taught how to program using different methods and which type of language is suited towards particular tasks. Examples are learning...
  29. Replies
    3
    Views
    967

    Re: Has anyone used mono framework on Linux

    Anything I have come across has been stated already, but watch out for the WinForms stuff in particular. There have been a few issues with even the simplest controls. Hopefully at some point there...
  30. Replies
    1
    Views
    485

    VS 2010 Re: Editing a web page

    You will need to give a LOT more information before anyone can even attempt to help you?
  31. Replies
    6
    Views
    1,542

    Re: PHP Login System

    I think Im ok with it for just now, but I now know who to turn to if it all goes wrong! Lol. Thanks for the offer though.
  32. Replies
    6
    Views
    1,542

    Re: PHP Login System

    Unfortunately this is my first proper php project and I have never done done a login system before. I wanted one that would be reasonably secure too. By looking at other code I am understanding a lot...
  33. Replies
    6
    Views
    1,542

    Re: PHP Login System

    I had seen most but a few of these were new. I have decided on one to use too. Thanks! Your google-fu is strong. :D
  34. Replies
    6
    Views
    671

    Re: Is this text some sort of API?

    http://www.andreavb.com/forum/viewtopic_1591.html - That seems to be the closest you can get.
  35. Replies
    6
    Views
    671

    Re: Is this text some sort of API?

    That is most likely a custom control, but you can replicate it in VB fairly easily. Simply set the font colour to grey and the text to "password" when the textbox loses focus (remember to only do it...
  36. Replies
    6
    Views
    1,542

    PHP Login System

    I have looked and looked and looked and so far can't find anything that looks good. I would prefer to use one which is open source but this isn't strictly necessary. Has anyone seen anything?

    If...
  37. Replies
    3
    Views
    669

    Re: Twitter's robots.txt question:

    I would assume that "Disallow: /*?" would just disallow any php pages of the form "page.php?variables=results"

    Seems to make sense to me. As far as I know only * is an accepted wildcard.
  38. VS 2008 Re: run infanite loop in background

    I wouldn't put this in a loop. This is what the Timer object is for.
  39. Replies
    3
    Views
    2,155

    VS 2010 Re: Formatting a string: truncating or padding

    I would use var.PadRight(5).Substring(0, 5) but other than that I can't see any issues?
  40. VS 2010 Re: Unexpected malfunction when changing from hours to minutes

    What happens if you change all the references to minutes and set the number of minutes to 60?
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width