all groups > dotnet general > october 2004 > threads for monday october 11
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Hyper Link problem
Posted by VIJAY KUMAR at 10/11/2004 11:53:02 PM
Hi pals,
I am using 2 web forms (pages). In first page, i have Datagrid control
and on second page i have a hyper link control to the first page and Add
value to the data grid/Database.
Problem:
when I click on the hyperlink on the second page, i am getting the first
page with... more >>
Can .NET mix with Java ?
Posted by Peter at 10/11/2004 11:29:07 PM
My client wants to develop a web application using Java. I have several
questions and seeking for MVP advise.
1. Does IIS support Sun Micro Java?
2. Is it possible for .NET to mix with Java, servlet, JSP etc?
3. Can I a ASP.NET call Java servlet?
4. Can I mix MS Web Service with Java?
... more >>
simple formatting question
Posted by JohnE at 10/11/2004 11:09:04 PM
I am a newbie and embarrassed to ask the following. I have a textbox in
which the telephone number goes. I want the user to just type in the numbers
and on leaving, it formats to (000) 000-0000 style. I've got it all with the
exception of how do you get it into that style with Leave? I sai... more >>
sending email please somebody help Im confuseed
Posted by mahsa at 10/11/2004 10:13:05 PM
hi I have this code
MailMessage objEmail = new MailMessage();
objEmail.To = "ma_em@yahoo.com";
objEmail.From = "INFO@FLNE.COM";
objEmail.Cc = "msa_em@yahoo.com";
objEmail.Subject = "Test Email";
objEmail.Body = "test" ;
objEmail.Priority = MailPriority.High;
//SmtpMail.SmtpS... more >>
Javascript problem
Posted by Aaron at 10/11/2004 7:40:42 PM
how would i use document.write to write this input box? i can do it without
quotes but i need them for my purpose
<input type="textbox" name="input" value="something">
i did this but it doesn't have the double quotes
document.write( '<input type="textbox" name="input" ' + 'value="' +
entere... more >>
(Not) Running Release version on target machine
Posted by Plumer at 10/11/2004 5:37:02 PM
Good morning everyone,
I am having difficulty distributing a Release version of an application.
System info
C# DOTNET, MDE 2002, Version 7.0.9466
.Net Framework, version 1.0.3705
My Desktop Operating system (as reported by Control Panel.System) is:
Windows XP, Version 2002
My Laptop... more >>
anyway to get the hardware id to identify client platform?
Posted by benny at 10/11/2004 4:57:56 PM
Hi,
anyway I could get hardware id e.g. CPU id from the client platform using
asp.net ?
regards,
benny ;-)
... more >>
load a dropdownlist in VB when the edit is clicked in a datagrid P
Posted by Stanley J Mroczek at 10/11/2004 4:11:03 PM
I am trying to load a dropdownlist in VB when the edit is clicked in a
datagrid. How do i call Sub loaddd to load the dropdownlist
<asp:TemplateColumn runat="server" HeaderText="Id Type Option"
SortExpression="IdTypeOption">
<itemtemplate>
<asp:label runat="server" Text='<%# DataBinder.... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Activity Bar
Posted by google NO[at]SPAM valleyboy.net at 10/11/2004 4:01:07 PM
I have found an Activity Bar control which looks to be exactly what I
need for my splash screen, but I can't seem to get it working. When I
initialise the Start method, the application bar works great until I
do any other processing, which is when it freezes! There is no
documentation with the c... more >>
Variable replace in text
Posted by Todd Lu at 10/11/2004 3:21:27 PM
I am trying to make a description in my ASP.NET form to be dynamic. I have
a maintenance form that a description may be entered. I would like to add
various sql table fields into the description so I can display the result on
another form with all the text and values embedded from the sql table... more >>
Sorting a Dataview and Finding
Posted by Charles A. Lackman at 10/11/2004 3:19:32 PM
Hello
I have created a Dataview and have sorted it on the Date and ShiftNumber
columns
this works great, but when I want to use the Find Method it gives me the
following error:
Expecting 2 value(s) for the key being indexed, but received 1 value(s).
I have tried the following:
Dim Names... more >>
double/Single BUG?
Posted by csmba at 10/11/2004 1:17:30 PM
An evevn simple case that shows a strange "bug" in the framework then the
erlier post:
Dim xSng As Single = 6547.972
Dim yInt As Integer = 8000
Dim d As Double = xSng * yInt
the value in d is not correct! the value in the Watch window for xSng * yInt
is correct and not the same as d
am I ... more >>
Strange BUG in teh Framework?
Posted by David at 10/11/2004 12:48:15 PM
hello.
when doing the simple following computation, the value put into the variable
numMinusOne is NOT the same as what the computation is showed to be in the
Watch window!!
here is the code:
Dim xSng As Single = 6547.972
Dim yInt As Integer = 8000
Dim num As Integer = CInt(Math.Floor(xSng... more >>
Reading Custom Log
Posted by Lee at 10/11/2004 12:33:03 PM
When my application reads my custom error log with VB.NET the entry reads
simiar to the one below, but when it receives the EntryWritten event, the
Text is correct. How do I fix this
The message '0' for application 'WMInv' could not be formatted using
library(ies): ''. The log entry contain... more >>
HTTPWebrequest foreign characters are excluded in the response stream.
Posted by mangeshp16 NO[at]SPAM hotmail.com at 10/11/2004 11:34:08 AM
hi,
I am using HTTPWebrequest object to download google results.
in the response stream I am not getting some foreign characters
eg. If I search "signo de pregunta", all the spanish characters are
missing in response stream.
The same search in the internet explorer shows all the characters.
... more >>
Using Httpwebrequest to Submit multipart/form-data
Posted by Gregory A Greenman at 10/11/2004 10:53:15 AM
I'm trying to write a program in vb.net to automate filling out a
series of forms on a website. There are three forms I need to
fill out in sequence. The first one is urlencoded. My program is
able to fill that one out just fine.
The second form is multipart/form-data. Unfortunately, I have... more >>
App.config doesn't 'refresh' once runned?
Posted by DraguVaso at 10/11/2004 10:03:33 AM
Hi,
I have a Windows Service running (made in VB.NET), and wanted to be able to
change from time to time some parameters by changing them in the App.config.
But it seems that the application doesn't use the changed values in the
App.config, but continue to use the values that were there during... more >>
Sending emaikl
Posted by mahsa at 10/11/2004 8:19:09 AM
Hi I try to send email using this code it seems the code doesn't hhave any
problem but it doesn't send any emailv do you have any idea?how can I
configure SMTP Server?
MailMessage objEmail = new MailMessage();
objEmail.To = "mahsa_em@yahoo.com";
objEmail.From = "IN... more >>
Setting variable problem
Posted by Rob at 10/11/2004 8:15:05 AM
I have a public class setup as follows
Public Class Variables
Shared Property FranFormOpen() As Boolean
Get
Return FranFormOpen
End Get
Set(ByVal Value As Boolean)
FranFormOpen = Value
End Set
End Property
End Class
I c... more >>
Error Message when creating a new project
Posted by WW at 10/11/2004 7:47:02 AM
I am a .NET novice so please bear with me!!
I am trying to create my first .NET application and I'm doing the following
.....
File -> New -> WindowsApplication .... and I get a message
"Strong name validation failed for assembly 'Microsoft.VisualStudio' "
I get the same message if I cr... more >>
Inheritance in asp.net
Posted by Todd at 10/11/2004 7:33:08 AM
Can an entire web form be inherited or can only controls be inherited?
--
Thanks in advance,
Todd... more >>
Crystal Reports fill column by column
Posted by Maurice Mertens at 10/11/2004 7:29:46 AM
Hi,
How can I make a report in CR with 3 columns which will be filled one by
one?
I have a field, let's say intIndex, which has values 1,2 and 3. The report
first have to fill the data in column 1 untill intIndex changes to 2. Then
column 2 has to be filled and so on..
--
Met vriend... more >>
Visual C# .Net Compiler could not be created
Posted by Maria Paz at 10/11/2004 7:17:05 AM
Hi,
I install Visual Studio .net.
When I try to create a windows application, this error happended:
"Visual C# .Net Compiler could not be created"
I understand that missing something or I not Install complete.
Thanks.
Mpaz... more >>
remoting deserilization
Posted by Tom at 10/11/2004 1:39:23 AM
Hi guys,
I am puzzeled.. I am writing a simple remoting app.. where there's a client,
a server and a service class which will work between client and server so i
mark this service class as Serializable.. but strangely on the client side
it complains that it does not see this class whilst compl... more >>
|