| Thread | Last Post | Replies |
|
| how to fill datagrid faster | 12 Nov 2004 12:57 GMT | 2 |
I have already done some code to fill the datagrid. my problem is that the fill method is too slow after executing my code. here is the scenario. i have a parent/child form. all is datagrid. one datagrid is a parent
|
| Please help me clarify these byVal vs. byRef subtleties | 12 Nov 2004 11:50 GMT | 2 |
Please let me know if I am interpreting this correctly. I've done a little testing of the difference between passing parameters byVal and byRef, and the results were slightly non-intuitive, as I expected. I haven't seen this behavior explained precisely in the .net world yet,
|
| Adding a background image that resizes along with the MDI form. | 12 Nov 2004 11:05 GMT | 4 |
I've been searching around for a simple way to display a background image in my MDI form's client area. I want to be able to load the image from file on start up and have it resize as the MDI form is resized.
|
| Can anyone help a newbie with run time errors | 12 Nov 2004 10:02 GMT | 1 |
I'm not sure if this group helps newbies with programs but i haven't looked at vb in like 3 or 4 years until this semester and now its getting hard and I have a few errors in a program and would appreciate any help I could get. I am designing a program that takes
|
| Combobox Data/Value Member Question | 12 Nov 2004 09:07 GMT | 1 |
I have a combobox in a winform set up with the following code: da = New OracleDataAdapter("select curr_code || '=' || desc As curr_desc, curr_code from tablename", Conn) da.Fill(ds, "currency_code")
|
| AppUpdater | 12 Nov 2004 08:33 GMT | 1 |
Can anyone tell me if the appupdater component has any problems when you use a module to launch your main application that contains the form that will actually do the updating? I have tested this component of some very simple applications and it worked right every time. Then ...
|
| question about resizing form | 12 Nov 2004 08:21 GMT | 2 |
I am trying to create a form that if the form is manually resized, the textbox will get resized proportionally to the form. thank
|
| how to pull record(s) from other adapter | 12 Nov 2004 08:03 GMT | 2 |
I'm wondering if it is possible to pull a record(s) from an adapter and put it on a datagrid based on the criteria on the form. example: sqldataadapter1 contains "course" table. and i want to pull 1 or more
|
| Outlook Security Prompt | 12 Nov 2004 07:11 GMT | 8 |
Is there anyway to get around the security prompt from Outlook when using the object in a vb.net winforms app? I want to be able to load the contacts lists from Outlook but each time it access it you get the security warning.
|
| Reading LARGE image files for web output | 12 Nov 2004 05:24 GMT | 2 |
I'm working on a web app which will display LARGE tiff image files (e.g files 10-20+ mb). Files are hidden from users direct access. For other, smaller image files I have used FileStream to read in a file in a single Read and so my quesitons are:
|
| Converting Dataflex database | 12 Nov 2004 03:35 GMT | 6 |
I have a big problem. I hope this post is not too long winded. I have been asked to write a new program for a small company that has their data in a very old version of Dataflex. It is a DOS based program and the company does not have the source code or even all the utilitles ...
|
| Storing Secrets | 12 Nov 2004 02:46 GMT | 3 |
When using System.Security.Cryptography to Encrypt/Decrypt information, I need to store two values - the Initialization Vector and the Encryption Key. The are both needed in Encryption/Decryption process. Where I can store them securely, because if they are compromized, everyone
|
| replacement for FileListBox... | 11 Nov 2004 23:07 GMT | 3 |
Is there available DotNet code to replace the VB6 FileListBox and DirListBox, keeping the original appearances? Thanks in advance for any help
|
| MSDN subscriptions. | 11 Nov 2004 21:42 GMT | 3 |
Just a quick question : If i subcribe today MSDN Professional it include vs.net pro 2003, when vs.pro 2005 released will they send the new version for free?
|
| How to limit data entry to numbers only in combobox | 11 Nov 2004 20:52 GMT | 5 |
I have a combobox where a user can select a zoom factor or enter a zoom factor. I tried to limit entry into the combobox to numbers only by catching the keydown event and setting e.handled = true if any non number
|