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
M

muteb

@muteb
About
Posts
8
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Console is showing up with GUI
    M muteb

    thank you very much. yupe the setting was in the console app.

    C# help question

  • Console is showing up with GUI
    M muteb

    I actually I'm working with group and I'm just collecting their application and implement it as one application.

    C# help question

  • Console is showing up with GUI
    M muteb

    Hi I have problem with console when i run my GUI. I starts to show itself for no reason with GUI. Is there any possible way that I can just run my GUI without the console?

    C# help question

  • Problem to use letters ( c: , d:) with the physical drive:
    M muteb

    Hi I'm trying to use the name of a logical drive (c: and d:). I can't use them to get access to the physical drive in order to get the type, the model, the interface, the capacity, sectors and cylinders. My code : private void Form1_Load(object sender, EventArgs e) { ManagementObjectSearcher mosDisks = new ManagementObjectSearcher("SELECT * FROM Win32_LogicalDisk"); foreach (ManagementObject moDisk in mosDisks.Get()) { comboBox2.Items.Add(moDisk["DeviceID"].ToString()); } } private void button4_Click_1(object sender, EventArgs e) { listView2.Items.Clear() ManagementObjectSearcher mosDisks = new ManagementObjectSearcher("SELECT * FROM Win32_DiskDrive WHERE DeviceID = '" + comboBox2.SelectedItem + "'"); foreach (ManagementObject moDisk in mosDisks.Get()) { ListViewItem item = listView2.Items.Add("Type: " + moDisk["MediaType"].ToString()); ListViewItem item2 = listView2.Items.Add("Model: " + moDisk["Model"].ToString()); ListViewItem item3 = listView2.Items.Add("Interface: " + moDisk["InterfaceType"].ToString()); ListViewItem item4 = listView2.Items.Add("Capacity: " + moDisk["Size"].ToString() + " bytes (" + Math.Round(((((double)Convert.ToDouble(moDisk["Size"]) / 1024) / 1024) / 1024), 2) + " GB)"); ListViewItem item5 = listView2.Items.Add("Partitions: " + moDisk["Partitions"].ToString()); ListViewItem item6 = listView2.Items.Add("Signature: " + moDisk["Signature"].ToString()); ListViewItem item7 = listView2.Items.Add("Cylinders: " + moDisk["TotalCylinders"].ToString()); ListViewItem item8 = listView2.Items.Add("Sectors: " + moDisk["TotalSectors"].ToString()); ListViewItem item9 = listView2.Items.Add("Heads: " + moDisk["TotalHeads"].ToString()); ListViewItem item10 = listView2.Items.Add("Tracks: " + moDisk["TotalTracks"].ToString()); ListViewItem item11 = listView2.Items.Add("Bytes per Sector: " + moDisk["BytesPerSector"].ToString()); ListViewItem item12 = listView2.Items.Add("Sectors per Track: " + moDisk["SectorsPerTrack"].ToString()); ListViewItem item13 = listView2.Items.Add("Tracks per Cylinder: " + moDisk["TracksPerCylinder"].ToString()); ListViewItem item14 = listView2.Items.Add("Description: " + moDisk["Desc

    C# help

  • partition clone with c#
    M muteb

    I'm asking how to do it not should I do it. can anyone please provide me with any clue

    C# csharp help question

  • partition clone with c#
    M muteb

    Is there any way that i can make clone of hard drive c to mu external one by using c# code? can anyone help me with guideline or opensource software which has the desirable method.

    C# csharp help question

  • Recover deleted files!!!
    M muteb

    I'm talking about files that have been deleted from the entire system and they don't exist in the Recycle bin any more.

    C# help csharp tutorial

  • Recover deleted files!!!
    M muteb

    Hey guys :) I'm looking for open source code project in c# that will help me to understand how to recover deleted files in windows xp. I would be appreciative if anyone posts any hint related to my problem. Many thanks

    C# help csharp 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