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. CaptainBob007

    Paragraph Symbols

    here's a small excerpt: ...as they will become increasingly vital. ¶ "Mergers of service providers have pressured... The paragraph symbols all occur within a single xml node, and simply denote paragraphs within that section of the document. I'm trying to parse the location of them so I can...
  2. CaptainBob007

    Paragraph Symbols

    Unfortunately that just throws an error
  3. CaptainBob007

    Paragraph Symbols

    My apologies, for the unicode part I meant string.IndexOf('\u00B6')
  4. CaptainBob007

    Paragraph Symbols

    Hello, I'm working on a system to parse XML files we receive from a client and transform them to HTML. One of the characters contained in this XML file is the "paragraph" symbol, which I will show: ¶ The file is standard XML 1.0 in UTF-8. I can't figure out for the life of me how to get C#...
  5. CaptainBob007

    intellisense not recognizing functions in .dll

    Actually I figured it out. Having the class and namespace be the same apparently was the problem, as when I made them different it worked just fine. Thanks for the advice though!
  6. CaptainBob007

    intellisense not recognizing functions in .dll

    Hello - So I have a class "ErrUtil" (which is also the project name) that is compiled as a .dll, and am trying to incorporate it into a new solution I am developing. I have added a reference to ErrUtil in my new project, and also have "using ErrUtil;" in the file, yet when I try to access a...
  7. CaptainBob007

    Set combo box by hidden column

    Thanks so much AceMan. I appreciate your help too PHV, but I had tried your solution before and it just wasn't working for me.
  8. CaptainBob007

    Set combo box by hidden column

    Hi - I have a combo box with 2 columns, the first one is hidden and the second is not. So a user can select an address, and the (hidden) ID for the property is selected behind the scenes, and the form works beautifully. Now I am trying to open this form from another form by passing in the ID...
  9. CaptainBob007

    Conditional Formatting based on Date

    Thanks a bunch Maj - yes it was unbound, and that took care of it!
  10. CaptainBob007

    Conditional Formatting based on Date

    Hi all - I'm using Access 2000, and am working on a form for data entry and I'm trying to input some automated date comparison. I have it implemented, but it's not behaving as I think it should. I have a text box, with the short date format, and I'm inputting a date into it. I have...
  11. CaptainBob007

    Change RecordSource of Sub Report ??

    how did you change the recordsource of a subreport in vb?
  12. CaptainBob007

    Totals

    That's a very handy article. (I figure I'll latch onto this thread since my question is almost identical). I have a report with a subreport. I am totaling the subreport for each item in the report and bringing it to the main report without incident. Now at the bottom of the report, I am...
  13. CaptainBob007

    Confirming a compile has completed?

    Hi - I'm working on making a database to track nightly builds with ant, and am trying to figure out a way to log whether or not all files compiled successfully. This wouldn't be that hard if the javac task had a 'errorproperty' or 'ailureproperty' attribute, but from my readings, it does...
  14. CaptainBob007

    Subquery with ORDER BY

    Right now it's just sorting them by primary key, which is probably only because my sample data happens to be in that order anyway. AddNum is a number field. I have plenty of other queries which sort by street name and then address number, so I dont know why this might be any different..
  15. CaptainBob007

    Subquery with ORDER BY

    Hi all - I'm having a little trouble with a subquery and I'm not sure why. Here's what I'm running: SELECT DISTINCT tblPermit.PerID, tblProperty.AddNum & " " & tblProperty.AddStreet AS Address, tblPermit.Description, tblPermit.PerNum, tblProperty.AddStreet, tblProperty.AddNum FROM...
  16. CaptainBob007

    Date Formatting in SQL

    Hi all - Ok, this is a problem with a form, but I believe it stems from SQL. I have a SQL function which calculates a date and inserts it in a table using "Now()". The field on the table is set for "short date" formatting. When the record is called up later, it is displayed in a text box on...
  17. CaptainBob007

    Field-Dependent Query

    Hi - I'm not sure how exactly to classify this type of query or how to implement, but I'll try to explain what I need as best I can and hopefully somebody will understand. I have a table of complaints. Each complaint (simplified) has the following fields: CaseID Problem Complainant Notes...
  18. CaptainBob007

    Trying to populate an unbound form

    Thank you so much! Ahhhh what a difference some apostrophes make!
  19. CaptainBob007

    Trying to populate an unbound form

    Hi everybody - I'm working on populating a form in an unbound database for keeping tack of municipal vehicle stickers. I have successfully written a way to search vehicle owners (via a form) and am able to selectg the correct record and have it populate an "edit owner" form with all the...
  20. CaptainBob007

    data dependent format in listbox

    Thanks Karl - that's exactly what I wanted! Have a STAR! SQLBill - Yes I am using SQL Server backend. I've done Access for quite a while, but I'm trying to move up to SQL server now. ~Bob

Part and Inventory Search

Back
Top