User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 397,767 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,486 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 153
Search took 0.02 seconds.
Posts Made By: ptaylor965
Forum: Windows NT / 2000 / XP / 2003 16 Days Ago
Replies: 2
Views: 191
Posted By ptaylor965
Re: Windows Server 2003 x64 (File Shares Freeze)

any ideas?

My users are starting to complain
Forum: VB.NET 17 Days Ago
Replies: 1
Views: 167
Posted By ptaylor965
Re: Request could not be submitted for background processing

Has anyone got any ideas as this is causing problems for the users.

Thanks
Forum: Windows NT / 2000 / XP / 2003 18 Days Ago
Replies: 2
Views: 191
Posted By ptaylor965
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
Posted By ptaylor965
Request could not be submitted for background processing

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 pops...
Forum: Windows Servers and IIS Jul 7th, 2008
Replies: 2
Views: 298
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
Re: Can we Filter DataSet.Table rows collection

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 x64 Edition May 30th, 2008
Replies: 2
Views: 1,529
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
Re: how to add header and footer in my web page

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: 779
Posted By ptaylor965
Re: Need help for adding record to database using vb.net

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

The...
Forum: ASP.NET Apr 16th, 2008
Replies: 2
Views: 311
Posted By ptaylor965
Re: Data Class works on local debug, but not on hosted server.

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 DataTable
Forum: ASP.NET Apr 14th, 2008
Replies: 1
Views: 314
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
Re: .NET C++ 3D Games

Try looking into the Microsoft XNA Framework

It works with VB.NET and C#
Forum: VB.NET Apr 7th, 2008
Replies: 3
Views: 623
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
Re: Writing each Row of a Dataset into XML files

Hi,
Try Dim dtXML As New DataTable
Dim dtData As New DataTable
Dim dtRow As DataRow
Dim dtXMLRow As DataRow
Dim XMLFilename As String

...
Forum: VB.NET Mar 13th, 2008
Replies: 2
Views: 1,808
Posted By ptaylor965
Re: How can I update my access database via VB.net using this code

Hi Try Using


Insert & Update commandDim OLECon As New OleDb.OleDbConnection("PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source = db.mdb")
Dim OLECmd As New OleDb.OleDbCommand
Dim OLEStr as...
Forum: ASP.NET Mar 13th, 2008
Replies: 2
Views: 215
Posted By ptaylor965
Forum: Windows NT / 2000 / XP / 2003 Mar 13th, 2008
Replies: 4
Views: 606
Posted By ptaylor965
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
Posted By ptaylor965
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
Posted By ptaylor965
Re: runtime error when browsing mentions visual basic...

Hi,
Open "Visual Studio"
Select "Tools > Options"
Tick "Show all Settings" (Lower Left)
Select "Debugging"
Select "Just-in-Time"
...
Forum: VB.NET Mar 9th, 2008
Replies: 1
Views: 1,916
Posted By ptaylor965
Re: How I can display selected value from combo box in data grid view using VB.Net?

You could run separate SQL Select statements for the selected item SELECT * FROM table WHERE Tour_location = '" & cmbindiantourcode.text & "'"

or you could download the whole table and bind to the...
Forum: ASP.NET Mar 6th, 2008
Replies: 3
Views: 659
Posted By ptaylor965
Re: Static information. Store in files? Database? XML?

You could write the whole site in XML files

Read from XML Dim dt As New DataTable
dt.ReadXmlSchema("Filename_Schema.xml")
dt.ReadXml("FileName.xml")

For Each Row As...
Forum: Website Reviews Jan 30th, 2008
Replies: 4
Views: 556
Posted By ptaylor965
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
Posted By ptaylor965
Re: Store and retrieve numerous .wav and .bmp files

The best way i have found to deploy images, sound and other types of files is to place them in your "Resources" folder and then select the file in "solution Explorer" and change the property "Copy to...
Forum: Website Reviews Jan 27th, 2008
Replies: 4
Views: 556
Posted By ptaylor965
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.
Showing results 1 to 40 of 153

 
All times are GMT -4. The time now is 4:11 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC