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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by StillLearning

  1. StillLearning

    Another Spin on using Popup Windows with ASP.NET

    Hello, I am a newbie and have been struggling with using popup windows with ASP.NET. I have read several of the posts here and have even searched the internet with no luck. Hopefully, someone can provide an example. Problem: I have a parent form with a dropdownlist and linkbutton on it. If a...
  2. StillLearning

    Code Behind Files versus Components which is best for a Newbie

    Thanks for the info. I will check those threads. He/she who does not take note, often forgets. Anderson Phillips III (10/22/01)
  3. StillLearning

    Code Behind Files versus Components which is best for a Newbie

    I have a basic newbie question regarding code behind files and components (dlls). Which one should I use? I am developing my first ASP.NET application and still learning my around Visual Studio. The application will be deployed to my company's intranet. A quick response is greatly appreciated...
  4. StillLearning

    How do I execute a stored procedure from Access 2000

    I am developing an application that uses Access 2000 as the front-end to SQL 2000. Everytime I try to execute a stored procedure via a command button click event to update all records in a table, I receive an error that Access cannot find the stored procedure. I can visibly see the stored...
  5. StillLearning

    Removing particular characters from a field

    Here is a solution: [code] Public Function CopyIt() Dim db As Database Dim rs As Recordset Dim intPos As Integer 'Location of hyphen Set db = CurrentDb Set rs = db.OpenRecordset("table1", dbOpenDynaset) With rs Do While Not rs.EOF 'Find the position of the hyphen...
  6. StillLearning

    Any Report Gurus out there?

    Louis, It appears that you have a classic 1 to many relationship. Without knowing all the details, is a solution to create the report. 1. Ensure that your query is set up as a 1 to many relationship. (ie. 1 Order can have many People) 2. Open the report in Design View. a. On the menu bar...
  7. StillLearning

    input for a time field using military time?

    A quick solution is to open the table that contains the time field in Design view. Change the field type to date/time and specify the field properties to "Medium time". This should give you the desired results.
  8. StillLearning

    General Knowledge Question: RDBMS Software Options

    I am in the process of preparing a report for my supervisor. I need information on the various RDBMS software available along with their limitations. Currently, we are planning to develop a material tracking system for a repair facility. This database will monitor the status of the item when it...
  9. StillLearning

    Need assistance with controlling MSWord with Access

    I assistance with developing code to open a Word file from Access. The Word file will be used to as a report for data from Access. I have been trying to understand the concept of automation without success. Can someone point me in the right direction. Your input is greatly appreciated.
  10. StillLearning

    Need Assistance developing code to secure a database over a network.

    In reference to WP and Elizabeth's response, My supervisor is a proficient Access User. The main issue at hand involves the knowledge level of the average user at my facility. She doesn't want them to be burdened with having to join workgroups.<br> <br> As of my posting I have found a way...
  11. StillLearning

    Need Assistance developing code to secure a database over a network.

    Let me set up the scenerio:<br> I have two databases which are linked together. Database #1 contains tables and forms which are to be accessed by Administrative personnel. Database #2 contains linked tables from Database #1. What are my options for creating security on both databases without...

Part and Inventory Search

Back
Top