| Thread | Last Post | Replies |
|
| Send to VB.NET program? | 26 Oct 2004 22:40 GMT | 3 |
I have a program that I can drag and drop files to. I would also like to add this to the sendto menu so that users could right click a file and choose to "send to" my program. My only problem is I have no idea what event to handle in my program to accept the "send to" action.
|
| Random number | 26 Oct 2004 22:08 GMT | 3 |
How to generate random number between range of integers? TIA
|
| print richtextbox | 26 Oct 2004 21:59 GMT | 2 |
how to print content of richtextbox?
|
| How to Decrypt | 26 Oct 2004 21:57 GMT | 2 |
Hi I am using the follwoing method to encrypt a passowrd. But I like to decrypt back to original string. How would i do that? Thanks
|
| Moving in cells in datagrid problem! | 26 Oct 2004 21:57 GMT | 3 |
I have made my application move to the next cell on TAB and Enter and it works fine for me and all the other computer I 've tested on in the office. When deploying at the customer.. suddenly have a strange problem. When standing in the last cell on a row and pressing TAB och Enter ...
|
| Moving Wndows | 26 Oct 2004 21:54 GMT | 2 |
How can I move a Window without a caption bas. Would like to have a label or picturebox etc. and move the window by this label or picturebox. Thanks
|
| Right Align Menu Shortcuts | 26 Oct 2004 21:53 GMT | 2 |
Hi, how do you make all shortcut keys (Ctrl+V,Ctrl+C) aligned to the right like in Internet Explorer or any MS applications? What I'm doing now to align them all to the right is to add spaces but this is an ugly solution because some wont line up properly.
|
| Problem Formatting Date | 26 Oct 2004 20:42 GMT | 3 |
I am using VB.NET - VSNET 2003 and accessing data from an SQL Server. I am trying to convert a datetime field retrieved from the DB to a format like "MM/DD/YYYY" - I want results like "10/28/2004". I am trying the code: CDate((rdr1.Item("Date"))).ToString("MM/DD/YYYY")
|
| What's wrong with this code? | 26 Oct 2004 20:11 GMT | 6 |
I have two forms, Form1 and Form2. Form1 has a command button that will open Form2. There can only be one Form2 open at any time. Here's my code: Public Class Form1
|
| Load Image Without Locking File | 26 Oct 2004 19:38 GMT | 2 |
I want to load a multipage TIFF image into memory as an Image object but I read that the FromFile method locks the file. Can I load this into a stream, close the physical file then manipulate the image there? Thanks Scott
|
| Combobox.SelectedIndexChanged | 26 Oct 2004 19:37 GMT | 1 |
I use a AddHandler statement in the load event of a form to assoicate a routine with a combobox. When I populate the form, I select the approiate value from the combobox by using combobox.selectedvalue = value. The weird thing is sometimes this causes the assoicated routine to ...
|
| find largest value in a column in DataSet | 26 Oct 2004 19:07 GMT | 2 |
I would like to know is there a function in datacolumn that can get the largest value in a column in a dataset? otherwise what is the best way to do it? thanks,
|
| .txt to memory | 26 Oct 2004 18:51 GMT | 3 |
I have a file that contain 100K lines. I want to charge all these lines to my application memory. I've been using a StreamReader object to read line by line and process to my app memory, but it is so slow, more than 1.5 min.
|
| Dropdown Problem | 26 Oct 2004 18:28 GMT | 1 |
I have a problem: i want a full table of a Access DB in a Dropdown list. In the database, there is one table with index, name, telephonenumber. I have the OleDB Adapter & Dataset, but now i dont know how i can get this stuff into the dropdown, and i also dont know, if the dropdown ...
|
| single instance base class | 26 Oct 2004 18:20 GMT | 1 |
I want to have a single instance of a base class that all the child classes inherits from. The base class is going load data from text files and this only needs to be done once.
|