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 bkrike 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
  • Content: Threads
  • Order by date
  1. radiance

    how to supply parameter for detailsView

    I am coding in C#, visual studio 2005. I sucessfully created the data for my datagrid. I created the connection string, an adapter, dataset and filled the dataset before binding to the mainGrid. I created a detailsView in the (I still have more to do with this application, like update...
  2. 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...
  3. 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...
  4. radiance

    need to display data correctly in excel

    Hello. I need to write data to excel. The 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...
  5. radiance

    problem formatting excel data

    Hello. I need to write data to excel. The 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...
  6. 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...
  7. radiance

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

    Hello. I have a button that the user selects to export the data to excel. I have 2 problems: 1) I am getting a major error on the export of the dataset to excel (once the user clicks 'Export') Member not found. (Exception from HRESULT: 0x80020003 (DISP_E_MEMBERNOTFOUND)) 2) When I just put...
  8. radiance

    how do you use sql views in asp.net?

    hello. another developer needs for me to use his views in my program. I have looked on microsoft's site and there is no clear explanation on using 'views' in place of sql queries. please advise. so, if I wanted to change the following: Dim pullfilesbyDate As String = "select bookID...
  9. radiance

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

    I have a small form which i allow the user to search based on dates and/or select the book from the list. the export is a function that I call for the date search and the book selection. the dates search works fine. i use text boxes, but since I am also using a select box for the books, I...
  10. radiance

    Current sub deletes from root, need to delete from subfolders

    Hello. The following sub deletes files in the root. How can I build this out so that expired files in subfolders are deleted as well? I have several main folders at the top level and each main folder has 2 subfolders. Those subfolders contain the files. Public Module deleteFiles...
  11. radiance

    ActiveX component error in a windows service file???

    Hello. I have a windows service file, that runs fine through my test application (console program). I then placed my code into a windows service. After installing the service, I check the event logs and I keep seeing this error in the event log, which seems to be preventing further...
  12. radiance

    Having problems with Timer

    Hello. i want to drop in a timer for my windows service file which should run every 3 days. i imported the following namespaces, Imports System.Threading.Timer Imports System.Timers but I am still having problems with the timer. I get an error on System.timers about...etc I dropped a...
  13. radiance

    Having problems with timer

    Hello. i want to drop in a timer for my windows service file which should run every 3 days. i imported the following namespaces, Imports System.Threading.Timer Imports System.Timers but I am still having problems with the timer. I get an error on System.timers about...etc I dropped a...
  14. radiance

    Need to create query to return scheduled results every week

    Hi. I want to create a query that will return data weekly (on Sundays). So all files for that week, will be logged. there is a column in my database called LastActionDate, which is what i am basing everything on. How can I do create a query to do this? I was using datepart, but I am not...
  15. radiance

    How to call a class' functions within windows app

    Hello. I created an reference for my class lib within my windows application and a basic form with 2 buttons. The buttons will activate the functions of the class. One button is to grab the records and then insert the selection into a 'logging' table. How do i call the functions of the...
  16. radiance

    Problem connecting to database for Windows Service in .net

    Hello. I need to create a windows service that will not only run, but check and remove files, write to a log and more etc...I have read a few tutorials online, but i am still at square one. I am using visual studio 2005. Here's my current application, I tried a simple service (as a test) ...
  17. radiance

    Vertical Nav not rendering properly in browers on mac and pc

    Hello. I have a vertical navigation on my site which uses a little bit of javascript and lists. I am experiencing a few browser quirks. I don't know how to bypass the quirks. Thanks in advance... #1. I need to top align the subnav with their main menu links. I changed the margin-top...
  18. radiance

    Trouble with Update Query

    Can someone tell me what is wrong with my update query? I am trying to update 2 different records with the same CategoryID, but different PartsID and collectionID. I think I am on the right track with a loop, but I am not sure whether I have the right type of loop. Secondly, the records are...
  19. radiance

    Query Update Logic- Query Not working- Need Direction

    I have a simple update that i am trying to do, which will be used for my other applications. But I can't seem to get the query right. could someone point me in the right direction? I have 3 separate tables. one of the tables is a collectionParts table, which has the fkeys from the other 2...
  20. radiance

    Loop Update? Is this possible

    Hello. I have an admin form, which allows the user to add calendar items. The calendar items can have multiple "views". These views are pulled from a separate table in my sql db. I am having success with my insert statement. Data is insterted into the main table as well as the parts table...

Part and Inventory Search

Back
Top