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 SkipVought 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: *

  1. tmryan

    Table naming - newbie question

    LV - Dragonwell, Thanks for the info. I determined for sure today that the DataTables are being shared by all users. I was really surprised when I was stepping through the app in the debugger - and another user caused my debugger to take focus on my machine because they hit a breakpoint...
  2. tmryan

    Table naming - newbie question

    I'm new to C# and ASP.Net - but catching on quickly. I inherited an application developed by a contractor - who was gone before the application went into Production (which was yesterday). In a nutshell - we have a problem happening intermittently (sp?). I was debugging for a specific customer...
  3. tmryan

    Formatting a TemplateColumn

    That did the trick. Thanks! Tim Ryan PROGRESS Developer
  4. tmryan

    Formatting a TemplateColumn

    I figured out how to do this with a BoundColumn - but not a TemplateColumn. I have a column in a datagrid whose values I want to be formatted as DataFormatString="{0:N0}" - like I would with a BoundColumn. I don't see such an option for a TemplateColumn. Can this be done? My...
  5. tmryan

    Exit button - another newbie question

    Been a programmer for 10 years - but just getting my feet wet with ASP.Net and C#. I have a web form that I want to close on the submit of an Exit button. Should that be handled from the aspx or the aspc.cs? Seemingly a simple task - but I can't figure out how to do it. I'm kind of guesing...
  6. tmryan

    Subtracting Dates

    Thanks chiph - that did the trick. Tim Ryan PROGRESS Developer
  7. tmryan

    Subtracting Dates

    New to C#, and I'm looking for a way to find the number of days between 2 dates. I've created 2 dateTimePickers (short format) on a form. I want to calculate the number of days between them. In VB I could do it with "lblResult.Caption = Abs(DateDiff("d", dtpStartDate...
  8. tmryan

    Recording a Macro in Access

    MK10 - I am a programmer - but I haven't worked with VB or VBA that much. I work mostly with Progress - an Oracle wannabe. If you can give me an example I'm sure I could figure it out. ETID - I chose to import instead of link because I don't want to hit the Oracle DB everytime a report is...
  9. tmryan

    Recording a Macro in Access

    Is there a way to record a macro in Access, like you can in Excel? What I need to do is record/create a macro that imports data from an Oracle DB via a DSN. I can do the process manually, but I don't know how to create a macro to do it. Thanks Tim Tim Ryan PROGRESS Developer
  10. tmryan

    Web Enable Access DB

    I would recommend ASP's. They're easy to learn. I've just started playing with them myself a couple weeks ago - and have created a number of pages. Creating the query is the easy part. How are you going to control authentication. Will this be on a site that has sign in requirements? If so...
  11. tmryan

    SMTP mail from Access

    Rob, Thanks for the Tip. I'm still having a little trouble with it. I'm still having a little trouble. That argument indicates whether or not to allow editing. It still uses my local mail app (Notes). Do you know how I can force it to use my SMTP mail? Thanks Tim Tim Ryan PROGRESS Developer
  12. tmryan

    SMTP mail from Access

    I've been playing with the DoCmd.Send Object in an attempt to send mail on an event. I got it to the point where when the event fires, my local e-mail app is launched and the To, Subject and Text are filled out accordingly. I have to send it manually. My real hope though is to get it to use...
  13. tmryan

    Go to new record on form load

    Thanks to both of you. I will try it out today. Tim Ryan PROGRESS Developer
  14. tmryan

    Go to new record on form load

    Let's say I have a table with 22 records in it. When I open up a form for entering/editing data, it opens up to the first record. I have to hit the NavigationButton that has a >* on it to go to a blank form (rec 23) - to enter a new record. I'd like that to occur on form load. Thanks Tim...
  15. tmryan

    ASP, Access with no-lock

    I have a few ASP pages that access data from an Access DB. These are read only pages - no updating. When the database is open - I can't run the ASP's. Is there a way to override this. In the language I work with the most - we have a "NO-LOCK" method of connecting to data, allowing...
  16. tmryan

    Go to new record on form load

    Is it possible to make the navigationbuttons go to a new form ">*" on Form_Load ? Thanks Tim Ryan PROGRESS Developer
  17. tmryan

    File Create Date

    I have an open file that I opened with FileOpen(1, OpenFileDialog1.FileName, OpenMode.Input). How do I read the File create date of the file? Thanks Tim Tim Ryan PROGRESS Developer
  18. tmryan

    Table at bottom of every page

    I put a logo and links at the bottom of the front page of our company site. It was a hit, now they want it at the bottom of every page. It's all contained within a <table></table> definition. Is there a way I can assign it to the bottom of every page without physically putting it on every...
  19. tmryan

    Which Listbox attribute

    Thanks. As I mentioned before - my listbox name is lbTopicList. The datasource property is set to the DB/table, the DisplayMember is Topic (which is the field I want). The event code is: Private Sub lbTopicList_SelectedValueChanged(ByVal sender As Object, ByVal e As System.EventArgs)...
  20. tmryan

    Which Listbox attribute

    Thanks. As I mentioned before - my listbox name is lbTopicList. The datasource property is set to the DB/table, the DisplayMember is Topic (which is the field I want). The event code is: Private Sub lbTopicList_SelectedValueChanged(ByVal sender As Object, ByVal e As System.EventArgs)...

Part and Inventory Search

Back
Top