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
R

Raj Mouli

@Raj Mouli
About
Posts
8
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Send SMS by using GSM dongle
    R Raj Mouli

    Are you sure you want to send SMS via dongle, cause there are other API's which sends the SMS to local & international arena. Please go through ClickaTell[^] which allows you to send the messages on lowest costs. There is another way to send for international customers. Refer the following.. http://www.makeuseof.com/tag/email-to-sms/[^] http://www.howtogeek.com/howto/27051/use-email-to-send-text-messages-sms-to-mobile-phones-for-free/[^]

    Mouli

    C# csharp

  • datatype in DataGridview
    R Raj Mouli

    may be decimal will help you in getting your issue fixed

    Mouli

    C# c++ database tutorial

  • richtextbox
    R Raj Mouli

    [

    ](http://www.codeproject.com/Questions/656352/draw-line-in-rich-textbox)[^]

    Mouli

    C# question

  • Create 3 application separately & retrive data from 1st app using 2nd app & show that data on 3rd app using .net
    R Raj Mouli

    What should be the application types, I 've a quick solutions to make 3 web applications works with HTTP REQUESTs Please let me know if those are applications are of type "Web", so that I can share my things with you. Thanks

    Mouli

    C# csharp tutorial

  • how to restore a sql database programmatically in c#?
    R Raj Mouli

    The following namespaces can be used to access SQL Server 2005 programmatically: Microsoft.SqlServer.management Microsoft.SqlServer.Management.NotificationServices Microsoft.SqlServer.Management.Smo Microsoft.SqlServer.Management.Smo.Agent Microsoft.SqlServer.Management.Smo.Broker Microsoft.SqlServer.Management.Smo.Mail Microsoft.SqlServer.Management.Smo.RegisteredServers Microsoft.SqlServer.Management.Smo.Wmi Microsoft.SqlServer.Management.Trace

    Backup bkpDBFull = new Backup();
    /* Specify whether you want to back up database or files or log */
    bkpDBFull.Action = BackupActionType.Database;
    /* Specify the name of the database to back up */
    bkpDBFull.Database = myDatabase.Name;
    /* You can take backup on several media type (disk or tape), here I am
    * using File type and storing backup on the file system */
    bkpDBFull.Devices.AddDevice(@"D:\AdventureWorksFull.bak", DeviceType.File);
    bkpDBFull.BackupSetName = "Adventureworks database Backup";
    bkpDBFull.BackupSetDescription = "Adventureworks database - Full Backup";
    /* You can specify the expiration date for your backup data
    * after that date backup data would not be relevant */
    bkpDBFull.ExpirationDate = DateTime.Today.AddDays(10);

    /* You can specify Initialize = false (default) to create a new
    * backup set which will be appended as last backup set on the media. You
    * can specify Initialize = true to make the backup as first set on the
    * medium and to overwrite any other existing backup sets if the all the
    * backup sets have expired and specified backup set name matches with
    * the name on the medium */
    bkpDBFull.Initialize = false;

    /* Wiring up events for progress monitoring */
    bkpDBFull.PercentComplete += CompletionStatusInPercent;
    bkpDBFull.Complete += Backup_Completed;

    /* SqlBackup method starts to take back up
    * You can also use SqlBackupAsync method to perform the backup
    * operation asynchronously */
    bkpDBFull.SqlBackup(myServer);

    for more info - http://www.mssqltips.com/sqlservertip/1849/backup-and-restore-sql-server-databases-programmatically-with-smo/[^]

    Mouli

    C# database csharp tutorial question

  • how to restore a sql database programmatically in c#?
    R Raj Mouli

    The following namespaces can be used to access SQL Server 2005 programmatically: Microsoft.SqlServer.management Microsoft.SqlServer.Management.NotificationServices Microsoft.SqlServer.Management.Smo Microsoft.SqlServer.Management.Smo.Agent Microsoft.SqlServer.Management.Smo.Broker Microsoft.SqlServer.Management.Smo.Mail Microsoft.SqlServer.Management.Smo.RegisteredServers Microsoft.SqlServer.Management.Smo.Wmi Microsoft.SqlServer.Management.Trace

    Backup bkpDBFull = new Backup();
    /* Specify whether you want to back up database or files or log */
    bkpDBFull.Action = BackupActionType.Database;
    /* Specify the name of the database to back up */
    bkpDBFull.Database = myDatabase.Name;
    /* You can take backup on several media type (disk or tape), here I am
    * using File type and storing backup on the file system */
    bkpDBFull.Devices.AddDevice(@"D:\AdventureWorksFull.bak", DeviceType.File);
    bkpDBFull.BackupSetName = "Adventureworks database Backup";
    bkpDBFull.BackupSetDescription = "Adventureworks database - Full Backup";
    /* You can specify the expiration date for your backup data
    * after that date backup data would not be relevant */
    bkpDBFull.ExpirationDate = DateTime.Today.AddDays(10);

    /* You can specify Initialize = false (default) to create a new
    * backup set which will be appended as last backup set on the media. You
    * can specify Initialize = true to make the backup as first set on the
    * medium and to overwrite any other existing backup sets if the all the
    * backup sets have expired and specified backup set name matches with
    * the name on the medium */
    bkpDBFull.Initialize = false;

    /* Wiring up events for progress monitoring */
    bkpDBFull.PercentComplete += CompletionStatusInPercent;
    bkpDBFull.Complete += Backup_Completed;

    /* SqlBackup method starts to take back up
    * You can also use SqlBackupAsync method to perform the backup
    * operation asynchronously */
    bkpDBFull.SqlBackup(myServer);

    Mouli

    C# database csharp tutorial question

  • Source Code
    R Raj Mouli

    private void button1_Click_1(object sender, EventArgs e) { List images = new List() { "GreyA.png", "YellowA.png", "AOutline.png" }; AForge.Imaging.Filters.Edges filter = new AForge.Imaging.Filters.Edges(); foreach (var filename in images) { Bitmap b = new Bitmap(Image.FromFile(Path.Combine(Application.StartupPath, "images", filename))); Bitmap filteredBitmap = b.Clone() as Bitmap; PictureBox pb = new PictureBox(); pb.SizeMode = PictureBoxSizeMode.AutoSize; pb.Image = b; flowLayoutPanel1.Controls.Add(pb); pb = new PictureBox(); // apply the filter filter.ApplyInPlace(filteredBitmap); pb.SizeMode = PictureBoxSizeMode.AutoSize; pb.Image = filteredBitmap; flowLayoutPanel1.Controls.Add(pb); } } for more info visit- http://stackoverflow.com/questions/14128847/image-matching-algorithm-in-c-sharp[^]

    Mouli

    C# csharp database regex tutorial

  • How to get Label value from parent repeater and use it for child repeater
    R Raj Mouli

    hi, I 've two assumptions, not sure what will fix you issues, 01. Try having a hidden variable after the label, and try getting the value from hidden Label 02. in Repeater1_ItemDataBound, rather than using e.Item.FindControl, you can do Repeater1.Items[e.Item.ItemIndex].FindControl("Category")- try this once Thanks Mouli

    Mouli

    C# database question docker help tutorial
  • Login

  • Don't have an account? Register

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