108 Posted Topics

Member Avatar for smgtreker

You don't install the webservice. You just use it in your application. A webservice just takes input and returns a result....it's not something you have to install. You will, however, have to create the webservice on the actual webserver you use. But that won't have the client application You can …

Member Avatar for Iron_Cross
0
89
Member Avatar for ballapraveen

You can use it without writing it back to storage. Just look into the XmlReader and XmlDocument classes. Just don't save it back to the hdd.

Member Avatar for Iron_Cross
0
69
Member Avatar for raochowdary

It's the exact same as if you were doing it on a desktop application. ASP.NET doesn't change anything.

Member Avatar for Iron_Cross
0
93
Member Avatar for gicio

[QUOTE=jackster]how could u turna string straight to a dataaset[/QUOTE] I recently wrote a program that did exactly that. It imported a .csv file into a dataset then exported all the data to a SQL Server 2000 DB. I would give you the source, except there is a lot happening in …

Member Avatar for jujubee
0
392
Member Avatar for Toulinwoek

I've used #Develop and VS.NET 2003. And there is a world of difference! #Develop is good if you're doing simple tasks, and not in a work environment. If you are at all concerned with scheduels and the like, use VS.NET. I know it's not free or open source, but it's …

Member Avatar for Toulinwoek
0
243
Member Avatar for DeFrog777

C# is my favorite, it's got a nice clean syntax. Easy to learn, easy to implement. VB (in any form) makes me shudder. C++ managed...why(you could just use C# :D )?! That's my oppinion.

Member Avatar for Iron_Cross
0
481
Member Avatar for oleerik

To print to an actual document you're going to have to use a PrintDocument object, and override the PRINT event. Keep in mind though, that printing to a printer is very tricky at times, it's just like drawing with the 2D API. It's not like writing text to the screen, …

Member Avatar for Iron_Cross
0
120
Member Avatar for crypter

Just because it tells you there's an error doesn't mean your using try/catch block correctly. It will tell you there is an error even if you have [b]any[/b] try/catch blocks. You need to try to [b]handle[/b] the error in the try catch block. From what you described, you need to …

Member Avatar for crypter
0
130
Member Avatar for manucherian3031
Member Avatar for Iron_Cross
0
74
Member Avatar for Richie

Please use the code blocks next time :) Option Strict On Public Class videoBonanzaSaleForm Inherits System.Windows.Forms.Form ' Declare Constants Const DVD_PRICE_Decimal As Decimal = 2.5D Const NEW_RELEASE_DVD_Decimal As Decimal = 3D Const VHS_PRICE_Decimal As Decimal = 1.8D Const NEW_RELEASE_VHS_Decimal As Decimal = 2D Const DISCOUNT_RATE_Decimal As Decimal = 0.1D ' …

Member Avatar for Iron_Cross
0
132
Member Avatar for crypter

There are several ways to do that, I would go about it this way: [code] // the encrypt button event handler encrypt_Click(object sender, EventArgs e) { // assuming you've named the text box for the key txtKey and the // combo box for the encryption type cboEnc do the following …

Member Avatar for crypter
0
112
Member Avatar for Mayur

Maybe you're using the wrong encoding? (i.e. ASCII or Unicode. I'd try using unicode, see if that helps)

Member Avatar for Iron_Cross
0
78
Member Avatar for Ghost

I know this thread has been marked solved, but for anyone else wondering the same thing; you could also use the == operator. It's been overloaded in C#, so it works just fine ;)

Member Avatar for Iron_Cross
0
139
Member Avatar for jabberwock486

an awesome site for learning perl is [url]http://oreilly.codecastle.com/[/url] Now for C++ over Perl....That's tough. I agree that C++ is more useful (though if you are planning on working *nix environments perl might be a tad more useful). I also agree that C++ teachs an awesome base for syntax, many other …

Member Avatar for liliafan
0
290
Member Avatar for beeman81

Hmm, I can't see his sites, so i have no say on the matter. But from what i've seen, I think Tekmaven was just trying to help, not be mean. Just what i saw :P

Member Avatar for Young Teck 06
0
241
Member Avatar for Dani

It looks to me like you were trying to make a statement and were proven wrong :D

Member Avatar for guitarded
0
420
Member Avatar for grootjan
Member Avatar for mmr

So long as you have an instance of the second internal frame in the class with the listeners it shouldn't be that hard. If worste comes to worste make the instance of the second internal frame static. Also could you post some of your code, or explain why you're having …

Member Avatar for tigerxx
0
140
Member Avatar for kumar25

If you're having trouble try reading in the integers into an array. Or you could turn the string into an array with the CopyTo() method or ToArray() methods.

Member Avatar for alc6379
0
195
Member Avatar for Bill T

Umm...what are you tryng to do? To use an array (for example and array of int's) you just do this int[] dieSides = new int[6]; dieSides[0] = 1; dieSides[1] = 2; etc..

Member Avatar for Iron_Cross
0
113
Member Avatar for blackbird

What do you want to know about it? If you use C#.NET it's like Java. If you use C++.NET it's like C++. If you use VB.NET it's like VB. If you use J++ or J#.net it's like java (1.1). If you use Perl.NET it's like perl. If you use Python.NET …

Member Avatar for Iron_Cross
0
78
Member Avatar for nanosani

No it's not. The closest thing you'll be able to do is to use a HashMap. Which is a list of key/value pairs. The string would be the key, and the object would be the value. [code] public class HashTest { private HashMap objList; private Object obj; private String objName; …

Member Avatar for freesoft_2000
0
209
Member Avatar for genius

Could you give us the code example, that might help us answer you question faster. Thanks :)

Member Avatar for Iron_Cross
0
83
Member Avatar for izaki

go to [url]www.seclude.org[/url] it's an entire messaging system, like aim or msn or whatnot. It's written in Java, and it's fully open source and free to download. It also implements some very advanced encryption techniques. It's quite possibly the safest way to talk over the internet. Download it and see …

Member Avatar for Iron_Cross
1
162
Member Avatar for zid

have you tried something like System.exec("fileName.exe"); Of course, from an applet you couldn't do this unless you were granted full permissions in security.

Member Avatar for zid
0
131
Member Avatar for freesoft_2000

[url]http://java.sun.com/[/url] If you think I'm being stupid, just search there. I swear they have better tutorials there than anywhere else on the web.

Member Avatar for avinashjava
0
161
Member Avatar for Bill T

// import java.io package and utility packages import java.io.*; import java.util.*; class Stopwatch{ //declared outside of all methods private long startTime; public void start() { GregorianCalendar now = new GregorianCalendar(); startTime = now.getTimeInMillis(); } public void showElapsedTime() { GregorianCalendar now = new GregorianCalendar(); long currTime = now.getTimeInMillis(); long difference = …

Member Avatar for Bill T
0
136
Member Avatar for tsabar

My guess is that it's the cache. That happens to me too only when I'm developing in ASP.NET my computer caches the page, so I have to hit refresh to see the updated page. Just give it an hour or so and you sohuld be fine. I think you can …

Member Avatar for pcarlow
0
324
Member Avatar for ecashwell

Ok, well I'm assuming you know you're running your scripts on a .NET enabled server. Also, I'm assuming you're using your WebForm1.aspx.vb as your code behind page (which is loaded at the top of the *.aspx page. If this isn't the case, take off the .vb I.e. don't type in …

Member Avatar for ecashwell
0
248
Member Avatar for smartdetect
Member Avatar for Iron_Cross
0
102

The End.