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
S

SajjadZare

@SajjadZare
About
Posts
49
Topics
25
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Access a control or function from asp page in Global.asax
    S SajjadZare

    I need to check a function every 60 seconds and do that with below code

    void Application_Start(object sender, EventArgs e)
    {
    AddTask("CheckEmails", 60);
    }

    private void AddTask(string name, int seconds)
    {
        OnCacheRemove = new CacheItemRemovedCallback(CacheItemRemoved);
        HttpRuntime.Cache.Insert(name, seconds, null, DateTime.Now.AddSeconds(seconds), Cache.NoSlidingExpiration,
            CacheItemPriority.NotRemovable, OnCacheRemove);
    }//addTask
    
    public void CacheItemRemoved(string k, object v, CacheItemRemovedReason r)
    {
        //check for new emails
    
        AddTask(k, Convert.ToInt32(v));
    }//CacheItemRemoved
    
    ASP.NET question tutorial

  • Access a control or function from asp page in Global.asax
    S SajjadZare

    I implement a background task for check new email in Global and want to update label's text that put in page.aspx from Global

    ASP.NET question tutorial

  • Access a control or function from asp page in Global.asax
    S SajjadZare

    How can i access a control or function from asp page in Global.asax? for example call a function from Default.aspx in Global.asax

    ASP.NET question tutorial

  • How to register .ocx file from code
    S SajjadZare

    I did it but says: The system cannot find the file specified

    C# csharp tutorial question

  • How to register .ocx file from code
    S SajjadZare

    How to register .ocx file with (regsvr32) from code in C# ?

    C# csharp tutorial question

  • Problem in work with ocx file
    S SajjadZare

    Is it correct : Regsvr32 /s /u Application.StartupPath+@"\dsoframer.ocx"

    C# help question workspace

  • Problem in work with ocx file
    S SajjadZare

    I add an ocx control on my form (right click on toolbox->choose item ->select special .ocx->add it on form) and work correctly. then i make setup for my project and add .ocx file to my setup project but when i install setup on destination computer this .ocx control doesn't work

    why ?

    C# help question workspace

  • set password on database in sql server 2005
    S SajjadZare

    Set a password that other people can't open my mdf file

    Database database sql-server sysadmin tutorial question

  • set password on database in sql server 2005
    S SajjadZare

    How to set password on database in sql server 2005 ?

    Database database sql-server sysadmin tutorial question

  • Naming Controls
    S SajjadZare

    yes,it's true but i want to find good way for naming controls

    C# csharp tutorial question

  • Naming Controls
    S SajjadZare

    Hi to all, How naming controls in C# ? for example if you have a button for Register , a good name for this button is btnRegister Button=btn Label = lbl TextBox = txt PictureBox =? and other controls

    C# csharp tutorial question

  • Problem in BackUp
    S SajjadZare

    [^]

    C# database sysadmin help

  • Problem in BackUp
    S SajjadZare

    Hi to all, I write below code to create backup but it doesn't work

    ServerConnection connection = new ServerConnection(".");
    Server srv = new Server(connection);
    SaveFileDialog sfd = new SaveFileDialog();
    if (sfd.ShowDialog() == DialogResult.OK)
    {
    Backup bkpDatabase = new Backup();
    bkpDatabase.Action = BackupActionType.Database;
    bkpDatabase.Database = txtDBName.Text;//txtDBName contain Name of database
    BackupDeviceItem bkpDevice = new BackupDeviceItem(sfd.FileName, DeviceType.File);
    bkpDatabase.Devices.Add(bkpDevice);
    bkpDatabase.SqlBackup(srv);
    }//if

    C# database sysadmin help

  • BackUp
    S SajjadZare

    Hello I write a program to create database backup please get it from below and say me why doesn't it create backup file [^]

    C# database com

  • problem in Class
    S SajjadZare

    class class1 { public int a; } form1 : class1 s=new class1(); s.a=10 form2: class1 c=new class1(); messageBox.show(c.a.tostring()); // I want to see 10 here

    C# question help

  • problem in Class
    S SajjadZare

    I have a class and two form in my project i want to validate a filed from form1 and use this field's value in form2 but when i want to use it i cant't access to this value becuase every time that i new ، object from class filed's value was destroyed how can i do that ?

    C# question help

  • Dynamic report
    S SajjadZare

    Hi to all I want to make a dynamic report with crystal Report that i can choose column to show and change location of column how can i do it ? (please give me an example)

    C# question tutorial

  • Picture in Crystal Report
    S SajjadZare

    Hi I have a picture object in crystal report I want to set picture that user select from 'Browse' button to it in runtime how can i do it ?

    C# question

  • LayOut In . Net
    S SajjadZare

    Hi I want types of layout in .net please help me

    .NET (Core and Framework) csharp help

  • Sppech to text & Text to speech
    S SajjadZare

    Hi to all I need a component for convert text to speech and speech to text

    C#
  • Login

  • Don't have an account? Register

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