309 Posted Topics

Member Avatar for jm50328
Member Avatar for sofian786

so looks like another post with same query. what happened with my previous reply? hv u not satisfied? or want something more???

Member Avatar for choudhuryshouvi
0
120
Member Avatar for XZodia

visual basic 6 smoothly runs in windows 98,win2000,winme and win xp operating systems. so it should run in sp1 also. though i have not tried sp1 yet but i hv implemented a project sp2 which is higher than sp1. it ran without a single piece of problem. regards Shouvik

Member Avatar for jbennet
0
105
Member Avatar for shahriar2403

you can make a trick on this. just unload the form and show it again. like unload frmAdd frmadd.show then fire the code inside the button responsible for displaying the report.

Member Avatar for shahriar2403
0
104
Member Avatar for priyala

well that might be not an easy solution. you need to implement control arrays to accomplish this task. the way you are trying to solve out this prob you need to create textboxes dynamically on ur form based on number of records returned by your recordset. do search in google …

Member Avatar for choudhuryshouvi
0
263
Member Avatar for sofian786

you can apply various logics to solve out this. i am giving you a simple one. use the inputbox function to display the standard input box and prompt the user to enter a sales figure. to accept 12 values in a continuous manner apply a for...loop statement (for i=1 to …

Member Avatar for sofian786
0
91
Member Avatar for MagicBytes

check out this sample code :- put a textbox(Text1) and a command button(Command1) on your form before u execute the following code. in the code, here "file1.txt" is the target file which i'm creating and sending different text at different time but instead of opening a new instance its closing …

Member Avatar for djjaries
0
143
Member Avatar for priyala

select * from <table name> where id = " & <pass ur id here> to display in text box :- text1.text = rs!name where rs is a recordset object

Member Avatar for Jx_Man
0
78
Member Avatar for sal21

[QUOTE=sal21;549131] [B]How to be sure when the file is updatable or movable from dir to other dir???[/B][/QUOTE] what exactly do you wish to achieve by this?

Member Avatar for choudhuryshouvi
0
123
Member Avatar for locsin

[QUOTE=locsin;426309]Hi I am COMPUTER SCIENCE STUDENT. I created thesis project with a report using VB6 datareport and Access2000. The report works fine on my machine, but when i presented this to my instructor an error "Invalid Data Source" occurs when I installed the application on other machines without visual basic …

Member Avatar for choudhuryshouvi
0
183
Member Avatar for nawaray

[URL="http://www.planet-source-code.com/vb/scripts/BrowseCategoryOrSearchResults.asp?txtCriteria=email+with+attachment&blnWorldDropDownUsed=TRUE&txtMaxNumberOfEntriesPerPage=10&blnResetAllVariables=TRUE&lngWId=1&B1=Quick+Search&optSort=Alphabetical"]You can visit this page to get some sample email attachment program[/URL] regards Shouvik

Member Avatar for choudhuryshouvi
0
148
Member Avatar for talablink

[URL="http://www.vbexplorer.com"]WILL YOU AFFORD TO VISIT THIS SITE?[/URL]

Member Avatar for choudhuryshouvi
0
75
Member Avatar for Debasis Bag

check out this sample project. to get the HTML report preview click Reports (from main screen), select all invoices option. mention date range as 2-2-2008 to 2-28-2008 and click Generate to view the report. hope this can give you some idea. regards Shouvik

Member Avatar for choudhuryshouvi
0
51
Member Avatar for vikas1111

there will be a little bit modification on your code and everything will be ok. try this :- [CODE] Dim addnew As Boolean addnew=true on error goto err1 If text1.Text = "" Then MsgBox " enter the company name" text1.SetFocus exit sub end if If text2.Text = "" Then MsgBox …

Member Avatar for debasisdas
0
174
Member Avatar for mahibha

it seems like your application is somehow missing .ocx file when you are trying to compile the application. place the .ocx file to your windows system directory. to find the system directory of your os goto start->run then type this :- [B]%systemroot%\[/B] if ur using windows xp then system32 is …

Member Avatar for debasisdas
0
180
Member Avatar for dnk

ok i 've attached a sample application built on an access database. run this code and check whether it helps you. if it is then don't forget to forward me your feedback otherwise if u got any more problem re-post those again. good luck regards Shouvik

Member Avatar for dnk
0
116
Member Avatar for guest11
Member Avatar for choudhuryshouvi
0
65
Member Avatar for kv79

if u wish to learn from the scratch there are a millions of sites available in the net to serve your purpose. you can find those easily just be doing some googling. visit this site as my recommendation :- [URL="http://www.vbexplorer.com/VBExplorer/VBExplorer.asp"]VBEXPLORER.Com[/URL] as the name suggests it is an virtual learning centre …

Member Avatar for choudhuryshouvi
0
195
Member Avatar for leokuz

you have posted your thread in wrong forum. this forum is intended to visual basic 6 only. move your thread from here and re-post it in vb.net forum. then only your question will be answered. hope you got it.

Member Avatar for cometburn
-1
775
Member Avatar for bashir matovu
Member Avatar for kerek2

[QUOTE=kerek2;540938] [B]listbox1.items.add(""+Serial Number+"")[/B] [/QUOTE] the above syntax is for adding an element in a listbox from the .NET environment. there is no such member [B]"Item"[/B] exists inside the library of methods for listbox in vb6. and one more thing, your description is not to the point. will you mind in …

Member Avatar for Jx_Man
0
180
Member Avatar for prajwala
Member Avatar for debasisdas
0
70
Member Avatar for hawisme000

why you are using 5 separate boxes? to solve this problem more efficiently try control arrays. this will be more easier for you. check out this sample code, it is implemented on control arrays. one advantage of this code is you do not need to encounter each & every textboxes …

Member Avatar for choudhuryshouvi
0
93
Member Avatar for Sawamura
Member Avatar for choudhuryshouvi
0
147
Member Avatar for Markp87
Member Avatar for roselaiza

put the running total fld in page footer section. for grand total insert another running total fld by summing the page total fld and insert it into report footer section. hope this works. regards Shouvik

Member Avatar for choudhuryshouvi
0
69
Member Avatar for kzdev

you can also use an external utility to send messages through a network. use the "net" utility. from vb u can use it with the [B]shell function[/B] for example :- [CODE]shell "net send server hello world"[/CODE] where "server" is the name of the remote computer you are trying to send …

Member Avatar for choudhuryshouvi
-1
92
Member Avatar for avadhut_ekal

or u can use windows media player activex component also. even u can play media file without using any controls. u can do this by implementing the [B]mcisendstring[/B] api function

Member Avatar for Jx_Man
0
46
Member Avatar for markx_018

try this out. [CODE] private sub combo1_change() dim db as database dim rs as recordset set db=opendatabase(app.path & "\student.mdb") set rs=db.openrecordset("select name from info where name like '%" & trim(combo1.text) & '", dbopendynaset) combo1.clear if rs.recordcount>0 then rs.movefirst while not rs.eof() combo1.additem rs!name rs.movenext wend else combo1.text="no record found." endif …

Member Avatar for choudhuryshouvi
0
113
Member Avatar for lycoslocos

when a month is starting store the starting date. u can store the date in a database or in windows registry. it is better that u store it into the registry. then while performing a transaction compare current system date with the stored one and find total month difference. if …

Member Avatar for choudhuryshouvi
0
174
Member Avatar for lycoslocos

do not post same thread more than once check your previous post for an answer.

Member Avatar for choudhuryshouvi
0
69
Member Avatar for regalla

[CODE]form2.text1.text=text1.text[/CODE] assuming that the command will be fired from the current form

Member Avatar for choudhuryshouvi
0
57
Member Avatar for quijote_mx

[QUOTE=quijote_mx;530639]Hi! I developed an application that shows pictures in vb6 program. A pice of cake. I don´t want to deal with zooming and scrolling so I would like to sent it to the windows fax and picture viewer but I can´t find it. Any hint ... QuijoteMx[/QUOTE] fire this API …

Member Avatar for choudhuryshouvi
0
139
Member Avatar for ITech
Re: help

check out this sample don't forget to post your feedback regards Shouvik

Member Avatar for choudhuryshouvi
0
57
Member Avatar for mark0420
Member Avatar for technogeek_42
0
187
Member Avatar for hawisme000

[QUOTE=hawisme000;523043]any pls help mo on How to load a filename on a LISTBOX. also pls teach me that when i click on the filename loaded on the listbox it will run, i only need to load the names of my movieclips which is all (.avi) then when click will play …

Member Avatar for choudhuryshouvi
0
246
Member Avatar for priyala

[QUOTE=priyala;523210]Hi, Can anyone tell me how to make VB forms an application as an installable something like an application. Thanks, Priya[/QUOTE] check out this thread :- [URL="http://www.daniweb.com/forums/thread95540.html"]How to create setups[/URL] scroll down and goto reply #8 hope u'll get ur answer regards shouvik

Member Avatar for choudhuryshouvi
0
98
Member Avatar for jince

use the isNull function to check whether any of the fields containing any valid data. if it returns false means the fld has some data. so go and display it.

Member Avatar for choudhuryshouvi
0
65
Member Avatar for Annex

what exactly did u mean by it? and what about "word"? is it any string within your program or you want to select text from Microsoft Word? plz clarify in more detail

Member Avatar for venkatramasamy
0
103
Member Avatar for jaasaria
Member Avatar for jaasaria

hey Jaasaria [URL="http://support.microsoft.com/kb/175168"]Check out this[/URL] regards Shouvik

Member Avatar for choudhuryshouvi
0
114
Member Avatar for nilma
Member Avatar for choudhuryshouvi
0
107
Member Avatar for choudhuryshouvi

I have a simple web application which aims to take backup from an oracle9i database. Where i need to click on a button to invoke the openfile dialog box and select the location and input the dump filename. After this the application will start creating the backup and create the …

Member Avatar for SheSaidImaPregy
0
202
Member Avatar for zawpai

where did u find "mouse press" event??? could u tell ur question more clearly???

Member Avatar for Jx_Man
0
150
Member Avatar for saini balvinder
Member Avatar for lostandfound
Member Avatar for lostandfound
0
158
Member Avatar for mohanvamsi_18

here is a sample. check this out. ''declaring the array here Dim a(1, 2) As Integer ''printing values Private Sub Command1_Click() Dim i As Integer, j As Integer For i = 0 To 1 Step 1 For j = 0 To 2 Step 1 Print a(i, j) Next j Next …

Member Avatar for choudhuryshouvi
0
190
Member Avatar for binu777

i think your question is not at all related with VB6 which is the core discussion topic of this forum. post your thread in the vb.net forum to increase your answer receiving possibility. (DON'T TAKE IT OTHERWISE)

Member Avatar for choudhuryshouvi
0
68
Member Avatar for Teder

[QUOTE=Teder;504340]Hi all, I've been designing a program in VB6 to extract certain rows of data from a SQL Database and shoot them out over email. Problem is, the farthest I can get is to printing them on the VB form, and can't do much else. I get an error when …

Member Avatar for choudhuryshouvi
0
167
Member Avatar for pranavdv

[QUOTE=pranavdv;501306]how to generate alphanumeric autonumber in Aceess backend with VB6 coding[/QUOTE] check this code in the attachment. hope this will help you. know me your feedback. regards Shouvik

Member Avatar for choudhuryshouvi
0
414

The End.