Search:

Type: Posts; User: axion_sa

Page 1 of 13 1 2 3 4

Search: Search took 1.63 seconds.

  1. VS 2008 Re: Difficulties displaying UpdateProgress control

    http://weblogs.asp.net/alessandro/archive/2007/09/30/howto-show-updateprogress-conditionally-for-specific-controls-triggering-an-async-postback.aspx looks appropriate
  2. Replies
    7
    Views
    1,781

    VS 2008 Re: Ignore RequiredFieldValidator???

    Validation groups.
  3. Re: Strange Error when calling Database

    :sick:

    It's strange that they are restricting to dynamic views: snapshots work well & only really affect local storage. With regular checkins in development streams, the risk of losing code...
  4. Re: Strange Error when calling Database

    To add some clarity here: a shared network drive, by default, is considered untrusted by the .NET framework. You could add an exception for your shared drive on your local machine using the .NET...
  5. Re: Strange Error when calling Database

    This is ASP.NET code access security kicking in. The trust level for a site must be Medium or above before System.Data.SqlClient.SqlClientPermission is granted: it seems yours is set to Low or...
  6. Replies
    3
    Views
    2,230

    3.0/LINQ Re: Report Parallel.For progress

    On a form with a listbox, progress bar & button...

    The background task allows us to continuously update the UI: not having it results in a "flood" of updates towards the end of the process.


    ...
  7. VS 2005 Re: i want to calcuate how much time user spend on my site

    I would recommend a third party web analytics solution. Google provides a free hosted solution: http://www.google.com/analytics/
  8. Replies
    1
    Views
    712

    Re: unit tests and objects

    I would recommend implementing Inversion of Control by using a Dependency Injection Container. Unit testing would then leverage mocks or stubs, isolating the object under test, generated by a mocking...
  9. Replies
    11
    Views
    1,227

    VS 2008 Re: ASPNET_MsgBox - Pop Up blanks web page

    Post script
    Just noticed the language="JavaScript" attribute. This has been deprecated in favour of the type attribute:

    <script type="text/javascript">
    </script>
  10. Replies
    11
    Views
    1,227

    VS 2008 Re: ASPNET_MsgBox - Pop Up blanks web page

    I would suggest taking a step back at this point & asking: "is the temporary non-rendering of content really a problem and, if so, is there an alternative that would allow me to bypass the issue...
  11. Replies
    13
    Views
    1,219

    Re: Threading Help

    An alternative is the ParameterizedThreadStart delegate
  12. Replies
    13
    Views
    4,679

    Re: Junk code... do you write it? :)

    http://thedaily***.com/
    Thanks to sanitisation, the three stars equate to w, t & f.
  13. VS 2005 Re: MonthName(##) to foreign language?

    http://msdn.microsoft.com/en-us/library/system.globalization.datetimeformatinfo.monthnames.aspx

    And to get the DateTimeFormatInfo instance:


    DateTimeFormatInfo dateTimeFormat = new...
  14. Replies
    1
    Views
    549

    Re: Fast Filesystem recursion?

    A little old, but should do what you need it for: http://www.codeproject.com/KB/cs/win32apienumfile.aspx
  15. Replies
    9
    Views
    896

    Re: [RESOLVED] Javascript

    Firefox & Firebug.
  16. Replies
    2
    Views
    568

    2.0 Re: Some explanation on debugging.

    Console.WriteLine("Done. Hit <enter> to exit.");
    Console.ReadLine();
  17. 1.0-1.2 Re: Cryptographic failure while signing assembly ... The key container name ... does

    It'll be in the project's AssemblyInfo.cs file
  18. Replies
    10
    Views
    869

    Re: redirection substitution

    http://www.google.co.za/search?hl=en&q=safari+FormsAuthentication.RedirectFromLoginPage&btnG=Search&meta=&aq=f&oq=
  19. Re: The process cannot access the file because it is being used by another process

    Process Explorer will help with locating what process is locking the files which should then guide you towards the "why"
  20. 2.0 Re: Passing an object around (design question)

    Perhaps the Context Object pattern may help here. Do be careful, as it's a pattern that can quickly turn ugly when overused
  21. Re: server application unavailable in IIS 5.0 with window server 2000

    Check the event log; a more detailed exception would have been logged there.
  22. Re: Equivalent to VB6 String(int, string)

    string fooBar = new string('+', 5);
  23. VS 2008 Re: Continiuous Intergration - Complete n00b questions

    Personally haven't done it, but I suspect it would make use of either Mono or a Windows hosted build agent.
  24. VS 2008 Re: Continiuous Intergration - Complete n00b questions

    Two more CI services worth looking at:
    JetBrains TeamCity -> http://www.jetbrains.com/teamcity/index.html
    Has a free "Professional Edition" that allows for 20 users and 20 projects.
    ...
  25. Replies
    15
    Views
    1,378

    Re: [RESOLVED] Sys is undefiend ?

    Ah, but you can host it in a .js! Assuming it's called "myscript.js", you can register it in your script manager like such:


    <asp:ScriptManager runat="server">
    <Scripts>
    ...
  26. Replies
    15
    Views
    1,378

    Re: Sys is undefiend ?

    Mods - feel free to kill this particular post.
  27. Replies
    15
    Views
    1,378

    Re: Sys is undefiend ?

    So, you're using .NET 3.5 and, in all probability, VS 2008. This tells me that ASP.NET AJAX is natively supported. So, problem-wise, this leaves your HTML :)

    First off, a <script> tag must be...
  28. Replies
    0
    Views
    4,224

    Building solutions from Windows Explorer

    http://www.vbforums.com/showthread.php?p=3644271#post3644271
  29. Replies
    0
    Views
    3,277

    Building solutions from Windows Explorer

    This tip will add an entry to the right-click context menu on .sln files. When clicked, a command prompt will be spawned (and remain open) with MSBuild performing the build.

    This example uses...
  30. Replies
    17
    Views
    1,025

    Outside South African school

    First the aliens, now zombies. Shameless prejudice!

    http://farm3.static.flickr.com/2480/3906102961_b1f0682a1c.jpg
  31. Replies
    16
    Views
    1,387

    VS 2008 Re: ASP.NET User interface timing out ...

    A thought: introduce a Windows service that does the process execution after an instruction from the web server & use the web server to poll for completion. This will make the whole process a little...
  32. Replies
    4
    Views
    717

    VS 2005 Re: ASP.NET Project Management

    Software-wise, you may find this particularly difficult to manage. More "non-techy" approaches such as non-disclosure agreements, restricted mail access (i.e. not permitted to send large emails, with...
  33. Replies
    33
    Views
    2,498

    Re: Personality Test Fun

    ISTP and ISFP
    Introverted (I) 62.5&#37; Extroverted (E) 37.5%
    Sensing (S) 56.76% Intuitive (N) 43.24%
    Thinking (T) 50% Feeling (F) 50%
    Perceiving (P) 56.25% Judging (J) 43.75%

    ISTP - "Engineer"....
  34. Re: VB Forums Photography Contest #4

    From my wife & my holidays over the last several years. In no particular order...

    Rheilffordd Ffestiniog Wales
    http://farm4.static.flickr.com/3521/3780627826_37b87b73dd.jpg

    Mauritius...
  35. Replies
    4
    Views
    5,274

    Re: execute powershell script on remote server

    The RunspaceFactory.CreateRunspace method has an overload that accepts RunspaceConnectionInfo instance. This, in turn, has a sub-class WSManConnectionInfo...
  36. Replies
    4
    Views
    5,274

    Re: execute powershell script on remote server

    http://msdn.microsoft.com/en-us/library/dd127642&#37;28VS.85%29.aspx#Mtps_DropDownFilterText
    ...
  37. Re: How to run a process and get its output continously?

    This would be a great time to read the MSDN docs that have pretty useful examples:

    http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.redirectstandardoutput.aspx
    ...
  38. Replies
    1
    Views
    415

    Re: LDAP - speed question

    You've hit the nail on the head: the AD LDAP provider lazy loads information to improve performance, I think it best to follow the pattern :)
  39. Replies
    2
    Views
    485

    Re: remove letters

    string s = "12445-65432 abc, 98767-45364 th, 56749-23198";
    string result = Regex.Replace(s, @"\s?[a-zA-Z]\s?", string.Empty);


    For a breakdown, have a read through on...
  40. Replies
    2
    Views
    2,023

    Re: Drawing 3d Cubes

    Would you forgive me if I did post, but it wasn't useful?

    First off, one would need a grip on 3D/vertex math(s). Secondly, the System.Drawing.Graphics class provides simple drawing methods like...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width