| Thread | Last Post | Replies |
|
| Visual Studio 2002 with Framework 1.1 and Oracle | 22 Nov 2004 11:55 GMT | 5 |
I have a problem and I need to know if anyone can assist in solving it. Our database of choice is Oracle. When we attempted to do some VB.NET coding with .NET 2002 and framework 1.0, whe had problems accessing our Oracle database correctly. When we upgraded to Framework 1.1, the ...
|
| Datagrid, disable the cell programically | 22 Nov 2004 11:28 GMT | 2 |
In myDatagrid, there is 3 columns, account code, debit,credit. If the user input some particular a account code in column1 , i need to based on the contect of column1, to disable column2(debit),column3(credit) I try processcmdkey , onKeypress, onKeydown event already ( set e.handled ...
|
| Windows Message values? | 22 Nov 2004 10:47 GMT | 6 |
Could someone please direct me to a list of the windows msg values? Thanks
 Signature / Sean the Mc /
|
| Flicker when loading forms using background bitmap | 22 Nov 2004 08:52 GMT | 3 |
I have to develop a "skinned" application and I have a problem with the graphics. When a form is loaded and displayed there's aways a flicker where all the controls are located on the form. It seems like the controls erase the
|
| DownloadFile locks application | 22 Nov 2004 08:39 GMT | 3 |
I have this Class: Imports System.Net Public Class DownloadFile Private _webClt As WebClient
|
| Database wont update but getting no errors.... | 22 Nov 2004 07:51 GMT | 7 |
Not sure what the problem is here... Trying to update from a datagrid to an access database using vb.net... Its not updating the database but Im not getting any errors... Here is my code... 'OleDbUpdateCommand1
|
| how to add record programmatically to datagrid | 22 Nov 2004 06:20 GMT | 2 |
Anyone know how to add record to a datagrid programmatically? Say for example I have two textboxes in my form and a datagrid. When I click a button the value of two textboxes will be added as a new row to my datagrid.
|
| GetType(Object).GUID <- What does the GUID represent? | 22 Nov 2004 01:37 GMT | 2 |
I'm using the command GetType(MyObject).GUID to return a GUID. Is the GUID a CRC type calculation on the object, or is it a pre-assigned value on the object? I was hoping to have a way to do a CRC type calculation on an object to see
|
| Why does button text disappear when I change the button size on toolbar button? | 22 Nov 2004 00:07 GMT | 2 |
I change the size of a button on a toolbar and the button text disappears! The button is still there and can be clicked. Also, e.button.text in the click procedure still shows that the text is defined. It just doesn't display.
|
| DrawString with PrintDocument | 21 Nov 2004 23:39 GMT | 1 |
I'm making a report using a PrintDocument and I need to have some words in bold, different color, etc in the same line I think I need to use DrawString every time I want to change the font properties, but how do I draw the next word in front of the last word I
|
| Late binding problems when upgrading from VB6 | 21 Nov 2004 22:14 GMT | 3 |
In my VB6 code I have added properties to several forms to change the form's behaviour depending from where it is called and often modified these properties in a generic function like this example: Private Sub InsertForm(frmInsert As Form, nLabelSpace As Integer)
|
| Help! | 21 Nov 2004 21:49 GMT | 2 |
I have a command button on FormA whose click event is coded as: If foSearchForm Is Nothing Then foSearchForm = New frmSearchInfo(Me) End If
|
| balloon tip on a button? | 21 Nov 2004 19:53 GMT | 2 |
I'm using the sendmessage technique to get a balloontip to appear on text boxes, but I can't get it to appear on anything else. Is there any way that I can get it to appear on something like a button? At the moment I'm having to hide a textbox behind a button to get it to ...
|
| Problems with the contructor/new() method in the subclass | 21 Nov 2004 19:41 GMT | 1 |
I've got a class as follows, PUBLIC CLASS BaseClass Sub New() End Sub
|
| multipart download using socket | 21 Nov 2004 19:31 GMT | 1 |
i need to download a binary file via a http server using the sockets class. If the file has more than one mirrors, i plan to downloads random parts of the same file from different mirros, to be combined at the end. Any suggestions for the best approach?
|