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...
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...
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...
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...
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
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.
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"...
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...
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...
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!
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.