Topic profile page for Ctrl C.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Ctrl C.
Topic "Ctrl c" was discussed 13,799 times on 1,797 sites in last 3 months
Started 1 day, 2 hours ago (2009-12-07 07:55:00)
by mircan
I've got the following question: What happens when I type Ctrl+C while a process is running in bash shell. I mean - is it the kernel that sends the signal to the process or is it the shell that interprets the key combination and sends the signal to its child process?
Started 1 day, 5 hours ago (2009-12-07 04:36:00)
by Rima ashik
Hi, I have copied some picture files from my digital camera to my laptop. After copying I lost the path of it. I tried searching the pictures and I found them too. I tried copying the files from the search panel with Ctrl+C and gave a Ctrl+V in my desired folder but the message came as 'Unable to read the source file". After this message all the pictures around 400 were not found again in the ...
Started 6 days, 8 hours ago (2009-12-02 01:37:00)
by Thorinair
Hello all, im new to the forum! I recently started coding in VB 2008, and I have a question: I'm using the following code for the Ctrl+C input: Code: Private Sub Form1_KeyDown(ByVal KeyCode As Integer, ByVal Shift As Integer) If Shift And vbCtrlMask Then If KeyCode = vbKeyC Then MsgBox("Ctrl + C pressed") End If End If ...
Started 2 weeks ago (2009-11-23 18:30:59)
by leandrocc
Hello everyone, I searched but couldn't find it. Is there something to avoid people from copying our posts? I've seen in some sites (non-WP) when you select the text and do a Ctrl+C a message box appears and tell you that you can't copy it! Any solution over here?
Started 2 weeks ago (2009-11-23 17:55:00)
by buckwheat4948
I use vb 6, I have a form that uses a listbox to display information, but Id like to do 2 things. Be able to highlight and copy from it. Id also like to be able to colorize some of the text, make a word here or there a different color. I cant seem to be able to do either of those things from a listbox. Thanks
Started 2 weeks, 3 days ago (2009-11-21 08:20:00)
by DrEzRo
i can right click for sometime and after that it goes like error explorer.exe and asking if i want to send report so i press yes and than the same but with drwtsn and that my coumputer is stuck and i have to ctrl alt del and than end explorer.exe and the same with atrl c\v what is the problem here? please help
Started 5 days, 16 hours ago (2009-12-02 17:48:00)
by Iceplug
Well, seeing as how e.Keycode can only be one value, I don't think that MsgBox (MessageBox.Show) would show. Looking here, you can process Ctrl+C by using the following: Code: If e.Control Then 'User pressed Ctrl+___ If e.KeyCode = Keys.C Then 'User pressed Ctrl+C 'Your Ctrl+C code here End If End If
Started 1 day, 1 hour ago (2009-12-07 08:48:00)
by pixellany
This is what you might call a "partially educated guess".... Anything you do in a terminal is interacting with the shell (eg BASH). In a terminal session, you are in a subshell and this subshell keeps track of what its current process is. ctrl-C says "kill this current process". That results in the subshell telling the kernel to kill the process by number. I've never tried to read the API...