Search results for query: *

  • Users: sddd1
  • Order by date
  1. sddd1

    Problem

    There are 500 light bulbs (numbered 1 to 500) arranged in a row. Initially they are all OFF. Starting with bulb 2, all even numbered bulbs are turned ON. Next, starting with bulb 3, and visiting every third bulb, it is turned ON if it is OFF, and it is turned OFF if it is ON. This procedure is...
  2. sddd1

    How save item in listbox?

    I want to save the item in listbox in c# Could you share the code ? Thanks in Advance
  3. sddd1

    How Protect .NET code from reverse engineering

    As per my understanding, we can reverse engineer any compiled dll whose source language is a .net language like c#,vb.net. There are many tools availablein the market for obfuscation and prevent reverse engineering of the dll.
  4. sddd1

    Select Image File in ListView and save exe

    I need Image Selection in ListView and Save in Setting in c#. 1:- Add Images in Listview 2:- Save All IMage in a .exe 3:- Run The exe another pc it will run
  5. sddd1

    Refresh method is not working in Imagelistview

    Why is not working Refresh method in ImageListView, Can you give me altenative solution imageListView1.Refresh();
  6. sddd1

    Random File Repeat

    originalArray can't find how to implement
  7. sddd1

    How to create Cut,Copy,Paste in contextmenu of lisview in Winform c#

    I want to create dual context menu in c# , And Click the item I want to add Cut, Copy, Paste private void listView1_MouseDown(object sender, MouseEventArgs e) { bool match = false; if (e.Button == System.Windows.Forms.MouseButtons.Right) { foreach (ListViewItem item in...
  8. sddd1

    Listbox5 can't find another Form

    I have a Form1 inside listbox5, Form2 Can't Find 'listBox5' The name 'listBox5' does not exist in the current context
  9. sddd1

    Random File Repeat

    Can you give me any idea, If I have directory and inside 5images, I will open by random, When Click on button 1image will show, next click on button 2image will show, But incase I want don't repeat my images, I want serially one by one Like 1image, 2Images, 3images, 4images, 5images etc, But I...
  10. sddd1

    Random File Repeat

    My Question is Random File will not repeat ,When I Click Rendom File will show "1:. Again I am Click Rendom File will show "2" But In Case show 1,1 Random rand = new Random(); string[] filess = Directory.GetFiles("Select Directory"); string randomFile =...
  11. sddd1

    In ImageListView How to Mark "USED"

    Could you modify the code:- ImageListView
  12. sddd1

    In ImageListView How to Mark "USED"

    When Double Click the image , "Used Mark" in Imagelist View and Used Marked Save in setting ... imageListView3.Items.Add(file.FullName);
  13. sddd1

    Resolved I want to save full path of listbox in C#

    Thanku so much !
  14. sddd1

    Resolved I want to save full path of listbox in C#

    First Of All I add Directory in Listbox, Like A Directory, B Directory. When User Click the item of ListBox ,Get the full path of Items in C# Someone modify the code ! Thanks in Advance ! BindingSource listboxsource = null; public Form1() { InitializeComponent(); listboxsource = new...
Back
Top Bottom