all groups > vj# > august 2004
Using Apache POI in J#
Posted by krc at 8/26/2004 6:04:19 PM
Hello, can Apache's POI api be implemented intto J# for VS.NET.
If possible, where do I set the classpath to point to the jar file.
Thanks
... more >>
Looping through IHTMLAttributeCollection in J#.
Posted by Bob at 8/24/2004 7:43:53 AM
How can I loop through the IHTMLAttributeCollection in J#.
In C#, I can do it as follows:
IHTMLAttributeCollection myAttrColl =
(IHTMLAttributeCollection) myNode. attributes;
IHTMLDOMAttribute myAttr;
foreach myAttr in myAttrColl
{
if (myAttr.specified) //do something
}
But in J... more >>
open a htaccess-secured url
Posted by Oliver Neumann at 8/23/2004 9:29:04 PM
Hello,
can somebody tell me how i can open a site who is secured by htaccess ? I
created the url and the urlconnection but i dont know how i could enter the
password and username for the access.
Any help is appreciated...
thanks!
Oliver
... more >>
visual J++ 6.0 question
Posted by skw at 8/23/2004 8:13:54 AM
sorry to post j++ question in j# newsgroup
- but i can't find any j++ newsgroup at all, so I think this may be a good
place to find old j++ developers...
the question is: my computer is down from power failure at the time j++ is
on... and j++ is never on afterwards... every time i start j++,... more >>
Equivalent of String.fromCharCode() method in J#
Posted by Bob at 8/18/2004 5:28:05 PM
In Jscript, fromCharCode returns a string from a number of
Unicode character values.
In the following example, test contains the string "plain":
var test = String.fromCharCode(112, 108, 97, 105, 110);
Does anyone know the equivalent of this method in J#?
Thanks,
Bob
... more >>
Bad math when using * operator along with Math.pow
Posted by (webmaster NO[at]SPAM nahnet.com) at 8/14/2004 12:19:06 AM
Check out this code. I need to be able to multiply a 15 digit decimal number by 10 to the power of 15, and come up with the correct answer. Easy enough for other languages to do, but J# seems to choke on it. Here's the code.
private void button1_Click (Object sender, System.EventArgs e)
{
dou... more >>
Help from Lars...PLEASE??
Posted by Jay C. Canale at 8/13/2004 8:37:19 AM
Lars,
In the past I had talked with you on getting some help with J# Browser
Controls. You were a big help and now it looks like I need your help again.
I explained to you before that the company I work for has been producing
electronic textbooks on CD-ROM that displays in Internet Explore... more >>
[HELP] Is J# for me ??
Posted by jcanale NO[at]SPAM nycap.rr.com at 8/11/2004 5:01:21 AM
Hello,
I am new to the whole .NET family and I have a question on developing
with Visual J# or C#. You see I have, in the past, worked on several
projects with engineers who develop manuals for electrical contractors and
students. The material is written with Word and then converted to HTML ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
JDBC and insert in VJ#
Posted by Sunder Balachander via .NET 247 at 8/5/2004 6:58:21 PM
(Type your message here)
--------------------------------
From: Sunder Balachander
I have a problem the corresponding code works fine with Java but=
the sam I am not able to in VJ# i am using VJ# 2005 beta express=
Edition =2E I am not able insert into MS-Access database using the=
foll... more >>
JetBrains ReSharper
Posted by Morozov at 8/5/2004 2:07:31 PM
ReSharper is an add-in for Microsoft Visual Studio .NET 2003T that brings
intelligent C# coding assistance, real-time error highlighting and quick
fixing, and advanced refactoring features to this popular development
platform.
ReSharper provides C# developers with many of the same powerful
pr... more >>
Displaying Unicode characters in J#
Posted by Bob at 8/1/2004 5:35:02 PM
How can we display greek letters in J#. E.g, the following
JScript displays Greek letter Beta. In J#, I tried:
System.out.println("\u03B2");
but it returns NULL.
To display the letter beta, save the following as html and
open the file in IE.
Thanks,
Bob
<html>
<head>
<script ... more >>
|