179 Posted Topics
Re: This help? [url]http://answers.yahoo.com/question/index?qid=20080212072506AAykqw7[/url] | |
Re: Why don't you just use one of the programs that do this already like basckstreet browser? If it's some sort of project for school, your workplace etc. then what you need to remember is we are not trying to get a grade or getting paid, you are and as such … | |
Re: I've created a VB.Net project and on short term added a C# class to it and it worked fine - I've also done the opposite as well so you should be able to add them. Not on the same form mind you but you could have separate forms in those … | |
Re: I don't understand your question. What do you want to save and update, your code? What do you have and where are you stuck? | |
Hey all, I have been tasked with figuring out a way to automate a form letter process that currently is done mostly by hand with a lot of copy/paste. We have letters that need to get sent out based on our internal system. Someone now looks up the items in … | |
Re: I'm not totally sure where you're stuck. Have you tried to google this? I did and the first result has an example of a static read . . . are you unsure of the concepts? are you trying but getting an error? I'm sorry, I'm just not sure what it … | |
Hello all, I have been tasked with figuring out a way to automate a form letter process that currently is done mostly by hand with a lot of copy/paste. We have letters that need to get sent out based on our internal system. Someone now looks up the items in … | |
Nobody is going to interact with you by way of email - first of all it doesn't help anyone else who has a similar problem and searches the site, and secondly we're not going to get 'tied' to helping you in that way or bothered with 100,000,000 questions in our … | |
Re: [url]http://social.msdn.microsoft.com/Forums/en-US/Vsexpressvb/thread/c866d0d9-9361-4aca-9131-b8c233057f12/[/url] | |
Re: I think since you "can't" use textbox and have to use input box then your best bet is to switch it to a string and then try to parse the input. If you can then it's numeric and you can go with it but if it can't be parsed then … | |
Re: First of all - if you surround your code with "[code] [/code]" then people will respond quicker. Secondly, in an if statement you follow this line of resaoning if condition is met then perform the routine then go directly to "end if" do not pass go and do not collect … | |
Re: Is this complete? if not - on #2 see Class Derivation about halfway down on [url]http://functionx.com/csharp/Lesson14.htm[/url] partial start of code [code] using System; public class Circle { private double _radius; public double Radius { get { return _radius; } [/code] For #3 - do you have to store them in … | |
Re: I know this is csharp corner but the article is on vb.net [url]http://www.c-sharpcorner.com/UploadFile/mahesh/WorkingWithStringsP311232005021723AM/WorkingWithStringsP3.aspx[/url] | |
I have the following code which outputs incorrectly. [code] public static void extend(ArrayList priceList, ArrayList quantityList, ArrayList amountList){ for(int i = 0; i < priceList.size(); i++){ amountList.add((Double)priceList.get(i) * (Double)quantityList.get(i)); System.out.println(priceList.get(i) + " * " + quantityList.get(i) + " = " + amountList.get(i) ); } [/code] The output for some of … | |
Re: hmm wierd, what didn't you find? I typed in java play audio file and found a ton of stuff in google . . . | |
Re: which number = 0 did you take out? you need to take out? You have two of them, and one of them doesn't even end the line with a semi-colon ddanbe - who knows what IDE he is using if any - but doesn't eclipse do that for him automatically … | |
Re: Sure someone can help you finish your code. But we won't do it for you. Adding to Ezzaral's suggestion, start with a small piece and get that where you need it to be. Breaking it down to the smallest possible bit you need to get something accomplished. If that's just … | |
| |
Re: Personally I like the required field validators for this sort of stuff, but if you wanted an if statement you can also combine them into one [code] If(textbox1 == "" || textbox2 == "" || textbox3 == "") label = "Hey dude you left a textbox blank on us" [/code] … | |
I'm having trouble getting this while loop to stop and look for a new input. Obviously the while loop is infinite because I don't get new input. I know this is easy but I'm still stuck here is my while loop [code] while (guessInt != randInt){ setPrevGuess(guessInt); guessInt = Integer.parseInt(GuessGame.numberField.getText()); … | |
Re: nandomendoza start with writing pseudocode of what you want your program to do. It's just plain english start program --program does this --if program input is this then do this etc after you get that done then go to the smallest thing you know how to do. Maybe it's declare … | |
Re: I didn't think he was asking to have us code the project, he was asking if it could be done. Maybe I read it incorrectly, I think what you're looking for is here (funny, I'm doing a similar project for school as well) [url]http://java.sun.com/docs/books/tutorial/uiswing/components/tabbedpane.html[/url] | |
Re: Does this help you? [url]http://www.syncfusion.com/faq/windowsforms/faq_c4c.aspx[/url] | |
Re: I'm interested to see what goes on with this one, why wouldn't you need his line in bold to be this? [code] if(p.getCoinName(coinName).equalsIgnoreCase(coinName)) [/code] I'm very new to Java so please be kind if I'm completely lost, just trying to follow what's going on even though I don't know the … | |
Hello, I need help on this project for school. My instructions are "Write a program called OfficeAreaCalculator.java that displays the following prompts using two label components: Enter the length of the office: Enter the width of the office: Have your program accept the user input in two text fields. When … | |
Re: I need to look back at what I did with asp.net and try to figure out the differences in datagrid from forms to asp | |
Re: rofl - I need to figure out how you did that. (geeze Comatose, I just noticed you were in MI - I hope your not a Wolverine!) :) | |
Re: Do you bind the data to the datagrid somewhere? I'm newer but have successfully used the datagrid on a previous project. (Although I used a stored procedure to make the SQL call) I do know I had to bind the info to the datagrid . . . I actually think … | |
Re: Try searching this site or google for Final Project or Final Project Ideas | |
Re: k4kasun, I'm currently a junior working on a dual degree in systems administration and information systems with a concentration on web programming. I have a full time job an hour away from home, have been married 18 years (so I’m not young) with three kids. I coach my kids in … | |
Re: I've not used this stuff but I did find a few here: [url]http://www.vclcomponents.com/catalog/Documentation[/url] again, I have no real recommendation on them. I was searching things like open source Doc-O-Matic | |
Re: RamyMahrous, I know that will run it from visual studio but he wants to publish it to run outside visual studio right? Will that still work or will he need to click build and then publish? | |
Re: you can also use the required field validators in the toolbox regardless this thread should be marked as solved | |
Re: Are you just asking if you can add a rich textbox? I don't understand your question either . . .of course you can add a textbox or a rich textbox in vb.net, is it the same as in Word - probably not. | |
Re: Maybe the others will have more info 1. Please use code tags when supplying code (it's easier to read) 2. Appears to be a SQL problem - try searching "is not a recognized optimizer lock hints option" and there is a ton out there | |
Re: I don't know, try reading this [url]http://www.ondotnet.com/pub/a/dotnet/2002/10/28/listview.html[/url] | |
Re: Look at what's available in System.Date | |
Re: Bob - your response could have been, can you tell me how to open exe/DLL ? Just because someone assumes you know doesn't mean they are trying to be a jerk. I'm glad you found it, if you have other problems let us know - and mark you post solved … | |
Not sure if this is the right place or not, I'm trying to create a script to learn scripting better before editing the login script at work. I'm getting an error while trying to run this piece, can anyone tell me what's missing? it's supposed to check running processes and … | |
Re: Interesting, I've used system.net.mail but didn't realize there was an attachment class built in, not sure why. For the record, I'm not certain he was pointing you towards the mail class either, just posting a comment on something I picked up here. | |
Re: I don't understand what you need. First of all you say you don't have a problem, then you say you do have a problem but you have not given any idea of what you've done or exactly what your problem is. | |
Re: You need to send him what he's asking for. Frankly, if all you're doing is copying code from a book to some software it's going to be VERY difficult for you to understand what's wrong. | |
Re: Danny, You know I'm new and you're way beyond me, however; I don't see how you could change it other than to use 'less than' along with 'and' for your first statement or to use case statements . . . your nested if just determines which or statement was true … | |
Re: this is supposed to update the database? [code] Me.FriendsTableAdapter.Update(Me.TestDB2DataSet.Friends) [/code] I've never done it that way, how does it work? | |
Re: you're posting to a thread that's over 2 years old | |
Re: no clue personally but I did find this, maybe it helps and maybe I'm strung out on coffee and lima beans. [url]http://social.msdn.microsoft.com/forums/en-US/Vsexpressvb/thread/c0fdfccb-f546-440e-bd06-8e8b0abbd9f2/[/url] | |
Re: My question is: Do you understand what they posted for you or are you just copy/paste and trying a few different things? Do you have to change the imports to [code] Imports System.IO.StreamReader [/code] I'm not sure, I know StreamReader is in IO . . . | |
Re: I don't have to "try" to create a web page - why don't you do it and then ask someone if they approve. :) | |
Re: Tobbek Maybe you're used to working with global variables? |
The End.