Forum: Graphics and Multimedia Jul 16th, 2009 |
| Replies: 2 Views: 411 U can make use of SQL to generate random strings/numbers. I have patsted to sql query below; hope it helps.
CREATE procedure dbo.GenerateRandomString (@useNumbers bit, @useLowerCase bit,... |
Forum: Database Design Mar 23rd, 2009 |
| Replies: 2 Views: 1,471 Though this ain't db design question I will help u out. When u make a transaction, subtract the transacted stock from the product. When doin' a stock take, simply, the product table will have the... |
Forum: Database Design Mar 23rd, 2009 |
| Replies: 4 Views: 487 I believe the best way to learn is through challenge. If you have good database knowledge then you should not have a problem. You won't take time to know Sql server if you know access very well. Also... |
Forum: C# Mar 23rd, 2009 |
| Replies: 3 Views: 295 You need to declare "CurrentOutLet" before the try...catch block. Good luck! |
Forum: C# Mar 23rd, 2009 |
| Replies: 3 Views: 295 You need to declare "CurrentOutLet" before the try...catch block. Copy and paste the code below; Good luck!
public SqlDataReader Current_outletReport(string code, string startdate, string enddate)... |
Forum: C# Mar 23rd, 2009 |
| Replies: 5 Views: 1,167 Check the type definition of "User ID" and make sure it is int, number...(not text). If it accepts text you'll have to restructure your statement; "Select * From Codes Where User ID = '" +... |
Forum: ASP.NET Oct 31st, 2008 |
| Replies: 3 Views: 2,135 I am trying to display a crystal, from an object report in asp.net using c#. Can anyone help me out. The idea, as much as I understand is, object -> table adapter -> Data table -> crystal report... |
Forum: ASP.NET Oct 31st, 2008 |
| Replies: 2 Views: 25,697 Try installing the full version of crystal XI. It must work. I had the same problem when I installed the trial version, from crystal IIX. Once I got the non-trial version, everything went back to... |
Forum: C# Oct 31st, 2008 |
| Replies: 1 Views: 2,835 When loading from a data object, point the DO to the table adapter -> data table -> crystal report viewer then populate it into the crystal reports file. |