all groups > dotnet general > june 2006 > threads for thursday june 15
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
help with this
Posted by Chris at 6/15/2006 10:51:01 PM
Hi,
Can someone convert this
if( i % 2 == 0 )
{ // even
iSum += iDigit * 1;
}
else
{ // odd
iSum += iDigit * 3;
}
to vb.net?
Thanks... more >>
Getting current file name and Line number
Posted by pukya78 NO[at]SPAM gmail.com at 6/15/2006 9:02:19 PM
Hi,
I am trying to get the current file and the line number which is
getting executed. I used:
MessageBox.Show(New StackTrace(New
StackFrame(True)).GetFrame(0).GetFileLineNumber) which gives me the
line number.
Later on, I was trying to write a generalized routine, so that I can
log the ... more >>
Use command line option '/keyfile' or appropriate project settings instead of 'AssemblyKeyFile' ????
Posted by SenthilVel at 6/15/2006 4:54:27 PM
Hi
I am in the Process of conversion of my existing 1.1 Dotnet Code to 2.0
framework.
for each project when i compile in VS2005 , i get this error\warning:
Use command line option '/keyfile' or appropriate project settings instead
of 'AssemblyKeyFile'
Question :
1. which is the be... more >>
msi in a Windows Service
Posted by Fei at 6/15/2006 2:58:02 PM
Hi,
I got a strange problem. I use Macrovision installshield x express
edition to build a simple MSI file. I can install this mis silently, i.e
using /qn. It has no problem to run either in the command prompt or in a
windows application. However when I put the same code to run this msi i... more >>
javascript's setTimeout equivalent in windows forms?
Posted by Marina Levit [MVP] at 6/15/2006 11:35:21 AM
Does anyone knows if this exists? Basically, a way to tell a method to
execute, but a certain amount of time after the current event chain is
finished - not immediately. With setTimeout, even if it says to execute in a
second, that is really a second after the entire call chain is finished. So... more >>
Open Access Report Preview With Max View
Posted by Connie Lee at 6/15/2006 9:11:28 AM
Hi,
I would like to open an Access Report with Print preview(Maxed view). I
could not find the Access reference class.
Please help!
Connie... more >>
Extending SqlCommandWrapper in Enterprise Library
Posted by Tobester at 6/15/2006 8:19:09 AM
Hi
I want to extend the SqlCommandWrapper in the Ms Enterprise Library to
add a method AddParameters.
I should be really simple, except that the SqlCommandWrapper's
constructors are "internal". Does anyone know how to get round this?
Also why are the constructors hidden away from the rest o... more >>
Move the processing on to the server?
Posted by Steve at 6/15/2006 6:46:02 AM
Windows Visual C# / SQL Server 2000
I am new ish to the .Net world of development, and am sure this is a pretty
basic question, but I'll ask anyway.
In my past development experience (Progress) we had a technology called
AppServer. Basically all the business logic runs on the server where... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Please help with error: "Referenced assembly 'Microsoft.ApplicationBlocks.ExceptionManagement.Interfaces' does not have a strong name
Posted by drew.ferraro NO[at]SPAM bisys.com at 6/15/2006 6:26:09 AM
Hi,
I am trying to build a .DLL file that uses
"'Microsoft.ApplicationBlocks.ExceptionManagement.Interfaces'". I am
trying to build this .DLL as fully signed. However, when I try to
build, I get the following error:
"Unable to emit assembly: Referenced assembly
'Microsoft.ApplicationBlocks... more >>
ref
Posted by Lamis at 6/15/2006 6:18:01 AM
Hello;
I have 3 projects, project 1 + 2 are vb.net, project 3 in C#
project 3 : (C#)
public Class3(project2 x)
project 1
public sub ()
dim y as project2.class2()
dim x as project3.class3 = new project3.class3(y)
end sub
All I need to do is to send a referense of a third class betw... more >>
comparisons of open source .net implementations
Posted by noone at 6/15/2006 12:10:16 AM
Posting this in a M$ public forum might attract some hostility but I'll
ask anyway.
I've noted two open source .net projects that will let me develop and
execute somewhat transportable code under linux. www.mono-project.org and
dotgnu.org/pnet both have implementations of the .net framework a... more >>
Remote Objects or Webservice or Client-Server??
Posted by Halimaji Nijazi at 6/15/2006 12:00:00 AM
(Already posted on vb-group, but don't get any answers)
Hi newsgroup
I need some conceptional help.
I am planning a Application which fullfills following requirements:
I have several Locations, every Location with its own server. I reside on
the main location.
What I am trying to do no... more >>
|