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 bkrike 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 Spaniard

  1. Spaniard

    Function Evaluation in Design Time

    I am able to use the immediate window for debugging a specific global function, but I have to set a break point first. I just set it on the load event for my first form and go from there. Very cludgy and cumbersome...with all the awesome capabilities of .NET, how did this get overlooked...
  2. Spaniard

    Function Evaluation in Design Time

    I guess I'm not the only one who doesn't know...
  3. Spaniard

    Function Evaluation in Design Time

    OK, VBA spoiled me with the Locals pane of the debug window. I could evaluate functions in design time and not have to be in debug mode. VB.NET seems to have a similar tool in the Command window (Command or Immediate mode). However, whenever I try to use them, it states that "The expression...
  4. Spaniard

    Can't access New Stored Procedure in Server Explorer

    I have a local database on my machine that allows me to access the New Stored Procedure option when right-clicking Stored Procedures in Server Explorer. However, when I attempt to access same on a network server from my machine using a logon that has the appropriate settings, I only have access...
  5. Spaniard

    Convert string to date

    PankajBanga, Your Solution is great! However, if one wanted to make 08 the month instead of 10, the following slight modification accomplishes it. Dim str As String = "08102004" Dim dt As Date = New Date(str.Substring(4), str.Substring(0, 2), str.Substring(2, 2)) MessageBox.Show(dt) Both...
  6. Spaniard

    highlight text in textbox on GOTFOCUS??

    Hi Bill, You are too kind - I am only glad to help after all the help I have received from other members... Thanks, Spaniard.
  7. Spaniard

    highlight text in textbox on GOTFOCUS??

    Bill's method works if you are tabbing into the field, but if you want to highlight it when you click on it, then for that text box's On_Click event, [code]Private Sub txtYourTextBox_Click() SendKeys "{F2}" End Sub[code] Good luck, Spaniard.
  8. Spaniard

    Auto incrementing timeline

    Beetee, Thanks for responding. After several hours of brow-beating, I figured it out. I'm relatively inexperienced with coding, so it takes me a little longer to figure out how to do what I need. I can post the code if you are interested (I'm sure there is a better way to do it!). SKW
  9. Spaniard

    Incrementin Timeline

    Thanks, Bob. I figured out another way to do it, but your way gives me another, possibly better, alternative. SWK
  10. Spaniard

    Incrementin Timeline

    Sorry about the previous post w/inappropriate subject... Hi, I want a report to show a 24 hour time line with the starting value being the start time of a product run and incrementing one hour for 24 hours. Example: Product starts at 3:00 PM Timeline should look like this: 3 PM 4 PM 5 PM 6...
  11. Spaniard

    Hi, I want a report to show a 24 h

    Hi, I want a report to show a 24 hour time line with the starting value being the start time of a product run and incrementing one hour for 24 hours. Example: Product starts at 3:00 PM Timeline should look like this: 3 PM 4 PM 5 PM 6 PM 7 PM 8 PM 9 PM 10 PM 11 PM...etc Any...
  12. Spaniard

    Auto incrementing timeline

    Timer event won't do it...this is a user-initiated report and is not run regularly. This is a scheduling database and the timeline serves to show when the product is scheduled to run. If the schedule calls for the run to be from 3 PM to 5 PM, a bar fills in the specified time slot. Rather...
  13. Spaniard

    Auto incrementing timeline

    Hi, I want a report to show a 24 hour time line with the starting value being the start time of a product run and incrementing one hour for 24 hours. Example: Product starts at 3:00 PM Timeline should look like this: 3 PM 4 PM 5 PM 6 PM 7 PM 8 PM 9 PM 10 PM 11 PM...etc Any...
  14. Spaniard

    Data loss in combo box upon insert or update

    Hi all, We are experiencing intermittent data loss to Sequel 2K table. Record is being saved, but data from combo boxes is lost. This happens infrequently, but often enough to be a major concern. Has anyone else run into this? Any insight would be greatly appreciated. SWK
  15. Spaniard

    Stepping Thru List Box Results

    I probably should have said that I'm working with Access 97, so I'm not sure I can use your approach (couldn't find any help topics). A query (of two tables) is providing the results to the list box. That correlates to your SQL statement. All I'm trying to do is to compare a new date to the...

Part and Inventory Search

Back
Top