Posts
 
Reputation
Joined
Last Seen
Ranked #434
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
81% Quality Score
Upvotes Received
30
Posts with Upvotes
30
Upvoting Members
17
Downvotes Received
7
Posts with Downvotes
5
Downvoting Members
6
9 Commented Posts
7 Endorsements
Ranked #260
Ranked #300
~107.51K People Reached
About Me

i am here for providing help and getting help

Favorite Tags

181 Posted Topics

Member Avatar for sarman.boyslo

i think using only PrtScrn isn't sufficient as there is problem regarding scrolling also so it can capture the entire form (capture only presently visible part) so try the following first increase screen resolution , then probably you will be able to see the entire form and then use PrtScrn …

Member Avatar for Junjie_1
0
1,000
Member Avatar for meLiel

first , create your own thread.New thread. then ask your exact problem there and don't ask us to write code for you. [Click Here](http://www.daniweb.com/software-development/visual-basic-4-5-6/4/contribute) to create a new thread.

Member Avatar for Reverend Jim
0
12K
Member Avatar for SaRa Ahmad

i am not sure what do you mean by scan here. is it uploading a file ? or is it scanning using scanner ? for saving files to the database:- ther are many ways to achieve that but what i used when i was working on vb6 was that save …

Member Avatar for Sabrina.Moro
0
1K
Member Avatar for ammukarthi

till now i dont do much vb.net but i am familiar to vb6 , so on the basis of vb6 i am giving you a answer i dont understand why you are making login form without database connection, but if you really dont wanna use it , then try it:- …

Member Avatar for Paul_24
0
267
Member Avatar for ponnu

use loop after search query While rec.EOF = False 'write here what you wants (display records) rec.MoveNext wend hope this helps you

Member Avatar for hannah_2
0
2K
Member Avatar for infatuate

try this:- char arr[]={"UNAME"}; for(int i=0;arr[i]!=NULL;i++) { printf("%x\t",arr[i]); //this is what you want } hope this may help you , however i am not much familiar with c programing .

Member Avatar for naveen1993
0
160
Member Avatar for debasisdas

good judgements come from experience and experience comes from bad judgements

Member Avatar for James_28
8
17K
Member Avatar for Christoffer_S

addition(int n1, int n2); subtract(int n1, int n2); division(int n1, int n2); multiply(int n1, int n2); don't call functions in that manner. it should be `addition(n1,n2);` (as Ancient Dragon said). you are passing variable here which are not declared. so either declare these variable and input values to those and …

Member Avatar for Schol-R-LEA
0
646
Member Avatar for Shodow

you are newbie to daniweb , so i would suggest you to read its rules post your questions ( including your efforts ) to new thread.

Member Avatar for hina_7
0
3K
Member Avatar for james.lu.75491856

DOS `echo hello world` VB6 `Print "Hello World"` VB.Net `Console.WriteLine("Hello World")`

Member Avatar for avishek12345
0
298
Member Avatar for alina.nazchowdhury

Please make full use of code button when are you going to put code here.right ? now let's come on the thread. Errors occur because you are using Inline If and when you are using Inline If then there is no need to put End If and more issue is …

Member Avatar for alina.nazchowdhury
0
302
Member Avatar for alina.nazchowdhury

Try This : Private Sub cmdValid_Click() If (txtPassword.Text <> txtPassword.Tag) Then If (varx <> 3) Then If MsgBox("Password Incorrect", vbRetryCancel) = vbRetry Then varx = varx + 1 Else MsgBox "Retry disabled" End If Else MsgBox "Login Successful" End If End Sub on Form_load() Private Sub Form_Load() varx = 0 …

Member Avatar for alina.nazchowdhury
0
544
Member Avatar for jemartalaban_1

> my professor ask us to create a program that has auto logout feature after 2mins or set my own time to logout, after the user logged in to the machine, just add one timer and set interval to 1000 and then write the following code :- Private Sub Timer1_Timer() …

Member Avatar for jemartalaban_1
0
278
Member Avatar for Red_Rain

first off, this thread belongs to vb.net forum. But , Consider following : > histWrite.WriteLine(item) item is object type and if you print it to the file then it will be inserted as string. So , write this :- hisWrite.WriteLine(item.ToString()) > and this is always my result (duplicates are not …

Member Avatar for Reverend Jim
0
177
Member Avatar for mavtcr

firstly , i don't see any problem in the code. > But I want always as dd/mm/yyyy 16/11/2013 Try This: Format(Now, "dd/mm/yyyy") Above statement will display present date.So you can also print desired in the Specific Pattern by replacing `Now` with your `date type variable`. the above statement will result …

Member Avatar for mavtcr
0
299
Member Avatar for Saboor880

VB.net is just like Visual Basic in .net framework. its extention of classic Visual Basic. i just give the overview about it . For more detial you should google for it.

Member Avatar for mavtcr
0
241
Member Avatar for gasim774

> Write a Java program that allows the teacher to calculate the grade for a student. A Student should write this assignment for the purpose of practicing . How can we help you , if you don't show your efforts. Here you have to come with the some efforts to …

Member Avatar for rishif2
0
95
Member Avatar for mavtcr

i am 100% agree with the solution of ddanbe. but you can also get the same result with this:- Dim x As Integer, y As Integer, z As Integer x = Text1.Text y = Text2.Text z = Text3.Text Text4.Text = x + y + z but ,here i recommend to …

Member Avatar for rishif2
0
214
Member Avatar for guru511

> how to get datetime function ?? for this , you should create a new thread with appropriate title.

Member Avatar for rishif2
0
2K
Member Avatar for mavtcr

> MRS.Open "SELECT Fno,Fname,Faddress,Fphone FROM Master WHERE Fno = '" & Val(TxtFno.Text) & "'", conn, adOpenStatic, adLockOptimistic here make sure that Fno field's type is not number if it is defined as Number then use this: MRS.Open "SELECT Fno,Fname,Faddress,Fphone FROM Master WHERE Fno ="& Val(TxtFno.Text) , conn, adOpenStatic, adLockOptimistic one …

Member Avatar for mavtcr
0
244
Member Avatar for sonunclejalil

> Set Rs = Nothing > Set Con = Nothing don't set `Nothing` to these objects because you will use rs in` cmdrecord_Click()` procedure.So remove these lines. and use this :- rs.Fields("TIME OUT") = lblTMEOUT rs.Update

Member Avatar for sonunclejalil
0
531
Member Avatar for Payal Gupta

> int num; i = 0; sum = 0; that was the problem from the above, could you tell what type of `i` and `sum` are;- answer is no. declare variables as follow :- int num,i = 0,sum = 0; hope this helps you . . .

Member Avatar for KushMishra
0
997
Member Avatar for rahulsingh725

well i don't do c# programing but i can just provide the logic behind this:- retrieve data using select query and then concatente these column values. I think `+` may help you to do this(concatenate).

Member Avatar for JOSheaIV
0
209
Member Avatar for nitish.mohiputlall

> What's that n for in line 18? yes, its good practice that if there is no use of any variable remove these.(i think they consume memory). so , if `n` is not useful then don't declare it.

Member Avatar for Assembly Guy
0
171
Member Avatar for elie.karkafy

> I need a vb6 decompiler any help ? well, i never used it . but anyway , [Click Here](http://www.vb-decompiler.org/) .first download and use it for a trial and if you satisfied with its performance then you can order for its full version. Hope this link may help you.

Member Avatar for rishif2
0
195
Member Avatar for lewyjayne
Member Avatar for Ancient Dragon

its really working for ordinary users also. but it can be improved as i notice that it shows maximum 5 user and there may be more than 5 who satisfy the condition like name like . thanx

Member Avatar for Ancient Dragon
0
252
Member Avatar for suzyq888

first declare array variable so that you can store inputted value to this, so declare array variable dim arrx(4) as double getting input through input box and store its values to an array variable. for i=0 to 4 arrx(i)=inputbox("enter value") sum_of_array=sum_of_array+arrx(i) next calculate the average , for this write as …

Member Avatar for rishif2
0
329
Member Avatar for TroxAlmighty

> i am using access for my database. microsoft access to be exact. try this:- con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\db.mdb;Persist Security Info=False"

Member Avatar for Reverend Jim
0
116
Member Avatar for Payal Gupta

payal , welcome to daniweb its really interesting and i am sure that you will get more help here.(people here , are more supportive in nature).

Member Avatar for <M/>
0
214
Member Avatar for sonunclejalil

this is because you open a connection which is already opened.First you open the connection inside `OpenConnection()` procedure and then again you open the connection in `cmdfind_Click()` procedure. so remove line 7 from `cmdfind_Click()` procedure. you should also consider followings:- when you done a database task then don't forget to …

Member Avatar for sonunclejalil
0
3K
Member Avatar for jemartalaban_1

you need to use `CurrentX` for each line with a value and then check if the value set the text to centered align . `Printer.CurrentX = <value>`

Member Avatar for jemartalaban_1
0
193
Member Avatar for disha malik

do it yourself.we don't do your homework here. and if you wanna get help then put you efforts here ?

Member Avatar for rishif2
-1
86
Member Avatar for Ann Krizette

to get the answer you just need to introduce your table structure with some data in it ? then we will try to solve this issue.

Member Avatar for Ann Krizette
0
276
Member Avatar for uttkarshsing

sorry for disturbing but i've a question . > Example of function overloading > > void getdata(int a,int b); > int getdata(int a,int b); is this possible to perform overloading on the basis of their return type ? i think NOT POSSIBLE.

Member Avatar for deceptikon
0
201
Member Avatar for alina.nazchowdhury

a few things : Private Sub Form_Load() For i = 1 To Screen.FontCount - 1 Combo1.AddItem Screen.Fonts(i) Next the above statment will load all fonts available in combo1. ok. > For i = 5 To 300 > Combo1.ListIndex = 0 > Combo2.ListIndex = 5 > > End Sub here i …

Member Avatar for rishif2
0
217
Member Avatar for vishal anand.s

> "D:\Workarea\vishal\Project\DCS Clinical Report.dotx", App.Path & "\report11.docx" is that correct file name ? did you add proper references before going to access word file.?

Member Avatar for rishif2
0
1K
Member Avatar for mavtcr

would you put here your table structure with some data in it ? then we will try to solve the issue .

Member Avatar for mavtcr
0
140
Member Avatar for akasekaihime

first off, don't raise old threads. > can you help me to the code of it ,, it include user log-in , then the transaction and receit,, > please help me here , i think nobody will do this for you. users are independent to help others and we are …

Member Avatar for rishif2
0
470
Member Avatar for eukiandfhull

don't raise old threads create a new thread for your problem and there we will try to solve the thread . . .

Member Avatar for rishif2
0
527
Member Avatar for rishif2

Actually while working with vb6 i saved project and its related forms to the default folder(c:\program files\microsoft visual studio 6\vb98) and these files saved successfully. But the problem arise when i open this path(c:\program files\microsoft visual studio 6\vb98 ) And there i found that these files are not there but …

Member Avatar for gerbil
0
158
Member Avatar for MBBS

Question already asked [Here](http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/463753/how-to-set-opposite-interval-of-timer-control) and we properly explained that. Please don't create new threads with old questions (little practice you have made in order to solve the problem)

Member Avatar for rishif2
0
153
Member Avatar for Shigolala22

what do you mean by disable keyboard and mouse. as i'm not sure what you want to do by disabling both keyboard and mouse(VB is Event Driven Programing and most events are from keyboard and mouse).

Member Avatar for debasisdas
0
179
Member Avatar for SaRa Ahmad

its simple , just use FileName with commondialog box try this CommonDialog1.ShowOpen Txt.Text = CommonDialog1.FileName hope this helps you . . .

Member Avatar for rishif2
1
161
Member Avatar for MBBS

> You set the interval to whatever value you want. yes , you can set interval property to the value what you want . > If timer interval is set to low that progress bar speed is slow > If timer interval is high that progress bar speed is high. …

Member Avatar for rishif2
0
314
Member Avatar for mheja

@RonalBertogi why `nextId = 1` ? remove 3rd Line. Because when the table is with no data then nextid will be 2(due to `nextId` initialise with 1 and at last incremented by 1) which is not right. it should be 1 when table is empty.

Member Avatar for MEENAU
0
636
Member Avatar for vividiah
Member Avatar for EXTRA_RICE

make proper use of datediff function try this x_var = DateDiff("m", dt1, dt2) If (x_var = 1) Then MsgBox "Product will expire after one month" End If

Member Avatar for emmy3G
0
110
Member Avatar for irtza

first off, i don't do java programing ,so i can't provide the solution with java syntax but i try to put the logic behind this : first calculate the length-1 of the number[for ex:- number=1234 then length-1=3(4-1)(i hope you can do this)] use power fuction : `a=pow(10,3) //3 is length-1` …

Member Avatar for jwenting
0
618
Member Avatar for vividiah

The End.