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 Chriss Miller 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. KCcasey

    DoCmd.???

    Hi All, Sorted my issues out. Firstly, the recordsource of my subform had mysteriously changed - the field I wanted wasn't being return.... bizarre. With that fixed, made some minor corrections (in red) to Pwise's suggestion, to end with this: Function OpenRecordForEditing() On Error GoTo...
  2. KCcasey

    DoCmd.???

    Thanks for your reply Pwise. I slapped your code into the function, and which generated the error: 'Error -2147...: The expression you enteredhas a field, control, or property name that MS Office Access can't find'. Hmm. So then I tried to simply return the fields value using MsgBox...
  3. KCcasey

    DoCmd.???

    Firstly, thanks for time to look at this. I'm painfully aware of my VBA noobness right now so its much appreciated. Now for some context. I have a main form with multiple pages. The first page has search functionality, the search results are displayed in a subform. The functionality I am...
  4. KCcasey

    Help! Data-type changing during text import

    Hi All, I've got a strange problem (at least i think so). I'm importing the contents of a text file to a dataset, and the datatype of the destination column is changing from string to decimal for no reason that I can determine... When I pass a text file with 13 rows, the datatype of the first...
  5. KCcasey

    Newbie Question: Best Prac text file parsing

    Hi All, First off, thanks for taking the time to educate me. This is my first foray into VB.NET, so I really appreciate your constructive feedback. I have a test file that I want to parse, segregating the first 13(ish) chars of each line from the remaining text in the line. eg...
  6. KCcasey

    Determining the day of week

    I've found this reference really helpful when dealing with complex data/calendar problems in the past... Completely different approach to Lamprey13's post. http://sqlserver2000.databases.aspfaq.com/why-should-i-consider-using-an-auxiliary-calendar-table.html Good Luck! Casey.
  7. KCcasey

    Can I use table vars or temp tables in a VIEW ?

    Hi Folks, I've got a query that I'd like to create as a view... its necessary for it to perform some aggregations in some temp tables - - how can I go about this?? I've tried create tables, temp tables and table vars with no joy; I guess I want to know ifs its possible, and if so how? :)...
  8. KCcasey

    Why can't I toggle my toggle? :)

    Beautiful, works like a charm. Thanks for helping out a VBA noob. Kind Regards, Casey.
  9. KCcasey

    Why can't I toggle my toggle? :)

    Hi PHV, Yes the toggle buttons are grouped in a frame - - what is the property of the frame that controls the currently selected option? I'm currently use ADO to return a value, based on which I want to select a specific toggle. Bear with me here - - as my frame isn't based on an underlying...
  10. KCcasey

    Why can't I toggle my toggle? :)

    Hi Guys, thanks for your prompt feedback! I tried Alex's fix first - - that ran without raising an error. However the option button on the form doesn't depress, which is kinda what I was really after... extra star anyone??? :) Regards, Casey.
  11. KCcasey

    Why can't I toggle my toggle? :)

    Hi Everyone! First of all, thanks in advance for the help! This should be an easy one, but I'm at a loss. I want to 'toggle' a toggle button based on results from a recordset. Heres the code I've been attempting to use: Select Case objRecordSet("PSsentBy") Case "Neil Watts"...
  12. KCcasey

    Q: What does N do?

    Thanks guys! Its been one of those irritating questions at the back of my mind for ages :) Casey
  13. KCcasey

    Q: What does N do?

    Hi Everyone, Just a quick 'n easy question today... What does placing " N " in statement do? eg. INSERT INTO Northwind.dbo.Shippers (CompanyName, Phone) VALUES (N'Snowflake Shipping', N'(503)555-7233') Thanks! Casey.
  14. KCcasey

    Best Practice - Updating a table from a view in another DB

    Hi, The view is comprised of 4 underlying table, a couple small, a couple (relatively) large. Does this change my options? Regards, Casey.
  15. KCcasey

    Best Practice - Updating a table from a view in another DB

    Hi, I’m hoping that I can get some guidance :) I have a table that I want to be in sync with a view in a separate (SQL2K) DB. I’ve never played with triggers, or had much to do with implementing referential integrity in SQL2K - - I’m pretty much ignorant! There seems to be several options that...
  16. KCcasey

    Report missing XML formatting...(!?)

    This is really weird... somehow security problem, but I don't know what. Have a several PCs that receive a subscription email from RS. All but one receive the subscription email ok. The one that doesn't receives all the data from the report, with absolutely no formatting what-so-ever. No rows...
  17. KCcasey

    ODBC connection works on client fails on server...

    Hi Folks, I'm trying to set up an ODBC connection in MS Reporting Services to an Excel file. The ODBC connection works from my client, but when I upload the report to the server to run I receive the following errors: An error has occurred during report processing. (rsProcessingAborted) Get...
  18. KCcasey

    Possible to use Excel files as datasources?

    Sorted myself out! (For posterity) Syntax for referencing a specfic sheet: SELECT * FROM [SheetName$] Casey.
  19. KCcasey

    Possible to use Excel files as datasources?

    Ack! I'd had been referencing the DSN unneccessarily in the 'source data' and the 'initial catalog' causing the connection string to fall over. Ah, while I have your experience onhand, any pointers on how I would go about returning a recordset from from a specfic sheet / cell... ? Will RS...
  20. KCcasey

    Possible to use Excel files as datasources?

    Hi, I'm hoping to import some data from a Excel workbook to use in a report I'm developing. Is it possible without creating custom extensions? Thanks in advance! Casey.

Part and Inventory Search

Back
Top