Forum: Windows NT / 2000 / XP / 2003 16 Days Ago |
| Replies: 2 Views: 191 |
Forum: VB.NET 17 Days Ago |
| Replies: 1 Views: 167 |
Forum: Windows NT / 2000 / XP / 2003 18 Days Ago |
| Replies: 2 Views: 191 Windows Server 2003 x64 (File Shares Freeze) 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 18 Days Ago |
| Replies: 1 Views: 167 |
Forum: Windows Servers and IIS Jul 7th, 2008 |
| Replies: 2 Views: 298 Re: Exchange 2003 missing 1/2 mail 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 from a... |
Forum: Windows Servers and IIS Jul 7th, 2008 |
| Replies: 2 Views: 298 Exchange 2003 missing 1/2 mail 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: 1 Views: 773 |
Forum: Windows x64 Edition May 30th, 2008 |
| Replies: 2 Views: 1,529 Re: 8GB of RAM on Windows Vista 64x 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: 299 Thermal Printers - (Zebra, TEC) 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: 308 Re: Sliding Form 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: 389 Re: Data Manipulation From File 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 RunningTally... |
Forum: ASP.NET May 1st, 2008 |
| Replies: 2 Views: 331 Re: Chat question 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: 497 Re: Uploading files from client to server 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... |
Forum: VB.NET Apr 23rd, 2008 |
| Replies: 4 Views: 600 Re: Copy from Combobox to other Combobox 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)
Next |
Forum: VB.NET Apr 23rd, 2008 |
| Replies: 2 Views: 633 Re: command line parameters part 2! 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: 117 Re: Help 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: 775 Re: DateTimePicker 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: 291 Re: constraints 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 person... |
Forum: ASP.NET Apr 17th, 2008 |
| Replies: 1 Views: 711 |
Forum: VB.NET Apr 16th, 2008 |
| Replies: 5 Views: 779 |
Forum: ASP.NET Apr 16th, 2008 |
| Replies: 2 Views: 311 |
Forum: ASP.NET Apr 14th, 2008 |
| Replies: 1 Views: 314 Re: Grid View 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: 291 Re: constraints 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 the... |
Forum: VB.NET Apr 11th, 2008 |
| Replies: 2 Views: 366 |
Forum: VB.NET Apr 7th, 2008 |
| Replies: 3 Views: 623 Re: DataGridView integer problem? 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 table... |
Forum: VB.NET Apr 5th, 2008 |
| Replies: 2 Views: 401 Re: Snapping Forms together Try'In the forms event (Me.Move) of Form1
If Locked = True Then 'Locked as Boolean (Global)
Form2.Left = Me.Left + Me.Width
Form2.Top = Me.Top
End If |
Forum: VB.NET Apr 3rd, 2008 |
| Replies: 6 Views: 308 Re: Newbie about Database I would use Microsoft SQL Express (FREE) as the database and Microsoft SQL Server Management Studio Express (FREE) to manage and setup the database
They are both downloadable from Microsoft's web... |
Forum: VB.NET Apr 3rd, 2008 |
| Replies: 1 Views: 380 DataGridView with SubHeaders Hi,
Is it possible to create merged headers and/or sub headers in a datagrid
i.e. |Column A | Column B | Column C|
| SH1|SH2 | SH1|SH2 | SH1|SH2 |
| 1 | 6 | 8 | 12 | 6 | 8 |
| 3 | 7 | ... |
Forum: ASP.NET Mar 14th, 2008 |
| Replies: 5 Views: 1,550 Re: Writing each Row of a Dataset into XML files The only way i know how to do it with only one instance of a table would be to only download one record from your database at a time, into a DataTable and then do dt.WriteXML
This would require many... |
Forum: ASP.NET Mar 14th, 2008 |
| Replies: 5 Views: 1,550 |
Forum: VB.NET Mar 13th, 2008 |
| Replies: 2 Views: 1,808 |
Forum: Windows NT / 2000 / XP / 2003 Mar 13th, 2008 |
| Replies: 4 Views: 606 Re: Can't connect to a web site Hi,
Good to here
The reason could be that the DNS has an old record that its using. You can fix this by clearing out you DNS.
In a Command Prompt typeipconfig /flushdns |
Forum: Windows NT / 2000 / XP / 2003 Mar 11th, 2008 |
| Replies: 4 Views: 606 Re: Can't connect to a web site Can you ping the sites?i.e.
ping www.google.co.uk
If you can ping them try connecting to the sites by the IP address and not the URL.
If you can't ping them get the IP from one that can connect and... |
Forum: VB.NET Mar 11th, 2008 |
| Replies: 2 Views: 408 |
Forum: VB.NET Mar 9th, 2008 |
| Replies: 1 Views: 1,916 |
Forum: ASP.NET Mar 6th, 2008 |
| Replies: 3 Views: 659 |
Forum: Website Reviews Jan 30th, 2008 |
| Replies: 4 Views: 556 Re: Source Code - Review Hi Steve,
Thanks for looking at the site.
The Code Navigation system is linked to a SQL database and shows the last 10 Code Snippets in the selected category
The Forum show 10 threads per page
I... |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 3 Views: 1,235 |
Forum: Website Reviews Jan 27th, 2008 |
| Replies: 4 Views: 556 Source Code - Review Please could you have a look at my site (http://www.taylorsnet.co.uk)
I have just re-built it and would like some comments
It is a Source Code Information Site. |