-
Replied To a Post in How to create Trial
the above code is not working . My IDE does not understand the statement at line 8. -
Edited How to create Trial
hello , today i suddenly think about creating an application that has limited uses . i mean after using an application for 30 days , it should not start the … -
Created How to create Trial
hello , today i suddenly think about creating an application that has limited uses . i mean after using an application for 30 days , it should not start the … -
Began Watching How to create Trial
hello , today i suddenly think about creating an application that has limited uses . i mean after using an application for 30 days , it should not start the … -
Replied To a Post in Bad Grammar
i was wondering if you could provide some more interesting words.But i think that `queue` is the only word i also find the same word(i.e. queue).I think that queue is … -
Replied To a Post in Bad Grammar
> goddessship > frillless any proof that prove it. i don't think of these words to be universally accepted. goddessship= i think should be like goddess-ship.[Click Here](http://www.collinsdictionary.com/dictionary/english/goddess-ship). that all about … -
Marked Solved Status for unload child form in mdi form
hello today i start writing an application which uses mdi forms(its new to me). and i use the following code:(i set form1=idmdicontainer=true) , is this correct way to create mdi … -
Replied To a Post in unload child form in mdi form
after stressing more on this issue , i got the solution. here i would like to share it (in the hope that if somebody who is facing the same problem … -
Replied To a Post in unload child form in mdi form
> Me.ActiveMdiChild().Close() okay it should work. But what i need is something different i want that first it should check if mdicontainer contains mdichild or not. if it contains then … -
Created unload child form in mdi form
hello today i start writing an application which uses mdi forms(its new to me). and i use the following code:(i set form1=idmdicontainer=true) , is this correct way to create mdi … -
Began Watching unload child form in mdi form
hello today i start writing an application which uses mdi forms(its new to me). and i use the following code:(i set form1=idmdicontainer=true) , is this correct way to create mdi … -
Edited want to know everything about barcode and QR code
hello , today i read about barcodes and QRcodes . well i see barcodes / QR codes and often see them on almost every product. But as a programming learner … -
Edited want to know everything about barcode and QR code
hello , today i read about barcodes and QRcodes . well i see barcodes / QR codes and often see them on almost every product. But as a programming learner … -
Created want to know everything about barcode and QR code
hello , today i read about barcodes and QRcodes . well i see barcodes / QR codes and often see them on almost every product. But as a programming learner … -
Began Watching want to know everything about barcode and QR code
hello , today i read about barcodes and QRcodes . well i see barcodes / QR codes and often see them on almost every product. But as a programming learner … -
Replied To a Post in Happy New Year Daniweb
> I hate the new year Why So? -
Replied To a Post in Beginner's Tutorial On Loop
> which one do you think is easier to read and understand ? Obviously Loops. i didn't meet with such a condition where goto is the only choice .i read … -
Replied To a Post in List box
seems contraversy between the picture you added here and your last reply ? you wanna show email in listbox , thats ok. i got it but what about spaces , … -
Began Watching List box
In a list box some email now I will that the corresponding name to the email rs.MoveLast rs.MoveFirst max = rs.RecordCount rs.MoveFirst LstData3.Clear List1e.Clear For i = 1 To max … -
Replied To a Post in List box
where you are printing the result ? on form ? or other place holder ? -
Began Watching Run vb.exe on other computer
Hello, i have created a vb project and have publish it. There is no problem in running the vb.exe in my laptop but when, i try installing the vb.exe in … -
Replied To a Post in Run vb.exe on other computer
> I need the vb.exe to run on its own, with or without the visual studio. Any suggestion? you need to use package and deployment wizard. It will create installer … -
Gave Reputation to Warrens80 in Happy New Year Daniweb
What the crap i say something about the christmas and i get to down votes. -
Began Watching Happy New Year Daniweb
Happy New Year Guys -
Replied To a Post in Happy New Year Daniweb
Happy Christmas and New Year. -
Replied To a Post in Alan Turing, father of computer science, finally gets royal pardon
> Was that really a serious question i read about homosexual relationship and found that still there are some countries which are against of it. that's why i asked for … -
Began Watching Alan Turing, father of computer science, finally gets royal pardon
If you don't know who [Alan Turing](http://en.wikipedia.org/wiki/Alan_Turing) was, then shame on you. The British code breaker, mathematics genius and father of both computer science and artificial intelligence is rightly credited … -
Replied To a Post in Alan Turing, father of computer science, finally gets royal pardon
does 'homosexual activity' still prohibited in UK ? i think being a gay isn't a crime . That's my personal opinion. -
Gave Reputation to Dani in New feature: members who contributed
When browsing a forum listing, you can now click on the link that tells how many replies there have been to load a lightbox showing how many contributors there have … -
Replied To a Post in Counting Integers
Replace this: > System.out.println("The number of integers is " + count++);" with System.out.println("The number of integers is " + count++); @kal_crazy why should not have break in else part because … -
Replied To a Post in Counting Integers
try this: import java.util.Scanner; public class IntegerCount { public static void main(String[] args) { int num,count=0; Scanner input = new Scanner(System.in); System.out.print("Enter an integer, the input ends if it is … -
Replied To a Post in Pentagonal Numbers
what output you are getting ? -
Replied To a Post in Pentagonal Numbers
you can write an additional condition like this(inside while): if(n1==n) System.out.print(x); else System.out.print(x+" "); -
Replied To a Post in Pentagonal Numbers
import java.util.Scanner; public class Pentagonal { public static void main(String[] args) { int n,x,n1; Scanner input = new Scanner(System.in); System.out.print("How Many Elements you want in the sequence "); n = … -
Began Watching Counting Integers
This is a code that I wrote and for some odd reason it doesn't count the number of inputted integers properly. import java.util.Scanner; public class IntegerCount { public static void … -
Replied To a Post in Counting Integers
while(num!=0) { count++; //here again write code with to get input to `num` variable } System.out.print("Total Integer Numbers="+count); -
Replied To a Post in Pentagonal Numbers
Read the second line of my just above post. you have to get input into `n` variable and that's your limit of the pentagonal number sequences. for example if give … -
Began Watching Log in form
Good Day, how can i put a username and password in form? in Visual Basic 2008 -
Replied To a Post in Log in form
here i am telling the way what i used for it (you can also use predefined forms for this purpose). just create two label and textboxes and one button . … -
Replied To a Post in Pentagonal Numbers
try this: int n,x,n1; //here write code for getting input to n variable n1=1; while (n1<=n) { x = (3*n1*n1 - n1)/2; System.out.print(x+" "); n1++; } hope this helps -
Replied To a Post in ++ sign and -- sign
> the compiler is free to produce any results it wants. i check these expression in different environment and they produce different result. i think these expression are compiler dependent. -
Replied To a Post in deserialize json result in vb.net
> It would've more helpful if you had added this to your original thread sorry for that. I thought that asking more questions in a single thread is not suitable … -
Created deserialize json result in vb.net
i'm using VS 2008 for window application and made an http web request and it returns result in json([click here for json result](http://www.daniweb.com/api/articles/448095)). I am not much familiar with JSON … -
Began Watching deserialize json result in vb.net
i'm using VS 2008 for window application and made an http web request and it returns result in json([click here for json result](http://www.daniweb.com/api/articles/448095)). I am not much familiar with JSON … -
Began Watching Pentagonal Numbers
I am trying to do an assignment that requires us to do something with pentagonal numbers. This is my code: import java.util.Scanner; public class Pentagonal { public static void main(String[] … -
Replied To a Post in Pentagonal Numbers
logic seems to be correct if you need the numbers in same line with tabs.use `"\t"` in print statement.if you need to print the number specific times then implement logic … -
Began Watching Help with Psuedocode Simple Array Process
what does the DIM mean in this code? I understand everything else. Process 1. Display “Salary Average” as program title 2. Prompt user for employee names 3. Prompt user for … -
Replied To a Post in Help with Psuedocode Simple Array Process
`dim` statement is used to decalre one or more variables in vb. one suggestion : Never use of space in Identifiers.Its against the naming rules. -
Began Watching ++ sign and -- sign
what can(++)and(--) do in c++ source code? -
Replied To a Post in ++ sign and -- sign
> what can(++)and(--) do in c++ source code? ++ increase the variable value by 1. int x=0; cout<<x<<endl; x++; cout<<x; output: 0 1 lets see more about `++.` x++(postfix) ++x(prefix) …
The End.