Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
D

deeps26

@deeps26
About
Posts
10
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • NUnit with VSTS
    D deeps26

    I am facing a problem when using VSTS with NUnit 2.2.6. I am testing a website. After opening the browser it closes immidiately and I am getting the following error. !!!SCENARIO FAILURE!!! Info: Failed to execute test cases due to run time error: ‘The HWnd is no longer valid’ Image: file:///C:\Program%20Files\NUnit-Net-2.0%202.2.6\bin\MAUI_Chrome%20MastHead%20section-Scen10.jpg Is the problem with NUnit 2.2.6? Let me know. Thanks in advance :) Deeps..

    C# help testing beta-testing question

  • Threads
    D deeps26

    I don't know how to use Threads in C#. I want to check if a website is loaded or not. If not loaded, wait for 3 secs and check again. If still not loaded do something. Please help me with some pointers. Thanks in advance :) Vishal...

    C# csharp help tutorial

  • Connection with access 2003
    D deeps26

    I need to connect to access 2003 from asp.net. Can anybody help me ? I need some sample code. I have never worked with databases so need through explaination. Thanks in advance :) Deeps..

    ASP.NET csharp asp-net help question

  • DllImport
    D deeps26

    Hi, Can anyone tell me about using DllImport in C# ? Why and How ? Thanks in advance :) Deeps..

    C# csharp question

  • Submission Wizard
    D deeps26

    Hi just know about Submission Wizard is, Submission Wizard allows you to submit as many URL's as you like. If someone knows details pls let me know. Thanks in advance :) Deeps..

    Web Development

  • Input Type=hidden Problem
    D deeps26

    Hi, Try this Deeps..

    Web Development question help

  • Use Cases
    D deeps26

    Thanks It helped.:) Thanks in advance :) Deeps..

    Web Development tutorial question

  • Session handling
    D deeps26

    How to store session and then restore it at any point. My problem is user will logon to site a and then at a point will be going to site b for doing some work. When the user comes back should be placed from where he had left. Can anyone suggest... Hi all this is Deeps..

    ASP.NET help tutorial

  • Setting Environment Variables...
    D deeps26

    The System.Environment class has methods to read the environment variables. However, this class has no method to set the environment variables for the current process. To work around this problem, use the interop services to set the environment variables. Use SetEnvironmentVariable function. ex using System; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; namespace SetEnv { /// /// Summary description for Class1. /// public class SampleSetEnvironmentVariable { // Import the kernel32 dll. [DllImport("kernel32.dll",CharSet=CharSet.Auto, SetLastError=true)] [return:MarshalAs(UnmanagedType.Bool)] // The declaration is similar to the SDK function public static extern bool SetEnvironmentVariable(string lpName, string lpValue); public SampleSetEnvironmentVariable() { } public static bool SetEnvironmentVariableEx(string environmentVariable, string variableValue) { try { // Get the write permission to set the environment variable. EnvironmentPermission environmentPermission = new EnvironmentPermission(EnvironmentPermissionAccess.Write,environmentVariable); environmentPermission.Demand(); return SetEnvironmentVariable(environmentVariable, variableValue); } catch( SecurityException e) { Console.WriteLine("Exception:" + e.Message); } return false; } } class MyClass { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { // Create a sample environment variable and set its value (for the current process). SampleSetEnvironmentVariable.SetEnvironmentVariableEx("TESTENV", "TestValue"); // Verify that environment variable is set correctly. Console.WriteLine("The value of TESTENV is: " + Environment.GetEnvironmentVariable("TESTENV")); } } } Hi all this is Deeps..

    .NET (Core and Framework) csharp tutorial question workspace

  • Use Cases
    D deeps26

    How to write use case for a web portal ? How to start ? Hi all this is Deeps..

    Web Development tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups