Forum: VB.NET Jul 21st, 2009 |
| Replies: 11 Views: 344 C# combines good performance of C++, compact syntax of C and practically oriented approach of old VB. But be warned C# is still .NET language so forgot C style "when I say, what I say, exactly - no... |
Forum: VB.NET Jul 21st, 2009 |
| Replies: 3 Views: 1,098 public static bool IsValidEmailAddress(string sEmail)
{
if (sEmail == null)
return false;
else
return Regex.IsMatch(sEmail, @"... |
Forum: VB.NET Apr 29th, 2009 |
| Replies: 2 Views: 493 I am interested - could you let me know more details please? |
Forum: VB.NET Apr 29th, 2009 |
| Replies: 6 Views: 1,135 You have to copy Reader.dll into bin/debug and bin/release folder, or use absolute path in <DllImport("Reader.dll", EntryPoint:="CommOpen", ExactSpelling:=False, CharSet:=CharSet.Unicode)> |
Forum: VB.NET Oct 10th, 2008 |
| Replies: 1 Views: 491 The simplest way how to deal with barcodes is to use special fonts. You simply print the text below the barcode with special font and you are finished. You can print such "text" onto bitmap and save... |
Forum: VB.NET Jan 4th, 2008 |
| Replies: 4 Views: 4,791 VB6 is much simpler and so much easier to learn. It is limited if only pure VB is used but once you get familiar with C++ (like approach or even better you combine it with C++) then is hard to match... |
Forum: VB.NET Dec 12th, 2007 |
| Replies: 1 Views: 1,000 What you are asking - what you described is vss sole purpose - one of you two lock file and the second one works with vss version. When are all changes done file is put back and you will see it as... |
Forum: VB.NET Dec 5th, 2007 |
| Replies: 1 Views: 1,033 Basically, you can modify this: http://support.microsoft.com/kb/308042
But, unfortunately, it won't help you realize true replacement for com (best ever made, simple, fast and reliable!!!) ado's ... |