179 Posted Topics

Member Avatar for millanskie

This help? [url]http://answers.yahoo.com/question/index?qid=20080212072506AAykqw7[/url]

Member Avatar for tmani_85
0
163
Member Avatar for sannidhikumar99

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 …

Member Avatar for stultuske
-1
131
Member Avatar for lili.zdh

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 …

Member Avatar for lili.zdh
0
176
Member Avatar for jufer12

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?

Member Avatar for rapture
-1
59
Member Avatar for rapture

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 …

Member Avatar for rapture
0
102
Member Avatar for jdbarry

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 …

Member Avatar for BestJewSinceJC
0
176
Member Avatar for rapture

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 …

Member Avatar for rapture
0
111
Member Avatar for rapture

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 …

Member Avatar for rapture
0
99
Member Avatar for Alexpap

[url]http://social.msdn.microsoft.com/Forums/en-US/Vsexpressvb/thread/c866d0d9-9361-4aca-9131-b8c233057f12/[/url]

Member Avatar for martonx
0
98
Member Avatar for Trekker182

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 …

Member Avatar for Trekker182
0
2K
Member Avatar for TriceD

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 …

Member Avatar for TriceD
0
118
Member Avatar for drfarzad

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 …

Member Avatar for rapture
0
144
Member Avatar for Datanizze

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]

Member Avatar for rapture
0
131
Member Avatar for rapture

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 …

Member Avatar for sillyboy
0
112
Member Avatar for localp

hmm wierd, what didn't you find? I typed in java play audio file and found a ton of stuff in google . . .

Member Avatar for localp
0
181
Member Avatar for lion_crazz

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 …

Member Avatar for ddanbe
0
124
Member Avatar for zangster421k

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 …

Member Avatar for javaAddict
0
189
Member Avatar for asif786
Member Avatar for Digvijaysinh

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] …

Member Avatar for rapture
0
523
Member Avatar for rapture

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()); …

Member Avatar for rapture
0
89
Member Avatar for nandomendoza

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 …

Member Avatar for verruckt24
0
116
Member Avatar for tksrules

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]

Member Avatar for rapture
-1
116
Member Avatar for polo_coins

Does this help you? [url]http://www.syncfusion.com/faq/windowsforms/faq_c4c.aspx[/url]

Member Avatar for nishmay14
0
138
Member Avatar for neighbordave

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 …

Member Avatar for Ezzaral
0
233
Member Avatar for rapture

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 …

Member Avatar for rapture
0
119
Member Avatar for bajanpoet

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

Member Avatar for bajanpoet
0
166
Member Avatar for aruna.belludi

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!) :)

Member Avatar for rapture
0
58
Member Avatar for bajanpoet

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 …

Member Avatar for bajanpoet
0
525
Member Avatar for kupneesh

Try searching this site or google for Final Project or Final Project Ideas

Member Avatar for ithelp
0
99
Member Avatar for k4kasun

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 …

Member Avatar for k4kasun
0
175
Member Avatar for Gizmo89

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

Member Avatar for Gizmo89
0
77
Member Avatar for yara.008

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?

Member Avatar for Teme64
0
185
Member Avatar for manoj_582033

you can also use the required field validators in the toolbox regardless this thread should be marked as solved

Member Avatar for rapture
0
125
Member Avatar for yuleball

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.

Member Avatar for lostandfound
0
93
Member Avatar for bajanpoet

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

Member Avatar for bajanpoet
0
116
Member Avatar for muhammad ismail

I don't know, try reading this [url]http://www.ondotnet.com/pub/a/dotnet/2002/10/28/listview.html[/url]

Member Avatar for rapture
0
49
Member Avatar for jalpaeol
Member Avatar for shers
Member Avatar for BobLewiston

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 …

Member Avatar for Ramy Mahrous
0
95
Member Avatar for rapture

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 …

0
83
Member Avatar for kashyapanirudh

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.

Member Avatar for Ramy Mahrous
0
80
Member Avatar for eiluj

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.

Member Avatar for ithelp
0
81
Member Avatar for lolHANNAHH

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.

Member Avatar for rapture
0
102
Member Avatar for ddanbe

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 …

Member Avatar for LizR
0
114
Member Avatar for Datsun90

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?

Member Avatar for Datsun90
0
160
Member Avatar for sunnyalways1234
Member Avatar for DougC

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]

Member Avatar for edgar5
0
132
Member Avatar for ShadyxxLady

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 . . .

Member Avatar for ShadyxxLady
0
4K
Member Avatar for Century

I don't have to "try" to create a web page - why don't you do it and then ask someone if they approve. :)

Member Avatar for rapture
0
52
Member Avatar for TobbeK

The End.