i am in severe need of help right now, anyone who has an idea, throw it out. i have visual studio .net 2003 just in canse it makes a difference. i am still working on my classes special project and am a lot closer. right now i have it look like this
http://s252.photobucket.com/albums/hh13/xjnx/
and right now i have just like 1/10 of the classes on there, lol, ill start over and add all of them after i figure out how im going to make this work, ok heres my questions
1. how can i make it to search through the student id's instead of forced to look through one at a time, because as far as i know, it doesnt order them by id's and they will have to search through literally thousands.
2. how and what coding can i use to make the add button pop up a new window with the name(first,middle, and last) and student id so when they click the ok in the new window, it then adds it to the database, because right now when they click the add button, it will set the record number up one, but they cant seem to access it. it just wont cut me any slack. heres my coding so far(sry if it dosnt look right, first time im trying to use the code thing)
Try
Me.BindingContext(objds1, "All it is").EndCurrentEdit()
Me.BindingContext(objds1, "All it is").AddNew()
Catch eEndEdit As System.Exception
System.Windows.Forms.MessageBox.Show(eEndEdit.Message)
End Try
Me.objds1_PositionChanged()
3. is there a way i can make it so they can click a button and it will pop up a report type page where, based one which person it was on and what classes they have, the report will have a checked of the classes and i can add more to the report because this sheet right now has only classes, well the classes are a sub of different clusers of the business group the school provides, so im hoping the report will say like the name, the different clusters, and list all the classes of each cluster and checked the classes theyve taken.
pls help.
p.s. for any of you who remember my other posts, i finally got the update button to work, im using this code, pls tell me if it is good or bad.
Try
Me.UpdateDataSet()
Catch eUpdate As System.Exception
System.Windows.Forms.MessageBox.Show(eUpdate.Message)
End Try
Me.objds1_PositionChanged()
MsgBox("Information Updated")