Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~7K People Reached
Favorite Forums
Favorite Tags
Member Avatar for rfresh

I have a listview component with the following simple items: Name Size Fixed Lens ------------------------------- camera1 35mm Yes camera2 16mm No I'm using C# and want to edit various items but the following code give me value '2' is not valid for index: listView1.SelectedItems[0].SubItems[2].Text = "Test"; What am I doing …

Member Avatar for tinstaafl
0
215
Member Avatar for rfresh

I'm trying to remove the title bar from an external app. The reason is I don't want anyone to be able to move it. But my code below doesn't remove the title bar. Could this be because it's not removable? I read somewhere title bars of external apps may be …

Member Avatar for Suzie999
0
174
Member Avatar for rfresh

I've got this C# code below working fine. It removes an external apps border title and control boxes. What I'd really like to do is change the border style to SingleFixed. Any help appreciated. Process[] Procs = Process.GetProcesses(); foreach (Process proc in Procs) { if (proc.ProcessName.StartsWith("notepad")) { IntPtr pFoundWindow = …

Member Avatar for SteveDotNet
0
181
Member Avatar for rfresh

I think this is an unusual question but here goes. There is a winform app that has a window with controls on it that can only be operated via a keyboard. The design of how this works is really bad. I'm wondering if I can write a utility app that …

Member Avatar for rfresh
0
151
Member Avatar for rfresh

I'm writing a VS 2013 C# winform app and using the axAcroPDF Actice-X/COM PDF reader component. My PDF page (a single page) always loads in showing the top 2/3's of the page and not the whole page vertically. The width of the page is fine and shows the entire width. …

0
79
Member Avatar for rfresh

I've added a splitContainer to my form but I can't figure out how to set the splitContainer.panel2 width and height? I have two panels: splitContainer.Panel1 and splitContainer.panel2. I have the splitContainer.Dock set to Left. When I try to set the splitContainer.panel2 width I get an error saying to set the …

Member Avatar for rfresh
0
6K