December 18th, 2012 04:37 PM
rayox,
Nobody wants to read through all of the code to solve a list of vague questions. If you could ask for HELP in learning about one of the issues I'm sure that one of these fine Gurus would...
December 11th, 2012 03:39 PM
Thank you Mur16. Apparently I've been an air-head all day. I had pre-defined columns setup in design-view. Problem solved.
December 11th, 2012 02:54 PM
Hello all,
I'm working on a project with a DataGridView that is filled using a SQL connection. Is there a way to modify (code-behind) the number/names of columns in the DataGridView based upon...
December 11th, 2012 02:21 PM
This sounds strange. Why are you creating a button for each table? And do you have any code yet?
October 16th, 2012 05:54 PM
I was able to make a few changes on the application level to force a similar query to work
--Reference Part List Data Table
Select * FROM BoM.dbo.Part, BoM.dbo.Part_Type, BoM.dbo.Part_Subtype,...
October 16th, 2012 04:16 PM
30527I am having difficulty creating a nested query for my VB.NET application.
--Attached is my Database Design for reference (ignore cruddy table names).
My main focus is on the Part and...
October 4th, 2012 03:37 PM
I had this program working a while ago and I came back to it and am having some issues. I am able to Populate a List from a DataSet well enough but for some reason my initial List persists through...
August 30th, 2012 08:32 AM
Hi all,
I am trying to populate a data set with multiple sql tables. I understand that I need to do this with multiple sqlcommands but how do I break up an SQL Statement into seperate commands?
...
August 30th, 2012 08:23 AM
Thank you, that's good to know. But I have decided to go a different route (no listview) to get the product my boss wants.
Cheers!
August 29th, 2012 02:32 PM
I will have to find a workaround. I fear that creating my own control will be a waste of time for me as I would be learning as I go.
Thank you for your help dglienna.
August 29th, 2012 12:45 PM
Listviews do have grouping and I have found samples that group by using IComparer class but never for databound items. The databinding is unavoidable and I don't know what other control I would be...
August 29th, 2012 08:52 AM
I am having difficulties finding relevant information regarding listview sorting and grouping. The following picture shows the listview I am trying to sort/group.
30257
I am attempting to group...
August 17th, 2012 03:08 PM
I have a combobox and a txtbox. Both are databound. Choosing a value in the combobox initiates the txtbox fill. Right now my event handle for this event is "onclick" but I would like to change the...
August 15th, 2012 04:00 PM
Here is what I have for the function so far:
Public Function GetPrice(ByVal Part_Number As String) As Double
Try
Using udtConn As New SqlConnection(sBoMConnectionString)...
August 15th, 2012 03:49 PM
While I do know how to create a mathematical SQL query I am having difficulties with creating a statement involving multiple rows, each row chose by one or more attributes selected in the GUI of my...