| Subject | Date Asked | Expert |
|
| Search for a FIle on a Drive in VB6 | 7/23/2008 | Ravindra |
Q: I am using VB6. I have been having some trouble determining the proper search command to search for ... A: 'put a check mark on PRoject_references _ Microsoft Scripting runtime Public Function ...
|
| nesting of if else and checking multiple conditions in if else | 7/23/2008 | Ravindra |
Q: how to nesting of if else and checking multiple conditions in if else A: are you also ravindra? there are different methods: you could nest a select case if passing ...
|
| problem in vb project | 7/21/2008 | Frank G. Dahncke |
Q: i want to do some accounting calculations. Private Sub TxtAmount_Change() TxtPassed_payment.Text = ... A: Your problem is that you try to calculate with variables that can only contain text (so-called ...
|
| VB 6 And report | 7/19/2008 | Ravindra |
Q: Please, I designed Access report and use VB6 to invoke it, but whenever I invoke it, it opens ... A: in access database choose Tools_startup in display forms combobox choose none. uncheck all options ...
|
| Regarding datagrid | 7/18/2008 | Ravindra |
Q: Sir, I want to display records in datagrid from sql database ..How can I do that?????/ Kindly help ... A: your coding is improper. you use object, adodb, adodc everything. and for dates your coding makes me ...
|
| VB6 - ADO | 7/17/2008 | Ravindra |
Q: I ve got a simple program usin ADO to read from as database. I already populate a combobox with the ... A: if custId is a textfield then use: "select * from TableName where CustId=" & "'" & iDsearch & "'" ...
|
| visual basic+ms access | 7/16/2008 | Ravindra |
Q: .i am using vb6 and ms access..i have created a parameterized query including single parameter..the ... A: for command of dataenvironment use this: Select * from testable where FieldName=? and with the ...
|
| visual basic events | 7/16/2008 | Frank G. Dahncke |
Q: I want to know what is meant by msflex grid and control events in visual basic A: "msflexgrid" means "MS Flexgrid", a control that is bundled with old versions of VisualBasic. It ...
|
| VB6 Printform | 7/16/2008 | Ravindra |
Q: Question V.B. 6 level Inter Michael Rae Saga simple question... How can i manipulate the width and ... A: in print command the label does not exist. you can change the fontsize just before and after this ...
|
| Printer Label width & height | 7/14/2008 | Ravindra |
Q: V.B. 6 level Inter Michael Rae Saga simple question... How can i manipulate the width and height of ... A: you cant change the lable using printer commands. the printer.print etc are used to print after the ...
|
| To retrive records from sql database | 7/12/2008 | Ravindra |
Q: Sir My query is how to retrieve records from sql database and display it into textbox .M using vb6 A: sample code: always use a label or grid to display results and not a textbox as the user may change ...
|
| replace VALUE of a variable | 7/11/2008 | Richard Rost |
Q: As I can transfer arguments to script through command file. Script should replace VALUE of a ... A: You could use the Replace() function. Let me know if you have any other questions or comments. ...
|
| vb | 7/10/2008 | Ravindra |
Q: how to retrieve values from access file in vb? A: 'put a check mark on Project_References_ Microsoft ActiveX Data Objects Library 'you can addnew ...
|
| vb code | 7/10/2008 | Richard Rost |
Q: I am a beginner in Vb6 with access 2000 coding i am designing a project for the diabled people.I am ... A: If you need to specify the table to open at RunTime then just put it in a variable and say: ...
|
| vb + access | 7/8/2008 | Ravindra |
Q: please tell me how to connect a db other than biblio and nwind.mdb..i am using vb 6.0 as a ... A: this error is because of version of access if you are using data control. use this code: better to ...
|
| Visual Basic 6 | 7/7/2008 | Richard Rost |
Q: May i ask about VB 6.0 with Photoshop CS? A: You may ASK, but I don't know how much help I'll be. Yes, I use both VB and Photoshop, but I don't ...
|
| Sage Accounting package | 7/7/2008 | Richard Rost |
Q: I'm working on an application in VB6 and want to interface to sage accounting package for thepurpose ... A: I've never used Sage Accounting. Sorry. Let me know if you have any other questions or comments. ...
|
| Click a Button On VB6 WebBrowser Automaticly | 7/6/2008 | Richard Rost |
Q: I am making a program where it automatically fills out a sign up form on a website in a vb6 web ... A: There is a .SUBMIT method to the WebBrowser object, I believe. It's been a while since I've done ...
|
| VSS 6.0d and VS 2005? | 7/3/2008 | Ravindra |
Q: After using Visual Sourcesafe 6.0d with VB 6.0 for several years, I recently installed Visual Studio ... A: thre reason the allexperts is not allowing ratings is I have disabled this feature as i wish to get ...
|
| adodc | 7/3/2008 | Ravindra |
Q: i am using vb6. I used adodc in order to display different fields from my database.. my problem is i ... A: i dont advocate use of adodc. change to adodb because no control is needed. here is sample code: ...
|
| VSS 6.0d and VS 2005? | 7/2/2008 | Ravindra |
Q: After using Visual Sourcesafe 6.0d with VB 6.0 for several years, I recently installed Visual Studio ... A: vb 2005 is a completely different way of writing code and you need to unlearn many aspects of Vb6 ...
|
| Visual Basic 6 | 7/1/2008 | Ravindra |
Q: I am a beginner in visual basic 6. I am currently doing project in visual basic 6. In that I want ... A: Option Explicit Dim entry As String 'this puts the text into the textfile Private Sub ...
|
| Error:input past end of file | 6/30/2008 | Ravindra |
Q: I have used this code and getting an error input past end of file(written near line. )What does it ... A: it means the point of reference in text file has gone beyond the length of text file (instead of 11 ...
|
| How to link the Help menu contents to one another??? | 6/28/2008 | Ravindra |
Q: In vb6 i have created a program i.e i took 1 form and i have created Help menu using menu editor. ... A: there are 2 methods, vbhelp and html help/ for html a chm file is needed. if you have a .chm file ...
|
| Visual Basic, Opening a file to a multi-line txt field through a FilelistBox | 6/27/2008 | Ravindra |
Q: I'm writing a program to help edit a specific .ini file for a program to help newcomers out. What I ... A: store the path of the selected text file to a variable and use the shell command to open the same. ...
|
| adding text and data files in VB 6 | 6/26/2008 | Ravindra |
Q: I am creating an .exe program with VB6. I would like to have the program add certain files to a ... A: you cannot add the text files to the exe file. you can put them in a folder along with exe and refer ...
|
| Count click events | 6/23/2008 | Frank G. Dahncke |
Q: I am just starting off learning VB 2008. I am wanting to count the number of times a button is ... A: No problem. First, at the Module level, declare an integer variable as counter, then increment it in ...
|
| MSFlexGrid Data ,put it in .txt | 6/23/2008 | Ravindra |
Q: read this type of data from .txt and put it in MSFlexGrid, Coke 4500 1 2 3 4 5 Minerals 4200 5 ... A: my system was down and restored now. because of the backlog of unanswered questions, i'll be able to ...
|
| combo box with notepad | 6/23/2008 | Ravindra |
Q: I have combo box in my vb project.but the combo list vl be more than 100 items.so i want to create ... A: no problem with 100 items in adodb open the connection and add this code: Private Sub ComboLoad1() ...
|
| application disappears | 6/22/2008 | Ravindra |
Q: vb6, access db, beginner, Hi, this my first commercial application after practising vb for sometime, ... A: if you are willing to donate some cash, ok, send me the following points: 1)what does the ...
|
| Msflexgrid in vb6 | 6/20/2008 | Ravindra |
Q: I have a specific requirement of inserting a row into MSFlexGrid at runtime. This should be ... A: sample code for inserting a row at a selected point. G is the name of the msflexgrid. Dim i As ...
|
| Combo box in VB | 6/20/2008 | Ravindra |
Q: i wnat to ask a question ? My question is : i m making a project in vb. in this project i place a ... A: put your values red,blue etc in Combo1 list property and have combo1.enabled=false have a ...
|
| Finding difference between to dates | 6/20/2008 | Richard Rost |
Q: I have two fields in a (vb 6)form such as IssueDate and ExpiryDate.it store data from the database.i ... A: You'll have to change your dates to a format that VB understands, like mm/dd/yy. Once you've done ...
|
| MS Access - SQL | 6/17/2008 | Richard Rost |
Q: I have written a query as follows... strSQL = "SELECT CREDITORS.CreditorId, ... A: You just need some PARENTHESES around your criteria. (A + B) * C is not the same as A + (B * C) ...
|
| Execution of between operator of access through vb 6.0 | 6/17/2008 | Ravindra |
Q: "i have two dtpicker and one cmdbutton in my application and i want display the datareport according ... A: your code is too simplistic. it wont work. the date between 2 dates produces errors in datareport. ...
|
| about print option | 6/16/2008 | Ravindra |
Q: sir i want to ask a another question. sir i have a tabstrip in my project in which i have a two ... A: you could use: printer.print text1 printer.print text2 'and so on printer.enddoc 'or you could ...
|
| browsing pictures in common dialog box to load pictures | 6/16/2008 | Ravindra |
Q: I am doing project in VB 6.0+ oracle.I am a beginning .I want to know the coding for browsing the ... A: common dialog isnt an ideal way of viewing pictures. better to load the full paths in a list or ...
|
| facing problem in LostFocus property of textbox | 6/15/2008 | Richard Rost |
Q: First many many thanks for your previous valuable suggestion, Sir here i am doing a validation ... A: Compare the value that the box had BEFORE you tabbed to it with the value as you're leaving. If ...
|
| problem in LostFocus property of textbox | 6/15/2008 | Ravindra |
Q: First many many thanks for your previous valuable suggestion, Sir here i am doing a validation ... A: Private Sub Command1_Click() rec.Open ("select item from testable"), conn, adOpenStatic, ...
|
| vb6 exe | 6/13/2008 | Richard Rost |
Q: i have developed one application in vb6 and i added a option in right click menu which will run my ... A: You would have to make it a PARAMETER in your program. Just read the Command string in your Sub ...
|