Forum: Windows Software Aug 22nd, 2009 |
| Replies: 0 Views: 459 Hi,
Please note: The question is at the bottom of the post
Background:
The e-mail server is exchange 2007 server.
I have a customer that has requested that we host a push mail account... |
Forum: ASP.NET Jul 14th, 2009 |
| Replies: 0 Views: 225 I am using Microsoft Sharepoint Designer 2007 to create a page from a list.
I need to retrieve all but the newest record and display them.
Any ideas?
Pete |
Forum: VB.NET Jun 13th, 2009 |
| Replies: 5 Views: 2,965 To do this I would (and have) used a datatable
You will need to import System.Data
Dim dt As New DataTable
'Add the columns to build the file list
dt.Columns.Add("FilePath",... |
Forum: VB.NET Apr 8th, 2009 |
| Replies: 1 Views: 733 It was caused by a dll I had written.
The dll was set to Windows Mobile 6 Standard and The Program was set to Windows Mobile 6.1 Pro
I removed the dll added the project found the issue that... |
Forum: VB.NET Apr 6th, 2009 |
| Replies: 1 Views: 733 I have been working on a project using Visual Studio.Net 2005 and Windows Mobile 6.1
After several builds and installers it has started throwing up an error during the build stage.
Any help... |
Forum: Windows Vista and Windows 7 Feb 13th, 2009 |
| Replies: 1 Views: 326 Does anybody know the location of the LOCAL sync cache? |
Forum: Windows Vista and Windows 7 Feb 12th, 2009 |
| Replies: 1 Views: 326 Hi,
Our "My Documents" are redirected to our file server but vista keeps a synchronized copy of all "My Documents" files on the laptops.
Our file server had the "Allow this folder to be... |
Forum: ASP.NET Dec 28th, 2008 |
| Replies: 1 Views: 962 I have found the problem.
I am using an Ajax UpdatePanel and this was causing the issue.
I have added the Save Button to the NON-async triggers list to stop the issue. |
Forum: ASP.NET Dec 28th, 2008 |
| Replies: 1 Views: 962 Hi have a form with a Multiline Textbox and a Span
I save the text and load into a <span>
lblSpan.InnerHTML = txtMLBox.Text.ToString.Replace(Environment.NewLine, "<br/>")
The Span looks fine... |
Forum: Windows NT / 2000 / XP Dec 22nd, 2008 |
| Replies: 0 Views: 826 Hi
We have got a single instance of SQL Server 2005. The latest service pack 3 has been installed today. Since installing SQL Server two months ago we are finding that SQL Server times out if you... |
Forum: VB.NET Dec 16th, 2008 |
| Replies: 2 Views: 5,131 Thanks for the post but since the question was asked on Jun 15th, 2007 I have found an easy answer
Protected dvMyData as New DataView
ThendvMyData.Table = MyDataTable
dgData.DataSource =... |
Forum: VB.NET Nov 30th, 2008 |
| Replies: 2 Views: 2,036 In the forms properties set KeyPreview to True and then use the Key subs that the form supplies
Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs)... |
Forum: Windows NT / 2000 / XP Oct 18th, 2008 |
| Replies: 1 Views: 1,721 I had this issue with my Vista when first installing it.
If you wait it will eventually show the screen.
I have no idea how long it takes, but with mine I left the room and came back about 5... |
Forum: Windows Vista and Windows 7 Oct 18th, 2008 |
| Replies: 2 Views: 423 The Logs could be hidden files.
Open the folder where the logs should be.
Press the "Alt" key to show the menu bar.
Select "Tools" and "Folder Options".
Under the "View" Tab Select "Show Hidden... |
Forum: VB.NET Oct 18th, 2008 |
| Replies: 1 Views: 1,141 The database connection string should be like this
Dim conn As New SqlConnection("Data Source=SERVER_NAME;Initial Catalog=DATABASE;uid=USERNAME;pwd=PASSWORD;")
If in your code you will be... |
Forum: Windows NT / 2000 / XP Aug 13th, 2008 |
| Replies: 2 Views: 1,034 any ideas?
My users are starting to complain |
Forum: VB.NET Aug 12th, 2008 |
| Replies: 1 Views: 1,691 Has anyone got any ideas as this is causing problems for the users.
Thanks |
Forum: Windows NT / 2000 / XP Aug 11th, 2008 |
| Replies: 2 Views: 1,034 I have a Windows Server 2003 x64 file server and every few days i have to reboot the server as i cannot access the shares from the network.
After a reboot the problem goes away for a few days then... |
Forum: VB.NET Aug 11th, 2008 |
| Replies: 1 Views: 1,691 I have a Crystal Report that shows images using a SQL Database with the image paths
When viewing the images in a report everything is fine untill you get to a page in the report when the error... |
Forum: Windows Servers and IIS Jul 7th, 2008 |
| Replies: 2 Views: 970 As all the mailboxes have been migrated across to the new server the old server is empty.
The mail store on the new server is at 13Gb
Running tests from my personal E-Mail account and... |
Forum: Windows Servers and IIS Jul 7th, 2008 |
| Replies: 2 Views: 970 We have just installed a new exchange server into our domain, moved all the mailboxes to the new server and then changed the IP address of the old server so that we could move the new servers ip into... |
Forum: VB.NET Jul 5th, 2008 |
| Replies: 2 Views: 7,071 Yes you can filter the dataset table rows.
Use the select commandDim Row as Datarow
For Each Row in Dataset.Tables(0).Select("Column = 'Find Me'")
MsgBox(Row("Column").ToString)
Next |
Forum: Windows NT / 2000 / XP May 30th, 2008 |
| Replies: 2 Views: 4,041 Sorry for the delay.
x86 (32bit) operating system are limited to 4Gb of memory (3.5Gb RAM + 500Mb Other memory)
x64 (64bit) operating system do not have this limit problem and will address all of... |
Forum: VB.NET May 30th, 2008 |
| Replies: 1 Views: 1,095 I have a project that requires a barcode and other information to be printed onto a label using a Thermal Printer (i.e. Zebra, TEC)
I have a print routine that will print plain text using "Generic... |
Forum: VB.NET May 18th, 2008 |
| Replies: 2 Views: 929 Add a timer to your form and add some code likeIf Form2.Left < Form1.Left + Form1.Width Then
Form2.Left += 10
End If |
Forum: VB.NET May 2nd, 2008 |
| Replies: 2 Views: 832 I would do one of the following:
Change this line from:SaveTextToFile(timeSpentTxt.Text, "C:\Docum...
To this to save ALL the entered values:'Create this as a Form Level Global
Private... |
Forum: ASP.NET May 1st, 2008 |
| Replies: 2 Views: 618 Try using a Timer to refresh the page and AJAX to just reload the part of the page that needs updating and also to stop the page from flashing during the refresh. |
Forum: ASP.NET Apr 30th, 2008 |
| Replies: 2 Views: 2,011 Add a FileUpload control to your page
<asp:FileUpload ID="FileUpload" runat="server" Width="408px" />
And then add this code to your upload button'Save uploaded file to server... |
Forum: VB.NET Apr 23rd, 2008 |
| Replies: 4 Views: 2,019 You can't just do a cbo1.items = cbo2.items
You will need to do somthing like:Dim Value as string 'Im not sure if this should be a string
For each Value in cbo2.Items
cbo1.items.add(Value)... |
Forum: VB.NET Apr 23rd, 2008 |
| Replies: 2 Views: 1,907 When you clicked "Publish Now" under the Publish tab it builds all the files, including one called something like "windowsApplication1.exe.deploy". This is the exe file but VB.NET has added the... |
Forum: VB.NET Apr 21st, 2008 |
| Replies: 1 Views: 378 Look into the commands with in System.Data.OleDb
System.Data.OleDb.OleDbCommand
System.Data.OleDb.OleDbConnection
System.Data.OleDb.OleDbDataAdapter
... |
Forum: VB.NET Apr 19th, 2008 |
| Replies: 6 Views: 2,116 You could store the data in a database, XML files or just you the My.Settings area
The My.Settings area is setup from the "My Project" List and it is a left side tab called Settings
The... |
Forum: VB.NET Apr 18th, 2008 |
| Replies: 3 Views: 719 OK
For a NumberUpDown box in the Properties screen (Lower Right) you can set a value called Maximum and Minimum or do it in codenumWidth.Maximum = 20
numWidth.Minimum = 5
This will stop the... |
Forum: ASP.NET Apr 17th, 2008 |
| Replies: 1 Views: 2,513 Look at creating a MasterPage
The details entered onto a masterpage will show on ALL pages |
Forum: VB.NET Apr 16th, 2008 |
| Replies: 5 Views: 2,389 I would use a SQL INSERT INTO Statment instead of the objDataAdapter.Update
Have a look at http://www.taylorsnet.co.uk/SourceCodeDetail.aspx?SourceID=5
It shows how to use INSERTs and UPDATEs
... |
Forum: ASP.NET Apr 16th, 2008 |
| Replies: 2 Views: 593 First i would try using standard DataTables as it is possible that the server has not got the prerequisites installed for H2C2DataLayer.h2c2DataSet.topicsDataTable
Try
Dim SQLTable as new... |
Forum: ASP.NET Apr 14th, 2008 |
| Replies: 1 Views: 618 I would use SQL Select Statments to select the correct data based on a (WHERE) criteria
See "VB.NET" > "How to use SQL" on or <snipped>DaniWeb Code Snippet 696 |
Forum: VB.NET Apr 14th, 2008 |
| Replies: 3 Views: 719 If you are using number then the NumberUpDown control can be used as it has a property for min and max allowed plus it only allows numbers
If you are using textboxes then you will have to check... |
Forum: VB.NET Apr 11th, 2008 |
| Replies: 2 Views: 1,121 Try looking into the Microsoft XNA Framework
It works with VB.NET and C# |
Forum: VB.NET Apr 7th, 2008 |
| Replies: 3 Views: 1,447 Where is the problem?
If the problem is withDim c As Integer = DGVShops.Item(0, i).ValueThen try using CTypeDim c As Integer = CType(DGVShops.Item(0, i).Value, Integer)
If the problem is the... |