Timers - Which to choose?
All
I have a MonitorClient class, which will control a number of monitor classes
implementing an IMonitor interface. These monitor classes will monitor
various different things on a server. Each monitor class will have a
differently timed cycle on which to perform its probing.
My question is: which Timer class woudl it be better to use within the
monitor classes - System.Threading.Timer, or System.Timers.Timer? I've read
up on both, but cannot really see which suits my requirements better. Both
seem to use a new worker thread from the CLR thread pool on which to raise
their events, so I cannot immediately see a benefit to using one or the other
for my particular scenario.
Any advice very much appreciated.
Cheers!
--
Regards
Chris Marsh Tag: dotnet host Tag: 140455
How to find one executable from another
I need to use the namespace defined in file1.exe in the file2.exe. So far it
worked as long as both files were in the same folder. Now I need to move one
of them. I added app.config (below) to the second file with the following
text, but it did not work. Can somebody help? Maybe there is another way to
discover file1.exe from file2.exe at runtime (file1 path is available)
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="file1"/>
<codeBase version="1.42.6.0"
href="C:\mypath\file1.exe"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Note: assembly name and version are correct. Tag: dotnet host Tag: 140439
dotNet 3.0
I have been asked to do a bit of research into the dotNet 3.0 framework to
try to determine when we should upgrade to this environment.
Ive done a bit of research and have read about some of the new features
(WWF, WCF, CardSpace & WPF) but I need to know if there will be any negative
impact on any of our existing systems.
Our current setup is
Client Machines
Win XP Pro SP2,
dotNet v2.0.50727
VS 2005
Server
Win 2003 R2 SP2
Where would I find a good resource for any problems that might occurr if we
upgraded.
Also, I want to have a look at new features on offer in the dotnet 3.0
framework. Can I use WWF, WCF & WPF in VS 2005? If so, where would I find
good infor & examples on this? Tag: dotnet host Tag: 140435
Changing an interface
I've seen 2 differnt approaches people take to interfaces and am just curious
on some other opinions. For purposes of this post I am talking about adding a
new method to an existing interface. The first is that an interface can
never change, once it's "published" it is fixed in stone and if a change
needs to be made you should create a new interface that possibly inherits
from the old one. The second is that it is ok as long as the change does not
break the existing contracts, which wouldn't happen if a new method was
added, since they were not using it before they wouldn't need to be aware of
it now.
thoughts? Tag: dotnet host Tag: 140433
Getting information from a process
I have a service that starts 0->several processes to do work for the main
service. These processes are always the same xxx.exe that are generally
attached to a specific MSMQ that the process with monitor. The MSMQ queue is
passes to the process via a command line parameter.
What I need to be able to do is identify the queue that each of these
processes is monitoring from the Process information.
When the main service starts it does a Process.GetProcessByName for the
xxx.exe in an attempt to reconnect to any processes that may (still) be
running.
The problem is that I don't see any information in the Process object that
allows me to identify the queue (or anything else) that identifies this
process.
All I need is the original commandline options. But I don't see a way to get
that information either. The Arguments are in the startinfo member but are
usually not set. So is there some way to set and retrieve some type of
information to identify the process? Preferably something through the
ProcessStartInfo that can be retrieved directly through the process object.
OR is there away to snoop into the running process using reflection?
--
Scott Tag: dotnet host Tag: 140432
serialize/deserialize object under different name spaces
I have a class which is exposed by web services as part of different
namespace. Now I want to serialize it and deserialize object of class 'C1'
under namespace A1 to class 'C1' under namespace A2.
How can it be done?
Thanks Tag: dotnet host Tag: 140427
Detecting native .NET types
Hi there,
Does anyone know if there's a (simple) way to detect whether an arbitrary
"System.Type" originates from the .NET framework opposed to a user-defined
assembly. Thanks. Tag: dotnet host Tag: 140409
VS2008 SP1 RTM
Hello,
Do you have an idea when VS2008 SP1 will be RTM ? I have to create a new
image of my PC and I'd like include SP1 RTM.
Regards, Tag: dotnet host Tag: 140408
MMC snap-in for .Net 2.0
I need to install the MMC snap-in for .Net 2.0 on a server that does not
otherwise have the SDK installed. Does anyone know exactly what files out of
the SDK I need to copy and register to make this work?
Thanks! Tag: dotnet host Tag: 140407
Silvertlight with Webservices Help!
Hi,
I am trying to comsume a webservice from a silverlight 2 beta 1 application.
The webservice simply takes a byte[] paramter (which is actually a
serialized image file).
When I tested this from a 'normal' client, I just call my webservice method,
e.g. ws.UploadFile(fileBytes);
But in Silverlight I have to do it asynchronously using the Begin and End
methods - ws.BeginUploadFile
But I really don;t understand how to do this, and I can;t seem to find any
examples. Can anyone point me in the right direction?
Cheers
Brett Tag: dotnet host Tag: 140405
DataTable NewRecord, Delete, then AcceptChanges
Assuming that I have a table with a single, auto-generated primary key and a
TableAdapter/DataTable that references it, what would happen if I add a new
row to the DataTable in code, Delete it, then pass it to the TableAdapter's
Update method? Would calling AcceptChanges have an effect on this?
I'm building a wizard that allows the user to enter information into a
gridview. the gridview's rows and columns are dynamically generated based on
selections on the wizard's first page. i commit the gridview's data in bulk
when the wizard's finish button is clicked.
i'm concerned that the back and forth movement between page one and two will
generate a complex series of NewRows, Deletes, etc. that will make saving the
data a huge challenge.
thoughts appreciated.
thanks in advance.
Craig Buchaan Tag: dotnet host Tag: 140403
store list passed by reference
Hello All,
In a c# project I'm managing a List of objects of a custom class.
private List<MeshXNA> _Meshes = new List<MeshXNA>();
I then have a couple of different custom controls that display
information about the objects in that list (not only 3d).
I would like to achieve that the different controls could save the
reference to the list in order to be aware (at given intervals) of
further instances added.
at the moment I'm passing the data to the controls in this way:
bControl.SetModelList(ref _Meshes);
and the function is as follows:
public void SetModelList(ref
List<WinFormsGraphicsDevice.Device3D.MeshXNA> Meshes)
{
_meshes = Meshes;
// some initialization code
}
This seems to work, but I'm wondering if there's a better way of
sharing information structures across controls and form. Any
suggestion is welcome.
Best,
Claudio Tag: dotnet host Tag: 140402
system.cannotunloadappdomain
My system is Windows 2000 SP4 and .NET 1.1
After i upgraded to .NET 2.0, error occured.
Error from Event Viewer:
Event Type: Error
Event Source: ASP.NET 2.0.50727.0
Event Category: None
Event ID: 1000
Date: 7/17/2008
Time: 5:48:07 PM
User: N/A
Computer: AACMSAPP1
Description:
aspnet_wp.exe (PID: 1424) stopped unexpectedly.
Event Type: Error
Event Source: .NET Runtime 2.0 Error Reporting
Event Category: None
Event ID: 5000
Date: 7/17/2008
Time: 5:48:00 PM
User: N/A
Computer: AACMSAPP1
Description:
EventType clr20r3, P1 aspnet_wp.exe, P2 2.0.50727.213, P3 450b6662, P4
mscorlib, P5 2.0.0.0, P6 4333ab80, P7 482, P8 27, P9
system.cannotunloadappdomain, P10 NIL.
I found that the Description means:
P1 - Proc Name - aspnet_wp.exe
P2 - Version - 2.0.50727
P3 - Timestamp - 450b6662
P4 - Asembly Name - mscorlib
P5 - Assembly Version - 2.0.0.0
P6 - Assembly Timestamp - 4333ab80
P7 - Unknown - 482
P8 - Unknown - 27
P9 - Namespace? - system.cannotunloadappdomain
P10- Unknown - NIL
I have tested for many servers, only the production server has this
issue.
I have already reinstall IIS 5, .NET 2.0 and run the
aspnet_regiis.exe,
and iisreset. The problem still here...
I have found information about appdomain,
i think the problem is closely related to the configuration of the
application domain,
but i don't know to to unload or creating a new appdomain for my
application.
Is it necessary to write a new page to unload and create the
appdomain?
Any suggestions for this issue? Thanks. Tag: dotnet host Tag: 140400
WM Security Upgrade
I have been downloading audio books from the library. When I download the wm
security upgrade it says it has downloaded but the play button never becomes
active to press on it in order to finalize the download.
Can anyone help me?
I have vista and media player 11. I also trying to burn the books at mp3
speed and know of others that are doing so. Either I cannot seem to see the
directions correctly or I just cannot follow them Tag: dotnet host Tag: 140396
log4net error with RollingFileAppender
Hello,
I have setup log4net with rolling file appender as per the config
below:
<appender name="RollingFile"
type="log4net.Appender.RollingFileAppender">
<file value="V:\SSIS\Logs\PackageExecution.log" />
<appendToFile value="true" />
<maximumFileSize value="100KB" />
<maxSizeRollBackups value="2" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date %-5level
[%-30property{PackageName}] %-30property{SourceName} - %message
Package Execution Guid: [%property{PackageExecutionGuid}]. Batch ID:
[%property{BatchId}]. Event/Error Code: [%property{ErrorCode}]
%newline" />
</layout>
</appender>
it was working quite well up until two days ago when we started
getting the error
"log4net:ERROR RollingFileAppender: INTERNAL ERROR. Append is False
but OutputFile [V:\SSIS\Logs\PackageExecution.log] already exists"
Considering that appendToFile is set to "true", I can't seem to fathom
why would log4net throw the above mentioned exception.
I would be very grateful if someone can shed any light on the problem.
Thanks in advance for the help.
Regards
Keshav Tag: dotnet host Tag: 140395
FormView Webcontrol Databinding
Hi
Is the FormView webcontrol and the corresponding Sq;DataSource controls
designed to update/insert/delete records in the database with any
code-behind or is coding a must.
When adding Parameters i do not see the controls in the form if i select
"Control" , i have controls (TextBoxes) in InsertTemplate, EditTemplate and
ItemTemplate and the data source is outside the FormView (where should it be
??).
I worked on a website (have the source with me) in which the data was
getting updatedwithout any code-behind, except for input checking, but i am
unable to find how it was doing so.
Are there any good example of ForView DataBinding to update data out there
on the internet
TIA
Barry Tag: dotnet host Tag: 140394
ajax in connected web parts..
is it possible to use ajax in connected web parts...
My webaprt 'A' acts as both consumer and provider...
similarly ive 2 such other web parts...
can I use ajax in the connected web parts...
will consumer web part be called if we change provider implemented using
ajax....
need more info on the connected web aprts with ajx..please do help.. Tag: dotnet host Tag: 140391
reg datatable
hi,
I've a requireemnt ..in which my query will pull all the data from the
database table..and binds to a grid based on some calculations.....
the count of records wil be around 700000 records....
can I store this data in datatable..and bind to the grid..
what effect will it have on the performance of the page...
can someone sayy if it's optimal way ??? Tag: dotnet host Tag: 140390
CMD.EXE Problem
In Windows Explorer, when I left-click on a directory in the right panel,
instead of opening the directory, a command prompt window appears. The title
of this black window is c:\\windows\system32\cmd.exe. The only manner I can
open a directory is to open it from the left panel, or right click and choose
open. What happened? And, how can I fix it? Thank you.
Windows XP, Home, Service pack 3 Tag: dotnet host Tag: 140387
UDP broadcast/receive notification system
Hi...
Didn't see another group that would be more specific for this.
I inherited from another programmer a C# class using the System.Net.Sockets
classes to implement a udp broadcast/receive notification system so that all
the machines on a subnet can keep up-to-date on events.
In his classes, he prefaces each broadcast message with a guid so that when
a message comes in he can check to see if it's one he just sent. This
spurred a couple of questions for me:
1) I haven't yet seen a message I drop on the broadcast address come back on
my receiver socket. Was this just speculative overkill on his part?
2) Now I know this sounds a little daft, but he purposely set it up so that
multiple processes on the same box can both broadcast and receive. Would I
see the message coming from my box on one of the other processes (if I get
one started up) that's listening on the same port? Did I not get my message
back because the socket classes recognize my identity down the the process
level?
Thanks
Mark Tag: dotnet host Tag: 140383
"Visual Web Developer" questions
I've installed Microsoft Visual Web Developer 2008 Express Edition and have
a couple questions.
At the time I did the install, I had my My Documents folder mapped to a
network drive.
I have since mapped it back to my local drive, how can I get VWD to
recognize the new path?
I have also installed DotNetNuke and when I go to setup the database it
comes back with an error that indicates that it can't create the DB on a
mapped drive...
If it's just the DotNetNuke project that is recognizing the network path to
my My documents, how do I delete a project?
I ended up creating more than one DotNetNuke project so would like to delete
the extra one.
I can't see any way to delete a project...
Any help would be appreciated!!!
If this isn't the place to post these questions, please advise on the
appropriate group.
I've running this on an XP Pro machine if it matters.
Thanks!
Kelvin Tag: dotnet host Tag: 140379
[.NET CF] Get control name from interface
Hello,
There is an plugin-based application where user can plug own
handlers for controls.
Of course to plug handler user has to know the control name. Currently
there is a document
from where the user can see the control on form and assigned name.
This is very poor solution and we're
looking for something better.
One idea is to define that when user holds let's say ctrl and alt and
then clicks control, the MessageBox appears with the name of the
control. Unfortunetely in Compact Framework not all controls handle
Click event (ie TextBox)
Please help with that, do you have any idea how to do that?
Regards,
ML Tag: dotnet host Tag: 140377
WebClient.UploadFileAsync
Hello,
Problem with catching exceptions in WebClient.UploadFileAsync.
VS 2005 winform project using WebClient.UploadFileAsync. Everything works
fine so far (with Progressbar + Credentials) but when an error occurs
(Server not reachable, Connection broken...) the exception is not caught, it
ends up with "Exception has been thrown by the target of an invocation" in
main(). When WebClient.UploadFile is used, evreything works fine.
WebClient wc = new WebClient();
wc.UploadFileCompleted += new
UploadFileCompletedEventHandler(UploadFileCallback);
wc.UploadProgressChanged += new
UploadProgressChangedEventHandler(UploadProgressCallback);
wc.Credentials = new NetworkCredential(uid, pw, "");
Uri uri = new Uri("http://server/file_receive.aspx");
try
{
wc.UploadFileAsync(uri, "POST", path2file);
}
catch (WebException wex)
{
throw (wex);
}
catch (Exception ex)
{
throw (ex);
}
Thanks a lot Tag: dotnet host Tag: 140370
Smartclients and IIS6 on OS2003 server ?
Hello all,
We just moved our Intranet to this server and half our users get a load of
xml on there screen when they click on the link to start the smartclient app.
The same users hitting the sam pages on our old 2000 IIS5 server works fine.
As far as I can see the IIS 6 settings for the site are correct.
We have enabled .net 2.0 and 1.0 on it.
Has anyone any ideas on this? Or point me in the right direction to get an
answer.
Thanks
Deasun
--
Deasun
Home Site: www.tirnaog.com
Check out: The Code Vault in my forums section. Tag: dotnet host Tag: 140361
StreamWriter creation error
Hi There,
Our application creates a file using StreamWriter. The application
creates the file in a unique path and deletes the folder after the
file is transferred to a designated location (a network drive or a
another folder). The problem that we are facing is that some times
(usually after more than 12000 to 18000 such file/folder operations
i.e., create folder, create file, transfer, delete) the StreamWriter
creation fails with "Could not find a part of the path" error. Here's
my flight log for the error. As becomes obvious from the log, the File
creation failed with the path error even after the directory was
created successfully. So my doubt is, does the .Net framework (or
Windows) cache folder creation? I read something akin to this here
http://blogs.msdn.com/bclteam/archive/2005/07/02/434689.aspx
2008/07/16 17:20:35:665 Directory Created: E:\Sessions
\20080716-052035665_Macro
2008/07/16 17:20:35:665 Directory Created: E:\Sessions
\20080716-052035665_Macro\Temp
2008/07/16 17:25:34:900 Could not find a part of the path E:\Sessions
\20080716-052035665_Macro\Temp\20080716-052035665.txt
Thanks in advance for all your responses,
Musthafa Tag: dotnet host Tag: 140357
How to get an handle on an out-of-process COM component ?
Hi there,
I get a reference on a out-of-process COM (exe) component. The generated
interop dll displays the methods but no constructor is available. So how can
I have an handle on the running component ?
Best regards Tag: dotnet host Tag: 140353
WCF - interface from other project as contract
Hello
I plan to use WCF in my application. I've got solution were one
project is interface definition, that project is referenced in other
projects. Can I use that interface as ServiceContract (of course
without rewriting each method)? My interface is referenced in
some .NET 2.0 projects without WCF, so I can't mark it with attributes
from System.ServiceModel.
Regards,
Michael Tag: dotnet host Tag: 140349
[.Net 3.0]Point inside a polygon
Hi there,
I'm looking for a boolean method the result of which is true if a 2D point
is *inside* a polygon - anf false otherwise. I suppose that this is existing
in the WPF class like PointCollection, but I can't find it.
Oriane Tag: dotnet host Tag: 140346
Manually painting a ToolStripSplitButton
Hi all,
I'm handling all the painting for a ToolStrip in my app due to some
specialised requirements. Most of it has been relatively easy with a bit of
trial error, but I've hit a stumbling block when trying to draw a
ToolStripSplitButton.
I'm overriding the OnRenderSplitButtonBackground sub, and I *do* call
MyBase.OnRenderSplitButtonBackground(e), but I'm not getting the dropdown
chevron at all.
My ToolStripDropDownButtons paint the chevron themselves with no fuss, and
I'd really like to maintain consistency by keeping all the dropdown chevrons
identical.
I understand if I have to manually add the chevron myself, but is there a
predefined method for doing this? I checked through all of the ControlPaint
class and the SystemIcons class, but neither one appears to contain the
chevron for a ToolStripSplitButton's dropdown.
TIA,
~Alex Tag: dotnet host Tag: 140345
Slow COM Interop with framework 2.0
Hi, i've got a problem with dotnet framework 2 and the tidestone
component f1book.
I've got an application built with visual studio 2005 that use the
f1book component (so it creates the interop layer dlls do comunicate
with the component).
On certain computers it becomes incredibly slow to perform the
features, i'm almost sure that the problem is in COM interop when i
call the component methods, does anyone have any suggestion to tweak
it up ? Tag: dotnet host Tag: 140342
clsid_corsymwriter error
I get this error when trying to debug, have googled and tried all the fixes
mentioned, uninstall and reinstall vb.net uninstall and reinstall frameworks
and nothing works, even did a repair on vista (ultimate 64) still no good.
Am now officially desperate Tag: dotnet host Tag: 140340
Getting DriveFormat from a UNC path
Hey folks,
Is there a way to get the file system format type from a UNC path? We have
an app that's using alternate data streams for storing thumbnails, and we'd
like to be able to check in advance for non-NTFS file systems (which don't
support ADS). "DriveInfo" has a "DriveFormat" property, but DriveInfo seems
to be limited to letter-mapped drives.
Thanks,
Bill Tag: dotnet host Tag: 140334
Error using TCPClient w/ 3.5 CF and Windows Mobile
Hello all.
I have a application written in the 3.5 Compact Framework running on Windows
Mobile devices. VB.NET VS 2008.
The application communicates with our server using the
System.Net.Sockets.TcpClient class
This code used to communicate works flawlessly in our regular windows
application. It also works wonderfully when the device (Treo 700 is my test
case) is plugged into a PC with the USB cable. When not plugged in and
using the internet over the cell phone it will occasionally crash with:
ObjectDisposedException
at System.Threading.Timer.throwIfDisposed()
at System.Threading.Timer.Change(UInt32 dueTime, UInt32 period)
at System.Threading.Timer.Change(Int32 dueTime, Int32 period)
at System.Net.HttpWebRequest.startReadWriteTimer()
at System.Net.HttpWebRequest.ConnectionClient.Read(Byte[] data, Int32
offset, Int32 length)
at System.Net.HttpReadStream.NetworkRead(Byte[] data, Int32 offset, Int32
length)
at System.Net.ChunkedReadStream.fillBuffer()
at System.Net.ChunkedReadStream.getLine()
at System.Net.ChunkedReadStream.doRead(Byte[] data, Int32 offset, Int32
length)
at System.Net.HttpReadStream.ReadToDrain(Byte[] buffer, Int32 offset,
Int32 length)
at System.Net.HttpReadStream.doClose()
at System.Net.HttpReadStream.Finalize()
It may work great a few times - then crash like this. This error appears
untrappable - all my code is Try/Catched. We don't believe this was a issue
in previous versions of the framework but this is our first release using
2008/3.5 so it's hard to say for sure.
Anyone out there have a clue as to what may be causing this and what steps I
can take to trap the error and/or prevent it?
Thanks so much in advance.
Bob Tag: dotnet host Tag: 140329
Click Once application failing at execution
We run a Click Once application that runs on an Intranet at our
company and our users run Internet Explorer. The click once
application is able to download to the users PC, but right at
execution, he encounters a fatal error. The fatal error lists the exe
of the click once application.
I have many other users that are able to do the same download and
execute without a problem.
I have checked the usual IE settings that could cause ClickOnce
problems.
Where should I look on the user's PC for an indication of the real
cause of the problem?
Is there something else I should be looking at as a possible cause for
the user to get a fatal error right at execution of a click once
application? Tag: dotnet host Tag: 140321
SITEMINDER need help
Trying to write a simple console app to automate a download from a Linux box
using HTTPWebRequest that is running SiteMinder. Can get to the point where
I have the first cookies and am sending them in the Request header, but
can't get the Session cookies.
Can someone point me to the right board?
Or may you have done this already.
E. Tag: dotnet host Tag: 140320
see dot net books
.NET database dev questions
http://freedownloadablebooks.blogspot.com/2008/03/net-database-dev-questions.html
Some general quickies
http://freedownloadablebooks.blogspot.com/2008/03/some-general-quickies.html
.NET WebDev interview questions - Part 1
http://freedownloadablebooks.blogspot.com/2008/03/net-webdev-interview-questions-part-1.html
.NET WebDev interview questions - Part 3
http://freedownloadablebooks.blogspot.com/2008/03/net-webdev-interview-questions-part-3.html
Electronic engineer interview questions
http://freedownloadablebooks.blogspot.com/2008/03/electronic-engineer-interview-questions.html
C++ notes for discussion
http://freedownloadablebooks.blogspot.com/2008/03/c-notes-for-discussion.html Tag: dotnet host Tag: 140319
Please explain why the GAC cannot be referenced
Ok, Im confused, someone please clear things up for me. I know this may seem
like a stupid question.
I built a DLL that is to be used by all of our applications to perform
routine tasks. When the discussion came up about weather or not to store this
DLL in the GAC or in the individual projects, I had suggested the GAC. My
thought was that IF an update needs to take place, we wouldnâ??t have to update
the bin folder of every application. Instead we would simply uninstall the
old assembly from the GAC and install the newer version.
Now Im finding out that you cant reference the GAC, that you still would
need to have the DLL in a local directory and set the do not copy local
option. This would only work assuming that you development server drive
letters and paths match the production server
This to me defeats the purpose and maybe I donâ??t understand. If I cant
reference the GAC then, it means I would need to rebuild the project on the
Production server as well as the Development server because (in our case),
the driver letters and folder paths donâ??t match. So what may exist in C:\My
Assembles on our development box surely wont exist on the production box
unless Iâ??m allow to create the path on the production box. Unfortunately our
production sites do not go to the C: drive. Whatâ??s the purpose of the GAC if
you cant reference it and still required to reference a copy of the DLL
outside the GAC Tag: dotnet host Tag: 140318
List(Of clsClass1, clsClass2)?
Hi,
A little bit linked to my other question: I thought it was possible to have
generic list which accept multiple types of objects. So a statement as ""Dim
MyList as List(Of clsClass1, clsClass2)" would accept instances of both
clsClass1 and clsClass2.
But, it doesn't work :-) Am I simply wrong, or did I do something wrong?
Thanks a lot in advance,
Pieter Tag: dotnet host Tag: 140307
List(Of clsClass) = List(Of clsSubClass)
Hi,
I have a class clsSubClass which inherits from clsClass.
When I instantiate an object of clsClass (MyClass), and I instantiate an
object from clsSubclass (MySubClass) I can do an "MyClass = MySubclass".
But when I declare two generic list of them ("Dim MyList1 as List(Of
clsClass)" and "Dim MyList2 as List(Of clsSubClass)"), I can't do an
"MyList1 = MyList2".
Why is this exactly, and is there a way to implement this behaviour?
Thanks a lot in advance,
Pieter Tag: dotnet host Tag: 140304
Large App icon?
Hi All,
Been playing around testing my app on Vista and I cannot seem to get it to
display a large icon. On the Vista desktop, if I right click and select
View->Large Icons, my app stays at 64x64 with a square around it, while
others (like MS Word) ramp right up to 128x128.
I've added a 128x128 icon into my application icon, and i've even added a
256x256 icon in as well (read somewhere that Vista ignores the 128px and
scales down the 256px icon instead), but it didn't work either way. Both
are currently high color, but it failed when they were set to true color as
well.
Does anyone know how to get a large icon to work?
TIA,
Alex Tag: dotnet host Tag: 140303
Project Manager - .Net, Bangalore
Dear Members,
Agiline is having immediate requirement for Project Manager with 2+
years of relevant experience.
To know more about Agiline visit us at www.agiline.com
Oganisation Name: Agiline India
Position: Project Manager
Type of Employment: Permanent
Job Location: Bangalore
Experience: Senior candidates with between 6 to 12 years of experience
in Microsoft (DOTNET) technologies
with at least 2-3 years of Project Management experience.
Job Description:
Understanding the requirements & providing design solutions based on
the overall architecture of the system.
Conducting effective design & code reviews, incorporating software
development best practices
Dot Net Frame work 2.0 (ASP.NET, ADO.NET, C#.NET) and JavaScript, UML
Experience.
Strong architecture design skills and expertise with design patterns.
Desired Candidate Profile
1. Senior candidates with between 6 to 12 years of experience in
Microsoft technologies
with at least 2-3 years of Project Management experience.
2. The primary skill required would be Microsoft Technologies
specifically using asp.net, c# and xml.
Preferred databases would be Oracle and UML for design.
3. Must be very thorough with all concepts of project management such
as project tracking,
resource allocation, monitoring and delivery, team building and
delegation etc.
4. Candidates with extensive experience in a services & solutions
background would be preferred.
5. Must be very familiar with the complete software development life
cycle & must have managed the same
for at least 4 successfully completed projects using .NET technology
platform.
6. Must have played a major role in client interfacing and client
relationship management.
7. Candidates who have traveled onsite and worked with clients in the
US will be processed on priority.
8. Should possess excellent communication, team building and
management along with client interaction skills.
9. A major attribute would be leadership along with dynamism and
passion.
10. PMP certified candidates would be processed on priority
If your profile matches with the above mentioned requirement mail us
your updated resume
by mentioning your Current CTC, Expectation & Notice period details to
vijayakrishna@agiline.com or careers@agiline.com.
If any of your friends are looking for change of job feel free to
forward this mail to them.
Best Regards,
Vijayakrishna
Agiline India Pvt. ltd. Tag: dotnet host Tag: 140302
.Net Project Manager - Bangalore
Dear Members,
Agiline is having immediate requirement for Project Manager with 2+
years of relevant experience.
To know more about Agiline visit us at www.agiline.com
Oganisation Name: Agiline India
Position: Project Manager
Type of Employment: Permanent
Job Location: Bangalore
Experience: Senior candidates with between 6 to 12 years of experience
in Microsoft (DOTNET) technologies
with at least 2-3 years of Project Management experience.
Job Description:
Understanding the requirements & providing design solutions based on
the overall architecture of the system.
Conducting effective design & code reviews, incorporating software
development best practices
Dot Net Frame work 2.0 (ASP.NET, ADO.NET, C#.NET) and JavaScript, UML
Experience.
Strong architecture design skills and expertise with design patterns.
Desired Candidate Profile
1. Senior candidates with between 6 to 12 years of experience in
Microsoft technologies
with at least 2-3 years of Project Management experience.
2. The primary skill required would be Microsoft Technologies
specifically using asp.net, c# and xml.
Preferred databases would be Oracle and UML for design.
3. Must be very thorough with all concepts of project management such
as project tracking,
resource allocation, monitoring and delivery, team building and
delegation etc.
4. Candidates with extensive experience in a services & solutions
background would be preferred.
5. Must be very familiar with the complete software development life
cycle & must have managed the same
for at least 4 successfully completed projects using .NET technology
platform.
6. Must have played a major role in client interfacing and client
relationship management.
7. Candidates who have traveled onsite and worked with clients in the
US will be processed on priority.
8. Should possess excellent communication, team building and
management along with client interaction skills.
9. A major attribute would be leadership along with dynamism and
passion.
10. PMP certified candidates would be processed on priority
If your profile matches with the above mentioned requirement mail us
your updated resume
by mentioning your Current CTC, Expectation & Notice period details to
vijayakrishna@agiline.com.
If any of your friends are looking for change of job feel free to
forward this mail to them.
Best Regards,
Vijayakrishna
Agiline India Pvt. ltd. Tag: dotnet host Tag: 140301
Immediate openings for Senior .Net Developers
Dear Members,
Agiline is recruiting Sr. Software Engineers having 3+ yrs of
experience in Microsoft Dot Net. Find the details mentioned below
Organization: Agiline India Pvt. Ltd.
URL: www.agiline.com.
Find the requirement details mentioned below.
Position: Senior Software engineer
Experience: 3+ yrs
Location: Bangalore
Required skills set: Asp.net, Vb.net, C# and Sql Server 2000.
Additional skill set: Should have worked on both Windows & Web based
applications.
Should be ready to handle multiple projects.
High levels of motivation, Strong written and verbal communication
skills.
Selection Procedure:
1) Technical Interview
2) HR Interview.
Education: BCA, B.Sc (Comp), BE/B.Tech(Any specialisation),MCA,
MSc(Comp)
Current CTC:
Expectation:
Time required to join:
If you are interested in above mentioned requirement mail your
updated CV and the CTC details to vijayakrishna@agiline.com or
careers@agiline.com.
Also feel free to forward this mail to your friends who are interested
in job change.
Best Regards,
Vijayakrishna Tag: dotnet host Tag: 140300
Immediate openings for Senior .Net Developers
Dear Members,
Agiline is recruiting Sr. Software Engineers having 3+ yrs of
experience in Microsoft Dot Net. Find the details mentioned below
Organization: Agiline India Pvt. Ltd.
URL: www.agiline.com.
Find the requirement details mentioned below.
Position: Senior Software engineer
Experience: 3+ yrs
Location: Bangalore
Required skills set: Asp.net, Vb.net, C# and Sql Server 2000.
Additional skill set: Should have worked on both Windows & Web based
applications.
Should be ready to handle multiple projects.
High levels of motivation, Strong written and verbal communication
skills.
Selection Procedure:
1) Technical Interview
2) HR Interview.
Education: BCA, B.Sc (Comp), BE/B.Tech(Any specialisation),MCA,
MSc(Comp)
Current CTC:
Expectation:
Time required to join:
If you are interested in above mentioned requirement mail your
updated CV and the CTC details to vijayakrishna@agiline.com or
careers@agiline.com.
Also feel free to forward this mail to your friends who are interested
in job change.
Best Regards,
Vijayakrishna Tag: dotnet host Tag: 140299
How to supply license information with a library (dll)
Hi
What is the better and secure way to supply licensing info with a .net
framework DLL?
By licensing info I mean what classes and to whom are licensed
PS.: I use VS2005 Net Framework 2.0
thanks in advance Tag: dotnet host Tag: 140289
Can't bind to an assembly using relative path
Hy there, I have a problem binding to an assemlby. I wan't to use an config
file to bind to an assembly that is located 1 directory up, relative to the
app path. So I made this config file:
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="TestAssembly"
publicKeyToken="43b3f97a147cea99" />
<codeBase version="2.0.0.0" href="file:\..\TestAssembly.dll" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
This doesn't work, but in the docs it says that if TestAssembly is strongly
named, I can use relative paths. If I copy the assembly to c:\ and change the
href to "file:c:\TestAssembly.dll" it works. What can I do?
Thanks in advance.
--
Toma Catalin, Microsoft Student Partner Tag: dotnet host Tag: 140288
Computer will not boot past the Welcome/log-on screen.
I am attempting to boot a computer running Windows XP Pro and it will show
the Windows is starting up screen then proceeds to the choose the username
screen. When I choose the username, the computer immediately shuts down. I
have tried to boot the machine in Safe Mode with Networking and get the same
response. This occurred after running the Computer Associates Anti-Virus
program and defragmenting the machine.
Any suggestions as to resolution of this problem would be greatly appreciated.
Thanks,
--
CBC Tag: dotnet host Tag: 140283
system administrator
I have downloaded log me in from there site and when i try to install it i
get a message to say:-
SYSTEM ADMINISTRATOR HAS SET POLICIES TO PREVENT THIS INSTALLATION???
I dont know what this means, or what to do. Tag: dotnet host Tag: 140280
Please suggest how i will host my dotnet application(frame work 2.0)
and sqlserver 2005 database using any hosting server provided by
Google.