Forum: VB.NET Mar 17th, 2007 |
| Replies: 2 Views: 1,241 See Here (http://www.vbdotnetheaven.com/Uploadfile/mahesh/IntroductionToGDI04202005001743AM/IntroductionToGDI.aspx)
If you have code for a button click to create the drawing, you should be... |
Forum: VB.NET Dec 30th, 2006 |
| Replies: 3 Views: 1,254 You are correct in your logic approach for finding the same value.. which can be done various ways, depending on your method of populating the datagrid. But it is what works for your needs.
My... |
Forum: VB.NET Dec 29th, 2006 |
| Replies: 4 Views: 2,520 Exactly right. We use bar code readers in Pharmacy extensively. Barcode readers rarely require a drive when connecting via the USB port. If you open notepade and scan any generic UPC barcode...... |
Forum: VB.NET Dec 28th, 2006 |
| Replies: 8 Views: 16,263 Well I recommend that you check out the following links at Microsoft. MSDN and Google are often overlooked too often as places to look for code/tutorials. I did a search on Video Tutorials and... |
Forum: VB.NET Dec 21st, 2006 |
| Replies: 3 Views: 4,981 Some other sources:
Using Javascript in ASP.NET:
http://www.codeproject.com/aspnet/drag_drop.asp
Similar Thread:
http://www.daniweb.com/techtalkforums/thread25903.html |
Forum: VB.NET Dec 21st, 2006 |
| Replies: 3 Views: 4,981 Something like this ??
'**************************************
' Name: Drag-and-Drop feature for Table
' Rows
' Description:Simple code to allow drag-
' ... |
Forum: VB.NET Dec 14th, 2006 |
| Replies: 6 Views: 3,405 Have you doulbe checked your "alias" names for the columns you are populating. One thing to also do is the use the GetChanges() method of the dataadpter to see if you are getting the row(s) you... |
Forum: VB.NET Jun 20th, 2006 |
| Replies: 3 Views: 14,285 Not sure what you are asking? Why can't you use this method? |
Forum: VB.NET Jun 11th, 2006 |
| Replies: 1 Views: 1,049 Same thread located here:
http://www.daniweb.com/techtalkforums/post223645.html#post223645 |
Forum: VB.NET Jun 10th, 2006 |
| Replies: 8 Views: 2,852 Ok glad that was helpful, but now this statement makes very little sense:
"..how can i pick up reports on sql query basis bcz it works in sql but doesnt shows any result there would be a single... |
Forum: VB.NET Jun 9th, 2006 |
| Replies: 8 Views: 2,852 You have to supply the DatePart Function a second parameter. It requires TWO. one for the date part enumeration (the portion of the date you want to pull out of the supplied date), and the... |
Forum: VB.NET Jun 8th, 2006 |
| Replies: 8 Views: 2,852 Him, well I think the problem is DatePart. It is telling you it requires two parameters, and if you go to MSDN and search on DatePart function here is what you will find:
Link... |
Forum: VB.NET Jun 7th, 2006 |
| Replies: 8 Views: 2,852 Hi gentlement4u
First off, you are not going to get code just like that. Why? Well their needs to be effort on your part, we will help you here, but we will NOT do the work for you.
... |
Forum: VB.NET Dec 2nd, 2005 |
| Replies: 9 Views: 14,410 If the database (the Access DB) set with a password? Meaning when you double click on the file, does it request a password? |
Forum: VB.NET Oct 25th, 2005 |
| Replies: 4 Views: 6,738 Either way. I find multiple arrays sometimes easier, but you could even use one array, and make it two or 3 dimensional. Remember an array acts much like a "virtual" spreadsheet! |
Forum: VB.NET Oct 25th, 2005 |
| Replies: 4 Views: 6,738 Suggestion: Use an array to store the class details, and loop through the array to perform the calculations of Average and Total |
Forum: VB.NET Oct 22nd, 2005 |
| Replies: 2 Views: 2,708 Yes, the code in .Net Framework 2.0 and 1.1 are inherently the similar, but no the same. You can go from 1.1 to 2.0 with the VB2005 application performing a code conversion, but going backwards is... |
Forum: VB.NET Oct 21st, 2005 |
| Replies: 9 Views: 14,410 Just off the top of my head your connection string to the DB is far to long , and complicated for what you are doing.
Replace it with this :
"Provider = Microsoft.Jet.OLEDB.4.0;Data... |
Forum: VB.NET Sep 1st, 2005 |
| Replies: 3 Views: 7,332 Glad to hear you go it working.
P.S. And that is what I meant about the specifying the location, was the location the report was at physically specified exactly in the code. |
Forum: VB.NET Sep 1st, 2005 |
| Replies: 4 Views: 2,438 Hmm, interesting, I am sure I saw more than that, ah well. As for Visual Basic.Net, I still have never heard of a limit. |
Forum: VB.NET Sep 1st, 2005 |
| Replies: 6 Views: 7,278 Are you getting an error message? Or is the report just not loading?
have you step through the code to see what is being passed?
Has the location of the report changed from where it... |
Forum: VB.NET Sep 1st, 2005 |
| Replies: 3 Views: 7,332 Correct me if I am wrong, but I thought you had to specify the location as well as the report name? i.e. using the UNC for file location.
See link: LINKY! ... |
Forum: VB.NET Sep 1st, 2005 |
| Replies: 4 Views: 2,438 None that I have ever heard of. I have seen plus 300 on some applications. |
Forum: VB.NET Aug 8th, 2005 |
| Replies: 1 Views: 3,458 My question would be why would you want to do this? Why not work completely in C++ or C# ? |
Forum: VB.NET Jul 25th, 2005 |
| Replies: 1 Views: 3,042 Ok, I am not really getting your question.
Your subject states TextBox Help but you state in the thread that you want a listbox where you can use SQL ?? Huh?
Remember, we are not working... |
Forum: VB.NET Jul 21st, 2005 |
| Replies: 1 Views: 4,555 What have your tried, what are you having problems with? Have you tried google? Please, show some effort, and you might get some answers.
With a little effort this is what you can find : LINK... |
Forum: VB.NET Jul 18th, 2005 |
| Replies: 12 Views: 4,181 Excellent clean code letscode. Good advice as well. The use of breakpoints and following through an interation of your code can provide worlds of information as to what is going on...which is... |
Forum: VB.NET Jul 18th, 2005 |
| Replies: 6 Views: 7,301 VB Express is the Newest VB.Net version (.Net 2.0 - still in Beta). It is not a "lite" version, it is an upgrade to the current VB.Net. New Objects, functionality, etc. Just like going from VB6... |
Forum: VB.NET Jul 15th, 2005 |
| Replies: 3 Views: 2,222 Well I wouldn't store any required files in the bin directory, but rather the application root directory. Move the files their and adjust the links or mappings accordingly and try again. |
Forum: VB.NET Jul 11th, 2005 |
| Replies: 6 Views: 7,301 This is not an updated version of VB 6. Visual Basic 6 is done, everything from Microsoft standpoint is moving towards .NET. The latest being .NET 2.0 (currently non-beta is .NET 1.1) and Visual... |
Forum: VB.NET Jul 6th, 2005 |
| Replies: 11 Views: 13,216 Well thanks for the compliments, I am just glad you figured it out (I should have noticed the quotes), and glad we were of any assistance! |
Forum: VB.NET Jul 5th, 2005 |
| Replies: 4 Views: 2,261 OK, well where are you stuck at?
Starting it? Have you created your class and member variables?
Can this be done with ADO.NET ( if so what does your DB table structure look like) or can it... |
Forum: VB.NET Jul 5th, 2005 |
| Replies: 4 Views: 2,261 Well since you haven't read the STICKY note at the top of this forum, a response in the form of a solution to your homework problem will not be posted.
LINK TO STICKY NOTE about homework... |
Forum: VB.NET Jul 4th, 2005 |
| Replies: 1 Views: 4,813 Yes, check the tutorials here at Daniweb on ASP.Net and access SQL, the principle is essential the same in VB.Net apps (code differes a little). Where the database is located is of little concern,... |
Forum: VB.NET Jun 30th, 2005 |
| Replies: 11 Views: 13,216 Try adding for each parameter, before the value assignment :
objParam.Direction = ParameterDirection.Input
Replace objParam with your parameter variable(s).
That may solve the problem |
Forum: VB.NET Jun 30th, 2005 |
| Replies: 1 Views: 1,985 Ok...
SELECT CompanyName, CompanyID, ProductCategoryName, ProductID
FROM Company C
JOIN Product P ON C.CompanyId = P.CompanyId
JOIN Category CA ON CA.ProductId = P.ProductID
WHERE... |
Forum: VB.NET Jun 30th, 2005 |
| Replies: 1 Views: 22,880 Here is an awesome site for Connection Strings (under Technology)
MVP (http://www.carlprothman.net/)
Here is the ODBC Method:
' VB.NET
Imports System.Data.Odbc
... |
Forum: VB.NET Jun 28th, 2005 |
| Replies: 2 Views: 7,143 Pretty broad, and large topic to provide information on. What have you got for code/tips already (not in detail). What instal software are you using (Wise Solutions Installer? Install Shield?) or... |
Forum: VB.NET Jun 28th, 2005 |
| Replies: 1 Views: 1,586 Depends on your confidence, and what you want to move to. .NET is the hot thing, and if you are a VB developer you will come to appreciate the growth Visual Basic has taken to becoming a true OOP... |
Forum: VB.NET Jun 28th, 2005 |
| Replies: 11 Views: 13,216 FYI
By the way you do not add the [Software #] = @SoftwareNum into your Update Statement. It is your Primary Key value, so you wouldn't be updating it on the fly when using a where clause. Not... |