Monday, February 23, 2009

Tips on VHS transfers

In this new digital age all of our movies and video is increasingly being stored on discs and downloads rather than magnetic media. So a common question is how to move your old favourite movies over to DVD or disc.

Well I found a good answer over at this discussion site. It talks about transferring VHS to DVD and some of the options. Have a read and see what you think.

Labels:

Thursday, February 05, 2009

Gmail reorganises it's toolbar

Gmail has been updated again and this time it's a change to the toolbar. New buttons have been added, one for labelling a message in the way that you are used to, and another "move" for applying a label and archiving it at the same time. This is a welcome addition as the single drop down menu that was there previously tended to get long and scroll bars appeared when there were more than 2 or 3 labels.

If you are microsoft outlook instead of gmail there are some useful posts on this site.

Friday, June 24, 2005

Popular threads

Some popular threads seem to be Underlying connection was closed, Oracle Parameter bound problem: ORA-01008: not all variables bound and Object reference not set to an instance of an object. He he, all error messages!

Thursday, March 17, 2005

Topics on tech

The Technical Newsgroups site has a few threads worth reading. The thread on MRxSmb Errors is popular as well as working from home via UltraVNC and Errors with ntuser.pol. Technical stuff indeed.

Friday, February 25, 2005

New sites

I have just launched some new sites:

  • www.pcnewsgroups.net has discussions related to home pc's. Things like wireless networking, computer hardware and video and dvd talk.
  • www.itnewsgroups.net has topics related to software authoring, running a web site and optimizing the site for the search engines.
  • On www.webnewsgroupsnet there are discussion groups for travel and automotive/cars with more to come.
Enjoy!

Thursday, February 10, 2005

.NET FAQs

Looking in .NET FAQs there is a thread on how to use the results of a stored procedure another on sql server memory management and the common question of how to get a stored procedure to send an email in sql server. Well the answer to that one is to use xp_sendmail. It is a bit tricky to setup the Outlook profile so that it will work properly but once it is configured it does the job well.

Sunday, January 30, 2005

Some Visual Basic .NET topics

A few of the topics in Visual Basic .NET. One on hosting an IE browser window in a Windows form. Another on how to add a tab page to a tab control and creating a custom UserControl.

Sunday, January 23, 2005

SQL Server and XML

SQL Server has support for XML. You can use the SQLXML add-on to do things like export and import tables from MSSQL and XML files and bulk load using SQLXML.

The new SELECT ... FOR XML syntax is very useful once you understand it. There is a discussion here about FOR XML.

Friday, January 21, 2005

Windows forms

There is a whole group just for .NET windows forms discussion. Some guys are talking about how Form.ShowDialog() works, and another thread is covering rewriting a windows application from scratch.

That sounds like a big job but could be a chance to fix a badly designed application. A .NET code generator can help to get a project like this rolling by providing an architecture and data access layer.

Thursday, January 20, 2005

Lets talk xml

Whats happening in the .NET XML group?

Theres a bit on creating dynamic elements in XSL and another thread on outputting HTML spaces from XSL. This is always a bit of a hack. You can use &#160; or <xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text> which will spit out a &nbsp;

This discussion of XML and decimal numbers also covers some multiple-language issues.

FrontPage discussions

Just having a look at the Frontpage programming group. There is some discussion on the use of thumbnails and also on sending email from frontpage. The problem here is that he is using the .NET SmtpMail object which does not support SMTP authentication very well. In .NET 1.0 there is no way to set the username and password for the SMTP server but in .NET 1.1 you can use the Fields property of the Message object to set it. See here for more detail.

Html DocTypes are a confusing subject. I stick with HTML 4.0 Transitional as I think it is the most widely used.


Wednesday, January 19, 2005

A few interesting topics

I have been looking at some of the topics on www.devnewsgroups.net

In microsoft.public.dotnet.framework the issue of ASPNET can't write in event log on win XP has come up. I have run into this myself and generally it is caused by the ASPNET user not having enough permission to update the registry. Creating an event source, which only needs to be done once causes an exception. If this is done by the developer before running the application there usually are no problems.

There is a discussion of Application Server Design for .Net which looks at server requirements for running .NET applications. The mini-article on the SoapSuds tool is interesting, the other option is to use interfaces to define the contract between server and client.

Others are talking about Accessing SQL Server with Forms on an Intranet. It seems to be coming down to a choice between a windows or web application.