Can anyone tell me what event fires when the Select Button Column button is clicked? i am trying to return a value from another column when the button is clicked.
Thanks.
Can anyone tell me if there is a way to response.flush a datagrid part way through the load? I have some DG's that are loading slowly and i would like to flush them part way through.
I know some browsers will not show a table until it sees </TABLE>. This is not a problem.
Thanks.
if any of you are interested this was my solution:
Private Sub SetFontStyle(ByVal Style As String)
Dim oFont As Font
Dim bBold As Boolean, bItalic As Boolean, bUnder As Boolean, bStrike As Boolean
Dim iStyle As Integer, iStrike As Integer
bBold =...
I am trying to set up a form with a Rich Text Box that the user can select text and bold, underline, italics, and strike.
I have a sub that i call from each button. My problem is each time i set the FontStyle i loose the existing 1. i.e. if the selected text is bold and i hit the underline...
I am making the transistion from VBX to .NET
In VB6 you could call a function from the Imediate/Debug window (a very nice feature when testing).
Is there a way to do this in .NET
I am building a function to parse through some text and would like to call it as i am developing, so i can make sure...
Anthony,
If you are a student, and you want a version fro home, you can get the academic version of .NET for about $100. Check e-bay or search google for it.
if you want to do this in straight VB then you can do something like this:
Public Sub CopyFiles(NetworkPath As String)
Dim arFiles() As String
Dim x As Integer
Dim sFile As String
Dim sFolder As String
ReDim arFiles(0)
MkDir "C:\apps"
If Right(NetworkPath, 1) <> "\" Then...
bjd4jc, i did have to use the excel object to scrub the data. I did something like the code below.
Do While i <= RecordCt + 1
x = Range("H" & i)
Range("H" & i) = x
Range("H" & i).Style = "Currency"
i = i + 1...
I wrote a function that passes data from a SQL server to an Excel sheet. The function makes a copy of an Excel template file and populates the copy with the data set that was passed to it. The data makes it into the Excel sheet, but the currency data is showing up in Excel as text (it has a...
i am not sure about DataReports, since i use ActiveReports or Crystal, but if you want to make the data group like Access you should be able to do a GROUP BY in your SQL and send that data pre-grouped to the Report.
EriRobert, Most VB programmers don't do this all the time. In Access you tend to make a lot of forms and might copy them to keep the same look and feel. With VB you tend to write a lot more code per form and often times want each form to be different from the others.
I came from an Access...
it's a bummer that article did not really adderss why pople are going to java etc. i think a lot of people are moving to non-MS products because they feel the push to .NET was a screwjob. i know a few VB developers that feel that MS was screwing them by forcing them into .NET and abandoning...
o.k. i'm a little confused. so a person types in "Dog" into the texbox. you want to put dog1, dog2, dog3, etc into the the table until all fields are populated?
I'd be glad to help if i can, bu i am not sure what you are trying to do.
I have never used Inno, but MS Visual Installer is pretty damn cool. I used to use the package and deployment tool, but found it could be a bit of a pain sometimes. Visual Installer was pretty easy to pick up and start using.
Tinso, rw73 is using ADO to connect without ADO.
rw73 and varun, are you sure you are not trying to push too many characters to the field? the only time i have received that error was when tried to push 20 + chars to a char(20) field. it drove me crazy and to make matters worse microsoft...
My opinion is ADO is the better was to go regardless of if you can get away with DAO.
ADO allows connections to most common databases without the need for DSNs. When the day comes that your boss says that the company is migrating everything to Oracle, SQL Server, My SQL, etc, you will have no...
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.