Hello everyone, I am brand new to the DOT.NET environment and as this is probably something that is probably quite simple, I was hoping that someone could help...
I have managed to solve the problem by just setting the notification if Instance variable accesses shared member in the compile section of My Project to none. ...
Hi All! I have an ADODB connection called conex. On this connection I start a transaction. during execution of this transaction I have some insert commands and...
There is a great site for VB6 API examples, called - www.vbnet.mvps.org They grabbed the name VBNet long before MS did. The site is mainly VB6 code. I spent...
Hi Rob, ... Yep, that's one of my favorite VB sites. Whenever I need code for something that isn't already in my library, I go there first. If it's not there,...
Hi Shawn, I've checked all those sites recently, except Edanmos, which I will certainly look at. I had tried going down a level, with no success. I just took...
Hi, I am using VB 6.0. I want to save Picture Box as Jpg file or Bitmap file. My purpose to save Picture box in this format is to Print the file. I have...
Hello Group, I want to know how to reply a answer or solution asked by any group member. Well u can play flash movie by using shockwave flash control. which u...
I used to have a Shareware utility to compile a regular Excel spreadsheet or workbook, into an .exe file. This sure was handy because you could make a...
Hello All i need some help from u kindly let me know the solution 1. Pls c below the code for filling MSHF, Its filling it BUT the first row is coming empty...
Juancho Right click on the form and select Menu Editor Make a file save menu item then on the same screen you'll see a shortcut drop-down box assign whatever...
... Set the forms "keypreview" to true and then use the form_keydown and form_keypress events to test key state. There's some sample code for that here: ...
i cant delete all the records... the last row is still in the db after executing the code below... pls help... with adoJOPrint.Recordset If .RecordCount > 0...
now the same code is working... =) now, my problem is refreshing data reports! =\ my data report is connected to a DB wherein the results of a query is being...
Consider this... with adoJOPrint.Recordset If .RecordCount > 0 Then Do Until .EOF .Delete .MOVENEXT Loop End If End With OR SIMPLY cnn.execute "DELETE ALL FROM...
Off the top of my head, you need to execute the update command as well The reason you got away without it on the other Deletes, is the move triggers their...
now, my problem is data reports! =\ my data report is connected to a table wherein the results of a query are being placed then to be printed. however, when a...
Reconsider the branch instruction. Do until .EOF .Delete .Update .MoveFirst Loop surely the code below the Do until line wont exectute when it is EOF, whence ...
i have a table wherein queries are stored for printing... however when a new query was made, the data report is still displaying the old contents (the previous...
Hello All Pls see the code below, My results are coming right but it is filling an empty record in the first row of MSHF Grid and then filling my desired...