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
A

achari ravi

@achari ravi
About
Posts
8
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Sending SMSs from your Microsoft .NET Compact Framework-based Applications
    A achari ravi

    can anyoner plz. help me out in writing a code in c# for Sending SMSs from your Microsoft .NET Compact Framework-based Applications regards

    Mobile csharp help

  • Sending SMSs from your Microsoft .NET Compact Framework-based Applications
    A achari ravi

    can anyoner plz. help me out in writing a code in c# for Sending SMSs from your Microsoft .NET Compact Framework-based Applications regards

    C# csharp help

  • mobile database connectivity
    A achari ravi

    heloo can anyone plz help me out in writing a code in c# to create a databse in mobile application iama a beginner thx. in advance bascially i got this but i getsa error in "da.Fill(dt)" stating that the database table craeted in c:/ inside my project is not valid i even started the ms avtive sync and emulator plz help me out public static string connectionString = ""; public static SqlCeConnection cn = null; public static SqlCeDataAdapter da = null; public static DataTable dt = new DataTable(); connectionString = "Data Source=c:\\My Documents\\Database.sdf" ; cn = new SqlCeConnection(connectionString); da = new SqlCeDataAdapter("SELECT * FROM Users", cn); da.Fill(dt); foreach (DataRow dr in dt.Rows) { listbox1.items.add(dr[0]); }

    Mobile help csharp database learning

  • databse connectivity
    A achari ravi

    helloo can anyone plz. help me out in writng a code in c# to connect to database in mobile compact framework basically iam a begginer in this field thanks in advance

    Mobile csharp database help

  • playing .mp3 files in c#
    A achari ravi

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; namespace audio1 { public partial class Form1 : Form { private string Pcommand; private bool isOpen; [DllImport("winmm.dll")] private static extern long mciSendString(string strCommand,StringBuilder strReturn,int iReturnLength, IntPtr hwndCallback); public void Close() { Pcommand = "close MediaFile"; mciSendString(Pcommand, null, 0, IntPtr.Zero); isOpen=false; } public void Open(string sFileName) { Pcommand = "open \"" + sFileName + "\" type mpegvideo alias MediaFile"; mciSendString(Pcommand, null, 0, IntPtr.Zero); isOpen = true; } public void Play(bool loop) { if(isOpen) { Pcommand = "play MediaFile"; if (loop) Pcommand += " REPEAT"; mciSendString(Pcommand, null, 0, IntPtr.Zero); } } public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { openFileDialog1.Filter = "|*.mp3"; openFileDialog1.ShowDialog(); textBox1.Text = openFileDialog1.FileName; Open(textBox1.Text); } private void button2_Click(object sender, EventArgs e) { Play(false); } private void button3_Click(object sender, EventArgs e) { Close(); } } }

    C# csharp help

  • playing mp3 file using c#
    A achari ravi

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; namespace audio1 { public partial class Form1 : Form { private string Pcommand; private bool isOpen; [DllImport("winmm.dll")] private static extern long mciSendString(string strCommand,StringBuilder strReturn,int iReturnLength, IntPtr hwndCallback); public void Close() { Pcommand = "close MediaFile"; mciSendString(Pcommand, null, 0, IntPtr.Zero); isOpen=false; } public void Open(string sFileName) { Pcommand = "open \"" + sFileName + "\" type mpegvideo alias MediaFile"; mciSendString(Pcommand, null, 0, IntPtr.Zero); isOpen = true; } public void Play(bool loop) { if(isOpen) { Pcommand = "play MediaFile"; if (loop) Pcommand += " REPEAT"; mciSendString(Pcommand, null, 0, IntPtr.Zero); } } public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { openFileDialog1.Filter = "|*.mp3"; openFileDialog1.ShowDialog(); textBox1.Text = openFileDialog1.FileName; Open(textBox1.Text); } private void button2_Click(object sender, EventArgs e) { Play(false); } private void button3_Click(object sender, EventArgs e) { Close(); } } }

    C# question csharp help learning

  • playing mp3 file using c#
    A achari ravi

    heloo can anyone please help me out in writing a code in c# for playing .mp3 files i tried a lot and found this as iam a beginner to c# i didn't understand what is this and how and where to place it ? [DllImport("winmm.dll")] private static extern long mciSendString(string strCommand, StringBuilder strReturn, int iReturnLength, IntPtr hwndCallback); thx.

    C# question csharp help learning

  • playing .mp3 files in c#
    A achari ravi

    can anyone please help me out in writing a code in c# for playing .mp3 files thx. in advance

    C# csharp help
  • Login

  • Don't have an account? Register

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