Forum: VB.NET Jun 25th, 2009 |
| Replies: 1 Views: 516 Hello All,
I haven't posted a question in sometime, im hoping this is where all my previous help pays off :P
Basically starting a newish project which must be written in VB.Net (great) but I am... |
Forum: VB.NET Sep 17th, 2008 |
| Replies: 1 Views: 483 Integrate an ASP.NET WebService into your application. Webservices provide a much better means of transferring/receiving data externally via the web than simply posting values to a page, the vb.net... |
Forum: VB.NET Aug 19th, 2008 |
| Replies: 2 Views: 15,336 Below is code i wrote as a wrapper for the microsoft office interops. It provides ways to establish the instance of the application and cleanup any remaining office processes after use.
Note the... |
Forum: VB.NET May 13th, 2008 |
| Replies: 1 Views: 2,663 Do you have this data in date variables or as strings ?
ill presume its a string if it isnt skip the first part.
Dim totalTime As New TimeSpan(0, 0, 0) ' Declare a timespan outside the loop... |
Forum: VB.NET Nov 19th, 2007 |
| Replies: 0 Views: 7,838 This is a very brief overview of how to achieve an ON-THE-FLY creation of an appointment in the clients outlook calendar. This will not force the user to add it to there calendar but gives them the... |
Forum: VB.NET Aug 20th, 2007 |
| Replies: 8 Views: 6,854 if you want the quick and rough way. add your progress bar to the form (dynamically would be best as you may have more than one row) then adjust its position relative to the listview. if you have... |
Forum: VB.NET Aug 16th, 2007 |
| Replies: 1 Views: 8,141 im pretty sure this is because the user control wont have focus as it is simply a control whereas the MAIN FORM will have focus. Simplest way i can think of doing this is to put your methods to... |
Forum: VB.NET Jul 9th, 2007 |
| Replies: 1 Views: 3,431 im guessing your db is set up correctly with primary keys etc. if so just pass your primary key to your form if you are updating the record else if not. create a recordset add your user entered... |
Forum: VB.NET Jun 21st, 2007 |
| Replies: 6 Views: 1,415 easiest way is to store your data in a multidimensional array on the page load.
then when a user presses a button i.e. next record just increment the array value. the same idea is used for getting... |
Forum: VB.NET Jun 20th, 2007 |
| Replies: 6 Views: 1,415 this code is under next button click ?
have you checked what is stored in maxrws ?
what integer value does it contain ? |
Forum: VB.NET Jun 19th, 2007 |
| Replies: 3 Views: 5,724 an application that suggests final year projects maybe ?
really pick something youll enjoy (you will do a much better job) |
Forum: VB.NET Jun 16th, 2007 |
| Replies: 2 Views: 6,517 below is a very simple encryption class which shows how to encrypt sensitive data (very simply) this example converts a string to hexadecimal form and back again with some simple error handling.... |