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

  • Users: HiBoo
  • Order by date
  1. HiBoo

    How to code URL string to handle three deployment environments?

    Geoff, I must have had my blinders on yesterday. Thanks for replying again and clueing me into the obvious... at first I didn't recognize , "Globals!ReportServerUrl". With a fresh pair of goggles on this morning I've implemented your solution with 100% success. I had to modify the code a bit...
  2. HiBoo

    How to code URL string to handle three deployment environments?

    Thank Geoff but I don't think this will do what I'm looking for. The function requires an argument value. That value is what I'm looking for. I think I understand what the function does but I've already got that functionality by using a report variable. The problem is that I have to update...
  3. HiBoo

    How to code URL string to handle three deployment environments?

    I'm using RS2008 R2. I've created a report that has Action:Go to URL expressions. The expressions link to another report detail that render directly to Excel and work just fine. The issue I'm having is coding the expression to work in all three of our deployment environments. We have a...
  4. HiBoo

    Locking a single cell on a form in a table

    You'll want to look at setting conditional formatting properties of the Age field with your criteria. The use of continuous forms complicates what you're trying to do as any other code based solutions will want to enable/disable each row of Age, not just the row you're on.
  5. HiBoo

    I need help creating Helper Class

    Exactly... that's why I'm trying to see if there is a more dynamic way to do this. As a developer I know I can navigate the tableDefs collection and pull out the data I want from the tabledef objects in that collection. But let's assume I'm not a developer... what makes more sense; declaring...
  6. HiBoo

    I need help creating Helper Class

    Hi Majp, thanks for the reply. I know this isn't really a practical or typical thing to do. I'm just trying to see what can be done with classes. The thing I'm trying to get at is the drop lists from the object... or intellisense. I want to see the tables in the database appear as a drop...
  7. HiBoo

    I need help creating Helper Class

    I'm not certain this can be done so I'm posting the question to see if anyone can respond with a possible solution. Since describing what I want to do is somewhat confusing I'll try to define it with an example. Here is what I want my code to look like when using the Helper Class: Dim...
  8. HiBoo

    How to display Icons in a Datagridview column?

    Thanks jebenson and SHelton. Using code referenced from the link, I linked again to "How to: Customize Data Formatting in the Windows Forms DataGridView Control" at http://msdn2.microsoft.com/en-us/library/z1cc356h.aspx. After modifying a bit of the code I was able to accomplish what I needed...
  9. HiBoo

    How to display Icons in a Datagridview column?

    I've researched the heck out of this one and cannot find a solution using the DataGridView control. Using VS2005 I'm trying to display one of two Icons in a datagridview control column based on the boolean value of the columns row data. The data source is based on a Person table with a Name...
  10. HiBoo

    How to use MSWord toolbar menu item in new .NET app?

    I've ended up just creating toolbar buttons and set the background color to display it visually. Not the solution I'd have liked but will work for now. Again, if anyone can come up with a better solution or knows how to incorporate an existing toolbar item into another app I'd like to hear...
  11. HiBoo

    How to use MSWord toolbar menu item in new .NET app?

    I'm not certain if this can be done so I'm wondering if anyone has been able to do this. I want to use the Highlight (No Highlight) toolbar menu item in my application. It's found in MS Word, under the Formatting toolbar. When selected it allows the user to select one of several color...
  12. HiBoo

    Help With System.Security.Cryptography

    Mastakilla, do you mean a constant value for the Key and IV values? Would this not compromise the security of the encryption as a hacker could retrieve the constant values if stored in the code. The TripleDESCryptoServiceProvider randomly generates a Key and IV value when the CreateEncryptor()...
  13. HiBoo

    Help With System.Security.Cryptography

    I'm new with .NET and trying to figure out the use of encryption. I've created an app that utilizes XML as a data source and I want to learn how best to encrypt the xml file. What I'm missing in this code is the ability to shut the application down and run it again later without losing the...
  14. HiBoo

    How To Copy Excel rows to new worksheets...

    I've got a weird problem to address and after numerous attempts trying to solve this using Visual Studio 2005 I've nearly given up. Please note I am a beginner to VB.NET. Problem Defined: Given an .xls file containing contact data from MS Outlook (Export the contact list to an excel file). I...
  15. HiBoo

    Adding "All" to combo box - using with query

    In the reports source query you're using a filter to limit the data thats being returned. That filter is Form![ReportDialog].....spot. Now keep in mind that "....spot" is not valid code and you're of course have to modify it to refer to an actual control on the form that's open. Lets assume...
  16. HiBoo

    Button chabge reports based on a Combo

    Your code is changing the filter of the report "Quote" and not the report name itself. Is the value of the combo box a report name or a field value to be used as a filter in the report called "Quote"? If like you ask, the goal is to open one of a variety of reports (ReportA OR ReportB OR...
  17. HiBoo

    Adding "All" to combo box - using with query

    Another suggestion is to use the REPLACE function in your report. Change Form![ReportDialog].....spot to Replace(Form![ReportDialog].....spot,"<All>","*") The resulting criteria is "*" instead of "<All>" so instead of returning nothing your query will return all records.
  18. HiBoo

    How to calculate time difference excluding &quot;Off&quot; hours?

    So this is what I've come up with so far as a solution to my problem. I've since changed the return value to return a REAL number representing the number of hours elapsed. I get this number from dividing the total calculated elapsed seconds by 60 to get minutes and then by 60 again to get...
  19. HiBoo

    How to calculate time difference excluding &quot;Off&quot; hours?

    Thanks Bob, I think this is an excellent start. Actually it is possible for either of the start or end date parameters to fall within the "off" hours. Say for example the start time was at 03:30:00 and the end date was at 12:00:00 on the same day. The result should be 02:00:00 because the...
  20. HiBoo

    How to calculate time difference excluding &quot;Off&quot; hours?

    I need some help creating a function that will return a string formated like hh:mm:ss. The function will have two parameters and is set up as follows... Create Function ftnGetElapsedTime(@x_StartDate DATETIME, @x_EndDate DATETIME) Returns CHAR(08) The business logic excludes "Off" hours in...

Part and Inventory Search

Back
Top