Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: radiance
  • Order by date
  1. radiance

    how to supply parameter for detailsView

    I have: myComm.Parameters.Add("@RequestID", SqlDbType.Int, 4); is this what you mean?
  2. radiance

    how to supply parameter for detailsView

    ...GridViewRow row = mainGrid.Rows[selectedRowIndex]; //Old Code that worked to show the data before defining a new connection /*string name = row.Cells[3].Text; string showID = row.Cells[4].Text; errorLbl.Text = "Tomeka, you selected " + showID + "'s " + name + "...
  3. radiance

    what is the best way to add details view from master grid

    I am relatively new to C# and I am using visual studio 2005. However, I am stuck on how to show details once a user selects a record. Currently, the record is highlighted, but I don't know how to present the additional details (which is a mini-cart). I have other button options too (Select...
  4. radiance

    Unable to enter text in text box

    no one has altered security. i have full access to the app. I figured out that the field for dubs works when i am adding a record and I have the 'dubs' field now as unbound. is this ok? changes can't be made when the field is bound... but, when I insert the number of dubs and I have...
  5. radiance

    Unable to enter text in text box

    ...error may be. Private Sub editrec_Click() Dim dbs As Database Dim rs As DAO.Recordset Dim sShow As String Set dbs = CurrentDb() sShow = "Select * from [tbl_request item] WHERE [fk request ID] = " & Form_frmTapeRequestItemsV2.[fk request ID] & _ " and [fk tape ID]= " &...
  6. radiance

    Unable to enter text in text box

    i checked all of the properties and nothing is locked. this was formerly a 97 application which i had to resurrect and convert to 2000. i read that there may be some issues during conversion, which i am having.
  7. radiance

    Unable to enter text in text box

    i can't enter anything. i just get a beep when i try to enter values. I have been trying to make changes, but nothing seems to work.
  8. radiance

    Unable to enter text in text box

    I had to update an access 97 database to access 2000. i modified a few of the objects. however when I run the application for testing, I can not enter numeric values or select entries from the subform. what could be some reasons behind this? allowEdits is set to yes, I have changed...
  9. radiance

    need to display data correctly in excel

    i am getting a comexception error once I add this statement...not sure why..
  10. radiance

    need to display data correctly in excel

    ...problem is not writing the data to excel, but how to render the data in the format that my client seeks. The data is currently output as: select * from fullViewPrg, where the test fields are as follows: program, platformType, directRights, cleared, totalCosts so, from the table view, the...
  11. radiance

    problem formatting excel data

    ...problem is not writing the data to excel, but how to render the data in the format that my client seeks. The data is currently output as: select * from fullViewPrg, where the test fields are as follows: program, platformType, directRights, cleared, totalCosts so, from the table view, the...
  12. radiance

    use distinct or exist statement with multiple select?

    sorry, that doesn't help me. my view is : VIEW: dsp_FULLStream sample columns are program, validStream, charge where 'program' may be listed a few times, but not the 'charge'.
  13. radiance

    use distinct or exist statement with multiple select?

    Hi. i need to show a set of records based on the programs in the system. some of the programs are listed as duplicates, so i still need to show the actual program and the values for it; I don't think using distinct will be the answer, since I still need to show all values. ie: PROGRAM...
  14. radiance

    Getting error: 'Member not found', what does this mean?

    thanks guys for your help... I revised my code and the export works successfully! Thank you!
  15. radiance

    Getting error: 'Member not found', what does this mean?

    ...'open connection to the database Dim conn As New SqlConnection(oCnt) 'open the recordset rst.Open("SELECT * FROM ExploitationView2 where ProgramName LIKE 'ProgramName'", oCnt) 'add command parameters objPara =...
  16. radiance

    Getting error: 'Member not found', what does this mean?

    thank you. i am going to try everything mentioned. I have done the excel export successfully for the web, but just can't get this example.
  17. radiance

    Getting error: 'Member not found', what does this mean?

    it's a web application. sorry.
  18. radiance

    Getting error: 'Member not found', what does this mean?

    ...ID=simm; Password=$simeon$") 'Using connection As New SqlConnection("LiveCMSConnect") connection.Open() Dim selectPrograms As String = "select * from Exploitation_view where ID = @ID" Dim adapter As SqlDataAdapter = New SqlDataAdapter Dim selectCMD As...
  19. radiance

    how can i export to excel, sql data that uses parameters

    so i need to place another object, grid within my form? is there no other way, since I have the values within a drop-down?
  20. radiance

    how do you use sql views in asp.net?

    ok...but is there a way to select certain parameters from the view?

Part and Inventory Search

Back
Top