No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
Web Developer - Current focus medical application and information systems.
9 Posted Topics
Re: Set your default browser to another browser and see if the other browser keeps opening. If so you are narrowing the problem down to a malicious piece of software launching a webpage. You can change the default browser by right clicking on a saved html file and using the "open … | |
I can't seem to wrap my head around this. I'll need a seasoned programmer to push in the right direction. I have a listView with 7 sub items. What I'm looking to do is populate a table in an .mdb file with the data. The listView box is almost the … | |
Re: A good bit of information to provide would be what software you used to perform the restore. Windows has a built in restore and so does HP, Lenovo and other third party companies. To share a horror story, I did a restore on my friends HP that promised to leave … | |
I have two forms that share data between eachother. 1. In Designer view of Form2 I establish a public variable. public bool isMyFormValid 2. When I attempt to access the variable in Form1 like this... if (Form2.isMyFormValid = true) { //do this} C Sharp no likey... I get this message: … | |
I have a two forms that I created using the design view of Visual C# Express (Form1 & infoEntry). I set the properties to of the listview in Form1. public System.Windows.Forms.ListView toSend; I've invoked the second form and sent some data using code below. Works great. infoEntry dataWindow = new … | |
I'm having difficulty understanding DataSets. I created a DataSet within a private void caled Form1_Load [code] private void Form1_Load(object sender, EventArgs e) { DataSet fooBar = new DataSet(); adapter.Fill(fooBar, "value_" + x); DataRow dRow = fooBar.Tables["ShiftLat_" + x].Rows[0]; }[/code] How can I call this data from another private void within … | |
I've created a dynamic object with properties using the following code: [code] // For each jpeg in the directory... foreach (string name in array1) { x++; // select row where jpeg name is equal IF FOUND: adapter.SelectCommand = new OleDbCommand("SELECT shift1 FROM ShiftTable WHERE imgName = '" + (name) + … | |
I'm looking for some suggestions on how to approach this windows form based application I'm in the very beginning stages of writing. Bare in mind Im still at the Hello World level of C#. How should I populate a listbox with mock names for all jpegs in a folder whlie … | |
I'm trying to compile some code in Visual C# Express. Would someone please have a gander and help me out by giving me a brife explanation of why I'm getting an error "oleDbDataAdapter is not in the current context"? From my understanding (which must be wrong) oleDbDataAdapter is part of … |
The End.