Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~11.6K People Reached
Favorite Forums
Favorite Tags
Member Avatar for emreozpalamutcu

Here is list of things I want to do: Display context menu strip only when mouse is over the item and right clicked on it, the code I have for that is this: [code]private void contextMenuStrip1_Opening(object sender, CancelEventArgs e) { if (listView1.SelectedItems.Count == 0) e.Cancel = true; } private void …

0
109
Member Avatar for emreozpalamutcu

Currently I have this code: [CODE]public static class SizeUnit { public static string FileSizeToString(long size) { double FileSize = size; string[] format = new string[] { "{0} bytes", "{0} KB", "{0} MB", "{0} GB", "{0} TB" }; int i = 0; while (i < format.Length && FileSize >= 1024) { …

Member Avatar for emreozpalamutcu
0
163
Member Avatar for emreozpalamutcu

I'm making a mini disk cleaner and I have wrote this code: [CODE]listView1.Items.Clear(); DirectoryInfo dirCustom = new DirectoryInfo("C:\\Windows\\"); FileInfo[] filCustom; filCustom = dirCustom.GetFiles("*.txt"); foreach (FileInfo filFile in filCustom) { listView1.Items.Add(filFile.Name, "test"); }[/CODE] However there are some missing parts, works fine but i need to search multiple path and extensions and …

Member Avatar for emreozpalamutcu
0
160
Member Avatar for emreozpalamutcu

I'm trying to make a little disk cleaner program and I couldn't figure out how to display the results of scanned directory on list view tool on windows form application. I have a 3 columns and these are File Name, Folder Path and File Size. I want the program to …

Member Avatar for Tumlee
0
189
Member Avatar for emreozpalamutcu

I'm working in this project that has a feedback form and in this feedback form there is only body, so it doesn't ask for subject and who it's from. And all the messages send from will go to a custom mail account, for example [email]Example@custom.com[/email] How can I do this …

Member Avatar for cent91
0
586
Member Avatar for emreozpalamutcu

Hi, I started creating a new program in visual studio 2010 using C++ and windows form applications. However I done the bit of the design I got couple icons when you click on it opens a page and when I debug the program and resize the form those I icons …

Member Avatar for gusano79
0
988
Member Avatar for emreozpalamutcu

I found this code on the internet which is an good keylogger only issue it always types capitals how to make the keylogger recognise if its capital or not? ///////////////////////////////////////////////////////////////////////////////////////// [CODE]#include <iostream> using namespace std; #include <windows.h> #include <winuser.h> int Save (int key_stroke, char *file); void Stealth(); int main() { …

Member Avatar for Narue
0
123
Member Avatar for emreozpalamutcu

I'm making a system cleaner on C++ and what would be the best project to use? @ Windows forms application @ Empty project @ Win32 project @ Win32 Console application Note: This project has to have interface it's not console based! Reason why there is console app is you could …

Member Avatar for emreozpalamutcu
0
131
Member Avatar for emreozpalamutcu

How can I change the image on the picture box when the mouse is over the picture box I know how to end the application when the mouse is over the picture box but what is the code for changing the picture C++ (I need to use mouse enter class) …

Member Avatar for emreozpalamutcu
0
602
Member Avatar for emreozpalamutcu

I have made a program using C++ Windows Form Applications and I don't want my program to run more than once. What is the code for this?

Member Avatar for Dingbats
0
108
Member Avatar for emreozpalamutcu
Member Avatar for jonsca
0
96
Member Avatar for emreozpalamutcu

I'm making a program and in one of the part of the program there is this button and for it to do main function it needs to check if the notepad is running. So how can i check if the process is running?

Member Avatar for cool_zephyr
0
8K
Member Avatar for emreozpalamutcu

I want to extract .cab files using C++ when extraction finishes i want the extract .exe to run how can i do this?

Member Avatar for emreozpalamutcu
0
741
Member Avatar for emreozpalamutcu

I making a all in one program using visual studio 2010 C++ language and my all in one program includes free programs like firefox, opera, microsoft security essentials and people who uses my program doesn't need to install them they can just run it through my all in one program …

Member Avatar for Ancient Dragon
0
85