Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
7
Posts with Downvotes
6
Downvoting Members
5
2 Commented Posts
0 Endorsements
~8K People Reached
Favorite Forums
Member Avatar for IDC_Sharp
Member Avatar for IDC_Sharp
Member Avatar for IDC_Sharp

I'm trying to install Visual Studio 2010 on Windows 7 64-bit and I keep getting following screen: [url]http://imgur.com/C0bJv[/url] I tried to install also Visual Studio 2008 with similar result. Any idea what could it be?

Member Avatar for thines01
0
558
Member Avatar for IDC_Sharp

I need to create a recursion that will count in array the letter 'x'. I solved it, but it don't know if this is what they meant that i would do. I have just started to learn this subject. If it's not a recursion or it's not a good way …

Member Avatar for hericles
0
92
Member Avatar for IDC_Sharp

i made a simple code, but i have a problem and i don't know what to do.. everything work, the programs is running and all but when i click 'Download' it's write this message: "The remote server returned an error: (404) Not Found" this is the source code:

Member Avatar for IDC_Sharp
0
75
Member Avatar for IDC_Sharp
Member Avatar for IDC_Sharp

how can i read from a file like music file (mp3, wav, or something else) it's properties, like Album title, song's time, song's name and more, like ITunes read it or any music program.

Member Avatar for abelLazm
0
123
Member Avatar for IDC_Sharp

how can i take only the letters that after the dot (.) in the word? if i have the word: "Yes.No" i want that my string a will be equal to "No", but that should work in every word, not just in Yes.No

Member Avatar for IDC_Sharp
0
71
Member Avatar for IDC_Sharp

OK, i need that label1 will always change it location to the middle of the panel. but will stay in the same Y spot (X change to the middle of his line, Y stay as it is) and i need that label2 will always change it location to the middle …

Member Avatar for abelLazm
0
69
Member Avatar for IDC_Sharp

OK, i made a program that you can drag and drop mp3 files to it and it's write there's name. i want that when i will click the button "Save" it will save the mp3 files with the new name in the Desktop. how can i do it? there is …

Member Avatar for Razer_90
0
139
Member Avatar for IDC_Sharp

OK, i made a listView and a ComboBox now i want that when ever i choose an item from the comboBox the listView will show only the items that there's subItem have the same text of the ComboBoxItem this is what i made so far, but i succeeded to do …

Member Avatar for IDC_Sharp
0
1K
Member Avatar for IDC_Sharp

I already make the thread as "solved" but i actually have 1 more question, about this thread: [url]http://www.daniweb.com/software-development/csharp/threads/359558/1534169#post1534169[/url] How can i copy the subitems of the checked items?

Member Avatar for Mitja Bonca
0
145
Member Avatar for IDC_Sharp

there is a part in my program that you need to add item to listView, but for now it's only with text, and i want to add image as item with sub items of text. i mean that now i have something like this: _____________________________________________ a | subitem | subitem …

Member Avatar for abelLazm
0
323
Member Avatar for IDC_Sharp

How to copy Checked items from first listview to another listview? i got problem with that, i made at the first listview Check boxes to every item and i want when i will click a button all the checked items will be copy (not move) to the other listView. it …

Member Avatar for vincezed
0
1K
Member Avatar for sandeepamazing

Hey hi i am new to this field , i am working on project which is desktop application in C#,in the project there are three forms ,i want to show only working form and all other form should get close 'showdialogue' method also does not work ...............please give me some …

Member Avatar for sandeepamazing
0
95
Member Avatar for IDC_Sharp

this is a question about this thread: [url]http://www.daniweb.com/forums/thread331447-3.html[/url] there is an option to delete item from the XML FILE? because i have 'Delete item button from the listView' and i want that will be delete it also from the XML file.. and if there's no way to do that. maybe …

Member Avatar for Diamonddrake
0
499
Member Avatar for IDC_Sharp

so, i want to save my listView Items as i save Location or Size of window in the Project settings. for example: [CODE] private void Form1_Load(object sender, EventArgs e) { this.Location = Properties.Settings.Default.MyLoc; } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { Properties.Settings.Default.MyLoc = this.Location; }[/CODE] how can i do that? …

Member Avatar for Diamonddrake
0
1K
Member Avatar for IDC_Sharp

first, soory about my english. now: Form1 = ListView + Button Form2 = TextBox + Button Form1 Button = Open Form2 now, i want when i get into Form2 i will write somthing in the TextBox, Click on the button and when i Click on the button The listView in …

Member Avatar for rpk2006
0
92
Member Avatar for IDC_Sharp

[COLOR="Red"][B]Quastion number 1:[/B][/COLOR] look i made a program with listView and i want that when i quit the program it will save the items that i put in the listView and when i will open the program again it will display the items. i tried it with 'Setting' in the …

Member Avatar for IDC_Sharp
0
96
Member Avatar for IDC_Sharp

i made a browser with Favorites and the Favorites save in XML file. when i open the program and i put there some favorites its open the program realy slow like after 9 - 15 seconds/ and i delete the all favorites its open like its should (1, 2 seconds) …

Member Avatar for IDC_Sharp
0
70
Member Avatar for IDC_Sharp

i made a browser with Favorites and the Favorites save in XML file. when i open the program and i put there some favorites its open the program realy slow like after 9 - 15 seconds/ and i delete the all favorites its open like its should (1, 2 seconds) …

Member Avatar for IDC_Sharp
0
80
Member Avatar for IDC_Sharp

im don't know so much english so im soory// try to understand. i made a browser// but alawys when i get into some websites its open some more pages in internet explorer page and its not good// i want that it won't open this pages at all or if its …

Member Avatar for Nyight
0
151
Member Avatar for IDC_Sharp

I made this code: [CODE] private int a; private int b; private void Form1_Resize(object sender, EventArgs e) { adrBarTextBox.Width = b + this.Size.Width - a; } private void Form1_ResizeBegin(object sender, EventArgs e) { a = ((Form)sender).Size.Width; b = adrBarTextBox.Size.Width; } [/CODE] when i open the program and i maximize the …

Member Avatar for Geekitygeek
0
160
Member Avatar for IDC_Sharp

i made a Browser and i made tabs so i made MouseDown Event and i put there this: [CODE] addNewTab(); getCurrentBrowser().Navigate(adress); [/CODE] but it doesnt work.. so i want to do when i click a link with the Middle Mouse Button its will open the link in new tab// how …

Member Avatar for IDC_Sharp
0
56
Member Avatar for IDC_Sharp

how can i make vScrollBar that will scroll panel?? cus i made a program and its realy important there ScrollBar without ScrollBar its won't be the same thanks

Member Avatar for Suzie999
0
67
Member Avatar for IDC_Sharp

i made a program in C# and i SAAVE ALL (from the button SAVE ALL) as the name "XXXXXXX" (the name doesn't metter now) and now i want to change the name (dont ask why but its realy realy important). and i dont no how to SAVE ALL AS like …

Member Avatar for farooqaaa
0
76
Member Avatar for IDC_Sharp

i did this beacuse i want that when i will make the window bigger he will grow as it shuld be: [CODE] public Form1() { InitializeComponent(); new Form1(ref webBrowser3, new Size(50, 50)); } private void Form1_Resize(object sender, EventArgs e) { UpdatewebBrowser3(new Size(256 + (this.Width - this.MinimumSize.Width), 256 + (this.Height - …

Member Avatar for Geekitygeek
0
65
Member Avatar for IDC_Sharp

ok i made a Browser in FORM1 and i made a button that will open FORM2 (Form2 = Options) so in the Form2 i made a button to change the font of the Browser: [CODE] FontDialog fontDialog = new FontDialog(); if ( fontDialog.ShowDialog() != DialogResult.Cancel ) { textBox1.Font = fontDialog.Font; …

Member Avatar for Geekitygeek
0
68
Member Avatar for IDC_Sharp

Well, I did two windows The First Windows for the game And the secend window for the name of the game, CANCEL button PLAY button accidentally done now in FORM1 the game and the FORM2 post opening which of course does open before the FORM1 So I ask if There …

Member Avatar for Lusiphur
0
208
Member Avatar for IDC_Sharp

at first (soory about my english im not so good).. i made an Album Maker [URL="http://israup.net/images/aabd2e4bb754bc9c8039c4e44b5b89ca.png"]http://israup.net/images/aabd2e4bb754bc9c8039c4e44b5b89ca.png[/URL] ok no i made a FileDialog at all the picturebox (when you click on a picturebox its open a filedialog and its works grate. now beacuse its just show the picturs in the picturebox …

Member Avatar for GDICommander
0
113