Search the web
Sign In
New User? Sign Up
vbhelp · Visual Basic Help Center Forum
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 14776 - 14805 of 15862   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14776
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...
mandy_vb6
Offline Send Email
May 8, 2006
4:42 am
14777
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. ...
mandy_vb6
Offline Send Email
May 8, 2006
7:01 am
14778
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...
halford13
Online Now Send Email
May 8, 2006
3:43 pm
14779
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...
crombierob
Offline Send Email
May 9, 2006
3:59 am
14780
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,...
Shawn K. Hall
vb_shawn
Online Now Send Email
May 9, 2006
5:20 am
14781
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...
Rob Crombie
crombierob
Offline Send Email
May 9, 2006
6:29 am
14782
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...
Chintan Shah
cdshah76
Offline Send Email
May 12, 2006
4:58 pm
14783
hi, how can i make a query against 2 db sql server 2005?...
roberto_passeri
Offline Send Email
May 18, 2006
5:44 pm
14784
i want to play a flash movie in vb... pls help -thanks...
Juancho
obi_juancho_...
Online Now Send Email
May 26, 2006
5:26 pm
14785
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...
Anish Khan
info_pisces
Offline Send Email
May 27, 2006
4:22 am
14786
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...
Have A. Niceday
halfof4is2
Offline Send Email
May 27, 2006
7:25 pm
14787
thanks a lot =)...
Juancho
obi_juancho_...
Online Now Send Email
May 29, 2006
7:15 am
14788
how can i implement Ctrl+S (Save) in vb apps? any help is very much appreciated... =)...
Juancho
obi_juancho_...
Online Now Send Email
May 30, 2006
4:48 am
14789
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...
R
spaniish_heat
Offline Send Email
May 30, 2006
8:49 am
14790
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...
Jesus Is the Answer
halfof4is2
Offline Send Email
May 31, 2006
2:36 am
14791
thanks... but is there another way?...
Juancho
obi_juancho_...
Online Now Send Email
May 31, 2006
3:32 am
14792
... 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: ...
Shawn K. Hall
vb_shawn
Online Now Send Email
May 31, 2006
8:14 am
14793
thanks ;)...
Juancho
obi_juancho_...
Online Now Send Email
Jun 1, 2006
1:42 am
14794
you can use combo boxes... try this code snippet... with adodb1.recordset .movefirst do until .eof combo1.additem .fields("Column1") loop end with...
Juancho
obi_juancho_...
Online Now Send Email
Jun 1, 2006
4:42 am
14795
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...
Juancho
obi_juancho_...
Online Now Send Email
Jun 1, 2006
4:42 am
14796
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...
Juancho
obi_juancho_...
Online Now Send Email
Jun 1, 2006
5:29 am
14797
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...
Arnold Marquez
aumyeh
Offline Send Email
Jun 1, 2006
5:30 am
14798
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...
Rob Crombie
crombierob
Offline Send Email
Jun 1, 2006
5:36 am
14799
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...
Juancho
obi_juancho_...
Online Now Send Email
Jun 1, 2006
7:09 am
14800
Any body know abt the ivrs in vb tapi? Pl help me and explain the same...
ilabganesh
Offline Send Email
Jun 1, 2006
1:40 pm
14801
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 ...
Rnd
thorinzzzz
Offline Send Email
Jun 1, 2006
3:35 pm
14802
i changed the code to... do until .recordcount = 0 ... loop...
Juancho
obi_juancho_...
Online Now Send Email
Jun 2, 2006
1:43 am
14803
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...
Juancho
obi_juancho_...
Online Now Send Email
Jun 2, 2006
3:55 pm
14804
This works Do While Data1.Recordset.EOF = False On Error Resume Next Data1.Recordset.Delete Data1.Recordset.MoveNext Loop...
Dan Bridgeman
dwbridgeman
Offline Send Email
Jun 2, 2006
4:09 pm
14805
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...
Shakil Uddin
uddin_shakil
Offline Send Email
Jun 6, 2006
10:54 am
Messages 14776 - 14805 of 15862   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help