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 strongm 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. programmerbrian

    Urgent! Datawindow disappears when a column is added

    Hi There, I'm modifying an application that has, among other things, a window object with a datawindow object sitting on it(no biggie). When I add a column to the DW object in the DW painter, everything looks good. I can preview the DW and it does exactly what I want it to do. The modified...
  2. programmerbrian

    PB7 - Why doesnt setFilter work twice in a row?

    I thought that sharing the var was the problem too, but two different vars didnt help. I'm going to try to use the itemfocuschanged event, and or the getcurrentcolumn function dynamically filter which ever DDW that has been given focus. Works good with message boxes. :) Thanks for looking at my...
  3. programmerbrian

    PB7 - Why doesnt setFilter work twice in a row?

    I have a data window with multiple DDW's. Some of the display values should only show for historical records. When the user created a new record, Certain endated items should not appear and thus the user will not be able to select them. I thought that the solution would be to us the setfilter...
  4. programmerbrian

    PB7 - how to disable toolbar buttons at runtime

    Thanks, works great. The menuId was the missing link.
  5. programmerbrian

    PB7 - how to disable toolbar buttons at runtime

    Hello, I'm wondering how to dot notate my way to a toolbar button's properties (specifically Enable) from a window event. When an event is triggered in my window, I disable controls in the window, but I also want to be able to disable toolbar buttons. The window is a sheet in an MDI. Thanks in...
  6. programmerbrian

    Looking for an online tutorial or reference: going from vb6 to .net

    Hello I've used vb 6.0 quite a bit and would like to get into . net. Does any one know of any site offering free tutorials, to get me up to speed on whats different? Thanks in advance
  7. programmerbrian

    Memory usage

    Also, you might want to eliminate any variant data types you might have, or convert any large arrays full of static(unchangeing) data to sequential files.
  8. programmerbrian

    Memory usage

    A good debugging technique for a hidden problem like this is to put msgbox functions in your code and to compile it. For instance, your saying that your error is occuring during loading. In your form load, first line, put MsgBox "Starting form load", vbOKOnly, "Debugging&quot...
  9. programmerbrian

    How to search for record in Access before update?

    Ever think of using recordsets? Dim adoRecordset As New Recordset adoRecordset.Open "Select Partnum,BilletL,BodyL,OAL,BilletD,FlangeD,BodyD,BoreD,Hole, etc. from MoriSeikiHub WHERE Partnum = 12345", databasename, adOpenStatic, adLockOptimistic adoRecordset.Fields(BilletL) = Text1...
  10. programmerbrian

    ref cursors, my only option?????

    Hello, I have to turn a very large sql stmt. into a stored procedure for use in a CR 8.0 report. The existing report takes forever to run, a lot of processing time is spent on the client side formatting and grouping the data. In a previous stored procedure I grabbed my data into a cursor...
  11. programmerbrian

    how do I create a phone number mask

    Thanks, both replies were very helpful
  12. programmerbrian

    how do I create a phone number mask

    how do I create a phone number mask in a text box to look like ( ) - filled =>(123)123-1234? Also, any suggestions of the easiest way to extract the numbers from the mask without having to use all of the string functions? Thanks a lot!
  13. programmerbrian

    Want to populate a datagrid with a select stmt.

    Hello, I'm looking for a way to display some information from a select stmt, 3 coloumns using a recordset. I tried to do this with a data grid: dgdOne.DataSource = adoRecord.open"select col1, 2, 3 from table", DB,static,pessimistic It doesnt work. I know that you need to connect to...

Part and Inventory Search

Back
Top