Failure to get generic type SortedList in Type.GetType()
Hi All,
Seems to be a specific failure with SortedList in getting type from
name. Is this a problem with the .NET framework?
When I run this line in the immediate window:
Type.GetType(typeof(SortedList<double,double>).ToString(),true)
I get
Could not load type 'System.Collections.Generic.SortedList`2' from
assembly 'mscorlib, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089'.
These work:
Type.GetType(typeof(List<double>).ToString(),true)
Type.GetType(typeof(List<double>).FullName,true)
Type.GetType(typeof(double).ToString(),true)
Type.GetType(typeof(double).FullName.true)
typeof(SortedList<double,double>).FullName
typeof(SortedList<double,double>).ToString()
These fail:
Type.GetType(typeof(SortedList<double,double>).FullName,true)
Type.GetType(typeof(SortedList<int,int>).FullName,true)
Type.GetType(typeof(SortedDictionary<double,double>).FullName,true)
Type.GetType(typeof(SortedDictionary<double,double>).ToString(),true)
I have run out of things to try and test for. Let me know if you have
any ideas.
Cheers,
Dave. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130784
Email fonts
I have selected the fonts that I want to use when composing and replying to
emails but when I "create email" my chosen font isn't there. It defaults to
Arial. Any help? Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130782
Can you step into .NET framework calls when debugging?
I'm sure this is a question that a million people have asked, but I'm having
trouble finding the answer. I want to be able to step through .NET
framework code. Basically, I want to walk through the kind of code that
Reflector exposes (http://www.aisto.com/roeder/dotnet/) at run-time. I can
get a lot of information about the framework code just by reading the
disassembled code, but I really want to be able to step through it. It
would obviously be a lot easier to see what's going on and how the code
works if I can see which code paths are actually being followed in
particular situations.
Some information I've found on the net seems to imply that this is possible,
and others seem to say it isn't. I've found some sources that give
information about debugging at the IL level, but that's too low-level for
me. I don't want to debug at the opcode-level, I want to debug at the level
of disassembly that Reflector exposes.
I've setup Visual Studio 2005 to point to the Microsoft public symbol server
(http://msdl.microsoft.com/download/symbols), and that downloaded the .pdbs
for the framework and put them on my local hard drive (about 10MB worth). I
turned off the "Just My Code" option in the Debugging options, just in case
that was the issue.
Now I'm stuck. I try to step into Framework calls (like
TraceSource::TraceInformation and XamlReader::Load) and nothing happens. Is
there any way to do that? If not, what good are the PDB files? Aren't
those the files that have the debugging symbols? I suppose the PDB has
function names and variable names, but not the actual code, right?
I've also looked at MDbg a bit, and an extension that you can get to plug
into Visual Studio to work with it. But that debugger also seems to work at
the IL level.
Can anyone help me out?
Thanks,
David Cater
xiard@mindspring.com Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130779
Regex replace where Search Value not between specific delimiters
Hi all.
I have managed over the last few years to get by with relativly little regex
knowledge.
However I now have what seems like a simple problem which I simply cannot
find a solution for.
As stated Regular expressions are not my strong point.
What I need is a way to replace a set string within a source but only where
that set string is not surounded by brackets.
Thus I would like to (for instance) change "AB(A)BABA" into "CB(A)BCBC"
Must I match all the A's and then loop to find those that are not surrounded
or is there a better way?
Thanks in advance Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130776
What CLR/JIT version compiles my 1.1 IL code ?
Hello there,
I have Framework 1.1 and 2.0 installed both in my PC. When my IE hosts/runs
a .Net(C#) applet written in Framework 1.1, what version of my framework
(CLRs/JIT)compiles the control in binary code, the 2.0 or 1.1 ?
Genc Ymeri
Sr. Software Engineer
Chantilly, VA Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130773
I want an "autosort" class
Unless a project particularly interests me, I'll try to see if someone else
has created what I need rather than doing it myself. Such is the case now.
I'm wondering if anyone has made a list/array class (preferrably a generic
one) that holds IComparable[<T>] objects and automatically sorts the list
when a new object is added. I know there is the SortedList<TKey, TValue>
class (and SortedDictionary), but I don't want a key/value pair; I simply
want this list to contain a value and always return those values in sorted
order. For example, I want to do this:
private SortedArray<string> mySortedArray = new SortedArray<string>();
mySortedArray.Add("Orange");
mySortedArray.Add("Peach");
mySortedArray.Add("Banana");
mySortedArray.Add("Apple");
foreach (string fruit in mySortedArray)
{
Debug.WriteLine(fruit);
}
and have the output be
Apple
Banana
Orange
Peach
without ever having to call mySortedArray.Sort() or anything like that. Has
someone done this? Am I totally blind and can't find it in the base class
library even though it's right under my nose? Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130770
Visual Studio 2005 & SQLite
Hi guys,
Is there any documentation on how to interact with VS2005 and a SQLite
database?
Thanks a lot! Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130765
.NET Remoting works only once
Hello...
I am implementing .NET remoting with a WebService as client. All works
fine the first time, but when I call again the method from WS that
gets the remote object and calls a remote method, I don`t get into the
method(I've put a breakpoint in it... and it stops only the first
time...).
The second time I get to this line... and ... it stops... no
exeption.. no nothing..
remoteObject.Test();
where
remoteObject = Activator.GetObject(typeof(Remotable), location) as
Remotable;
I`ve implemented a Singleton pattern for a Class in WS like this :
interface ISingleton
{ void Test(); }
internal class Singleton : ISingleton
{
Singleton(){}
public static Singleton Instance
{
get
{
return Nested.instance;
}
}
class Nested
{
internal static readonly Singleton instance = new
Singleton();
}
public void Test()
{//call the remote method... }
}
public class WebService : System.Web.Services.WebService, ISingleton
{
public PixelWebService()
{
InitializeComponent();
}
[WebMethod]
public void Test()
{
Singleton.Instance.Test();
}
}
when calling the WS, I make :
WebService service = new WebService();
service.Test();
Can someone help me?
Thanks Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130764
problem changing registry
I have a number of distributed sites that need to have a registry
setting in order to stop serenum incorrectly identifying our serial
device as a mouse etc.
I have written the following code in an attempt to change the registry
settings, but a SecurityException is thrown with message 'Requested
registry access is not allowed'. This is despite being run in an
administrator account in Windows XP. The exception is known in the
first line of code in which I try to access a registry key. Can anyone
help me to find a way to programmatically change these settings
please?
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Win32;
using System.Security.Permissions;
using System.Security.AccessControl;
[assembly: PermissionSetAttribute(SecurityAction.RequestMinimum, Name
= "FullTrust")]
namespace serenum
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Checking Registry...");
RegistryPermission permission = new
RegistryPermission(RegistryPermissionAccess.Write,
"HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Enum\\ACPI\\PNP0501");
permission.Demand();
RegistryKey key =
Registry.LocalMachine.OpenSubKey("SYSTEM\\CurrentControlSet\\Enum\\ACPI\\PNP0501",
true);
foreach (string keyName in key.GetSubKeyNames())
{
RegistryKey portKey = key.OpenSubKey(keyName, true);
RegistryKey parmKey = portKey.OpenSubKey("Device
Parameters", true);
string portName = "";
string skipEnumerations = "";
bool skipEnumerationsFound = false;
foreach (string valName in parmKey.GetValueNames())
{
object v = parmKey.GetValue(valName);
RegistryValueKind rvk =
parmKey.GetValueKind(valName);
if (valName == "PortName")
portName = v.ToString();
else if (valName == "SkipEnumerations")
{
skipEnumerations = v.ToString();
skipEnumerationsFound = true;
}
}
if (portName != "")
{
if (skipEnumerationsFound)
Console.WriteLine(portName + ": " +
skipEnumerations);
else
Console.WriteLine(portName + ": No key
found");
}
if (skipEnumerations == "")
{
//RegistryPermission f = new
RegistryPermission(RegistryPermissionAccess.AllAccess,
//
"SYSTEM\\CurrentControlSet\\Enum\\ACPI\\PNP0501\\" + keyName +
"\\SkipEnumerations");
parmKey.SetValue("SkipEnumerations", 0xfffffffe,
RegistryValueKind.DWord);
}
}
Console.WriteLine("Finished");
Console.ReadKey();
}
}
} Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130763
.NET 2.0 - MS Updates
I noticed that .NET 1.x gets installed via MS Updates (Critical maybe?).
But it appears that .NET 2.0 does not - we send out CD's to our customers
containing autorun executables to demonstrate our solutions. We're finding
that when sending new CD's out with apps created in VS2005 using NET 2.0,
our customers are telling us they are receiving an error. We may need to
include the dotnetfx for NET 2.0.
Can someone tell me if the NET 2.0 Framework is installed with Regular MS
Updates? If not, when they will as 1.x has?
Thanks! Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130758
ASynch sockets race
I have a fully asynch socket server application. I find however that
sometimes it locks up.
The client sends me a packet before I have posted a BeginRead. My beginread
then completes but I never get called back. Both sides end up waiting for
each other.
THe IAsyncResult return by BeginRead has IsCompleted=false
At first I thought it might be becuase I was doing some sycn IO during
client connection but I have made that all async too and I still get the
occasional lockup
I am sure I am doing something dumb but I cant see what. I always fail if my
trace show client send packet followed by server beginread but if the 2
process time just slighly differnt and I get server beginread then client
send packet then all is fine.
If I kill the client and run it again all is fine. The server pending
callback is invoked saying that the socket closed and the server cleans up
OK. Then we get into the same race with this next client Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130755
How to do a "NET VIEW" command
I'm looking for a solution to execute the DOS command "NET VIEW" in .NET 2.0.
Are there any classes in .NET or can I use WMI?
Or do I need to capture the DOS output?
Thanks Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130751
gotdotnet replacement?
Its been a while from the anouncement of gotdotnet (Sad, I loved the site!)?
is there any replacement out there that has the same enviroment and quality
especializing for .Net? Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130747
dynamic functions...
i need to be able to create a dynamic C# function on the fly on an existing
type that exists within an assembly already loaded into memory. basically,
the body of this dynamic function will be loaded from an external source
(e.g. a file).
how can i best accomplish this task?
also, is there a way i can unload this function when i dont need it anymore?
thanks for all your help,
--
Ben Callister Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130743
Undeletable Desktop Icons
I restored my C drive from an external hard disk backup and now have four
desktop icons that cannot be deleted. The error message states "Cannot read
from source file or disk."
I've not used VB before. How can I delete these four icons?
Thanks in advance for your help. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130737
Running Application Without .net Framwork
I want to run the Application on CLient computers WITHOUT
installing .net Framwork on their Computer.
Is this Possible?
Is not then does Microsoft Started doing any work to overcome this
problem?
Because Client wants just an .Exe file....! So that installation is
Simple.
There is Some information available on Given Link:http://www.dabcc.com/
article.aspx?id=3284
IS there Same kind of facility provided in .NET framwork.
If so then Please Guid me.
Thanking You.
abhijit.dalvi29@gmail.com Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130735
Keep a selection highlighted in a listView when it loses the focus
Hi,
I've created a ListView with some images.
I can selected an image, but when the focus leaves the listView, the
item doesn't appear highlighted.
I've tried to change the property HideSelection to false, but it doesn't
work.
Thank you for your help. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130731
Passing arguments to ClickOnce applications
Hello,
Is there a simple way for passing arguments to applications deployed with
ClickOnce and having off-line capabilities.
My app takes arguments if I start it with the whole path to it
"c:\whole\path\myapp.exe /arg=123" but as I do not know where the
application reside on the client PC's I don't know the whole path.
Is there a way to do so by a system-variable as %the_path_to_your_app% or
what so ever, or is there any work around.
tnx a lot
Jean Paul Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130729
Auto hide AppBar (Desktop Bar)
Hi folks,
I'm building an AppBar application, which needs to support auto hide status
(and on mouse hover - to pop up).
Can anyone give me some directions in how to do that? code snippets? The
application is written in C#.
Appreciate any help I can get,
TIA,
- Tal. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130728
Custom Software Development
iTechArt Group - Custom Software Development and Offshore outsourcing
Company
http://www.itechart.com/
Offshore custom software development company iTechArt - Web site and
Content Management Solutions development, CMS consulting: Ektron,
Drupal and DotNetNuke
iTechArt Group provides high quality custom software development
services and offshore software development. On December 2006, iTechArt
Group became an authorized Microsoft Certified Partner. This means
that our company has been recognized by Microsoft for our vast
expertise and authorized to custom software development; provide IT
service consulting and custom business solutions.
Custom Software Development and Offshore outsourcing Company iTechArt
has worked together since 2003 to design build and deliver .NET Web
Content Management software solutions that help clients meet their
strategic objectives. We are agile oriented development partner able
to consistently deliver solid results.
iTechArt software development team assemblies specialists in the
development of custom software applications and offshore software
outsourcing services.
Working concepts of our company are based on proven approaches and
international standards used for custom software development such as
Capability Maturity Model Integration for Software Engineering (CMMI-
SW). In the same breath we have our own standpoint on software
development process management which is fully effective and
comprehensible for our clients.
iTechArt offers software development in the next main directions:
1. Custom Software Development (Offshore outsourcing for worldwide
based software development companies.)
2. Software Development for Digital Signage (Media content development
and remote displays / information kiosks Web-based software
application management.)
3. Web Site Development (E-commerce solutions, CMS/DotNetNuke/Ektron/
Drupal, Web 2.0/PHP/MySQL/AJAX, Flash/Action script/Flex and many
more.)
4. Offshore Development Center (Dedicated development team of software
developers. Our offshore development centers operate as an extension
to clients' existing software engineering business.)
Contact iTechArt ( http://www.itechart.com/ )about custom software
development, end-to-end software solutions, outsourcing software
development, custom DotNetNuke module development, DotNetNuke
consulting, dotnetnuke hosting, first class Java and .Net developers,
software application design, software testing, Quality Assurance,
functionality testing and defect analysis, performance and stress
testing, usability testing, Microsoft Media Services and Adobe Media
Flash Server solutions, digital signage solutions and custom
development, Ektron CMS400.NET developers, CMS, .NET Web Content
Management software solutions
Web:
http://www.itechart.com/
http://www.itechart.com/Pages/ProductsServices/HowWeWork.aspx
http://www.itechart.com/Pages/ProductsServices/BusinessModels.aspx
http://www.itechart.com/Pages/ProductsServices/CustomSoftwareDevelopment.aspx
http://www.itechart.com/Pages/ProductsServices/DotNetNukeModuleDevelopment.aspx Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130727
dynamic C# functions...
i need to be able to create a dynamic C# function on the fly on an existing
type that exists within an assembly already loaded into memory. basically,
the body of this dynamic function will be loaded from an external source
(e.g. a file).
how can i best accomplish this task?
thanks for all your help,
--
Ben Callister Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130725
Regex Favorite parser
I am creating some program which should get URL param from IE favorites
files. And I need create correct Regex for this.
Now I have this
string WorkString =
@"URL=http://www.test.com/homepage.asp?cool=rere%*&*#&(@&=sdfsdfsd%"
Regex URLrequest = new Regex(@"\s*URL\s*=\s*(?<URL>[\w\W]*)\s*",
RegexOptions.Compiled);
Match matcher = URLrequest.Match(WorkString);
if (matcher.Success)
{
string url = matcher.Result("${URL}");
}
And I have one problem with this
if the line string is "BASEURL=http://www.test.com/homepage...."
it works too.
But I need only make Regex return Success only when string is " URL="
and false when " BASEURL=http" or " XXS#URL = "
How I should modify Regex for this? How put negative condition at all? Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130721
Outlook express
Is there anyway I can go into a history to find permently deleted emails? Can
you recover them after you deleted them out of the permently delete file? Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130720
.NET - problem with application
Hello.
I've wery weird problem with some of programs, that usually works fine
(including my laptop).
I think it's concernred with .NET
Problem is:
When I launch Photoshop CS2 (problems are with localized pl version and us
tryout as well) I got message (in Polish):
"Culture ID xxxxx (0xyyyyy) is not a supported culture"
Codes of culture looks like random number - each PS launch create several
errors with the same code. Not all programs create this kind of "conflicts"
with PS.
When I click "close" an other than cs3 program is terminated ( like ATI
Control Centre, or NikonCapture NX), when i click "Ignore" (several times) -
finally everything works fine.
Re-installation of .NET does not help (I've already re-installed all
installed versions: 1.1, 2 and 3)
Non of other programs from Adobe behave this way.
Is there any method to find what can be done? Hw to trace error?(I do not
expect ready solutions).
I do enclose exeption log (fragment, this time culture code was 12192)
Regards
Marcin [3M]
zczegó³owe informacje na temat wywo³ywania debugowania w trybie JIT (just in
time)
zamiast tego okna dialogowego znajduj± siê na koñcu tego komunikatu.
************** Tekst wyj±tku **************
System.ArgumentException: Identyfikator kultury 12192 (0x2FA0) okre¶la
nieobs³ugiwan± kulturê.
Nazwa parametru: culture
w System.Globalization.CultureTableRecord.GetCultureTableRecord(Int32
cultureId, Boolean useUserOverride)
w System.Globalization.CultureInfo..ctor(Int32 culture, Boolean
useUserOverride)
w
System.Windows.Forms.InputLanguage.CreateInputLanguageChangedEventArgs(Message
m)
w System.Windows.Forms.Control.WmInputLangChange(Message& m)
w System.Windows.Forms.Control.WndProc(Message& m)
w System.Windows.Forms.ScrollableControl.WndProc(Message& m)
w System.Windows.Forms.ContainerControl.WndProc(Message& m)
w System.Windows.Forms.Form.WndProc(Message& m)
w ATI.ACE.CLI.Component.Runtime.HotKeyManager.HotKeyForm.WndProc(Message&
m)
w System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
w System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
w System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg,
IntPtr wparam, IntPtr lparam)
************** Zestawy za³adowane **************
mscorlib
Wersja zestawu: 2.0.0.0
Wersja Win32: 2.0.50727.42 (RTM.050727-4200)
CodeBase:
file:///c:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
----------------------------------------
CCC
Wersja zestawu: 2.0.0.0
Wersja Win32: 2.0.0.0
CodeBase:
file:///C:/Program%20Files/ATI%20Technologies/ATI.ACE/Core-Static/ccc.exe
----------------------------------------
System.Windows.Forms
Wersja zestawu: 2.0.0.0
Wersja Win32: 2.0.50727.42 (RTM.050727-4200)
CodeBase:
file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
Wersja zestawu: 2.0.0.0
Wersja Win32: 2.0.50727.42 (RTM.050727-4200)
CodeBase:
file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
Wersja zestawu: 2.0.0.0
Wersja Win32: 2.0.50727.42 (RTM.050727-4200)
CodeBase:
file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
CCC.Implementation
Wersja zestawu: 2.0.2693.37137
Wersja Win32: 2.0.2693.37137
CodeBase:
file:///C:/WINDOWS/assembly/GAC_MSIL/CCC.Implementation/2.0.2693.37137__90ba9c70f846762e/CCC.Implementation.dll
----------------------------------------
LOG.Foundation
Wersja zestawu: 2.0.2665.42149
Wersja Win32: 2.0.2665.42149
CodeBase:
file:///C:/WINDOWS/assembly/GAC_MSIL/LOG.Foundation/2.0.2665.42149__90ba9c70f846762e/LOG.Foundation.dll
----------------------------------------
MOM.Foundation
Wersja zestawu: 2.0.2665.42168
Wersja Win32: 2.0.2665.42168
CodeBase:
file:///C:/WINDOWS/assembly/GAC_MSIL/MOM.Foundation/2.0.2665.42168__90ba9c70f846762e/MOM.Foundation.dll
----------------------------------------
CLI.Foundation
Wersja zestawu: 2.0.2665.42152
Wersja Win32: 2.0.2665.42152
CodeBase:
file:///C:/WINDOWS/assembly/GAC_MSIL/CLI.Foundation/2.0.2665.42152__90ba9c70f846762e/CLI.Foundation.dll
----------------------------------------
LOG.Foundation.Implementation.Private
Wersja zestawu: 2.0.2665.42169
Wersja Win32: 2.0.2665.42169
CodeBase:
file:///C:/WINDOWS/assembly/GAC_MSIL/LOG.Foundation.Implementation.Private/2.0.2665.42169__90ba9c70f846762e/LOG.Foundation.Implementation.Private.dll
[cut] Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130719
How to clone an object ?
Hello, friends,
In c#.net, I need to clone an object passed into a method,
private object generateCollection(object userInfo)
{
//I then need to generate a group of userInfo,
//How can I clone this passed in object?
//Do we have syntax something like this?
//object newUserInfo = new typeof(userInfo);
}
Thanks a lot. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130717
margins and bounds? [Printing]
hi ,
i have a simple question. Do the margins and bounds for a page have to
be considered together?
As in , should i add up the two to get the *real* printable area?
can i , or should i turn the margins off? by setting it to (0,0,0,0)
because i'm printing things like reports and bills?
Gideon Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130714
Exchange 2003 API Pointers?
Looking for all pointers, references, code sample for sending commands
to Exchane 2003. I would like to send mail using MAPI, create/modify
appointments, etc. I don't want an Outlook interface, but something
that will talk to Exchange directly (impersonating any user I see
fit).
Thanks. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130712
About Certificates and digital signing
I am trying to make a digital signature for a Zip Package using the packaging
facility provided in .NET 3.0 . But the problem is that i need a certificate
to use it, can i use a personal certificate, just for test before buying a
true certificate. If so can someone tell me how to get or make a personal
certificate? Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130709
Dynamic compilation
Hello.
I have a big problem. In fact, I have a program coded in C#. In this
one, I generate a vb.net assembly. Everything is ok. It works well.
But now, my problem is the following.
I want to export the .net object in1 created in the code I want to
compile.
Input is a class used in my c# and vb source
For example:
Input in1 = new Input();
in1.value="2";
And in my code I want to compile by fly. I will only write: I will not
declare the type. Just pass the object to my compilation
MessageBox.Show(in1.value);
With control active script, it is possible to do that with the
function addobject. But it doesn't support vb.net
Could you help me please?
Thank you Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130702
finding files in a directory
hi,
how to get the number of files in a directory...including the files in the
subdirectories...
is there any default method of Directory class..
please help out Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130701
help on regex
i want a reg exp for the below format..
1.0.00.0000
i tried as follows
\d\.\d\.\d{2}\.\d{4}
but it's accepting -ves numbers also(-1.0.00.0000)
I want only +ve numbers in my input..how do i check it? Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130700
autoscaling of winforms
hi,
i'm a newbie to winforms....
i've designed few forms...
but when the resolution is changed to lowest number..
i'm not able to see certain buttons on my form...
how do i fix this issue...I've enabled AutoSacle to true on my winform
do i need to set any properties on the winforms or controls?
please do help out.... Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130698
Problems with managed classes
I've got two classes, ObjClass1 and ObjClass2. I need them to both
know about one another but I can't include the header twice because of
a "type redefinition" even though it's the same file. Ex:
-----ObjClass1.h-----
#ifndef __OBJCLASS1
#define __OBJCLASS1
#include "ObjClass2.h"
public ref class ObjClass1
{
// Stuff
ObjClass2 ^obj2;
};
#endif
-----ObjClass2.h-----
#ifndef __OBJCLASS2
#define __OBJCLASS2
#include "ObjClass1.h"
public ref class ObjClass2
{
// Stuff
ObjClass1 ^obj1;
};
#endif
Now, with this configuration the compiler just complains that there's
no type ObjClass1 and ObjClass2 for the opposite's header file. So I
tried to undef __OBJCLASS1 in ObjClass2.h to try to fix that problem,
but then it says that I'm redefining ObjClass1 since ObjClass1's
header includes ObjClass2.h which includes ObjClass1 again.
At this point I figured I would just put a forward declaration in each
header:
ref class ObjClass1;
ref class ObjClass2;
But when I do this and try to call a function in the object, the
compiler complains that it has no clue what ObjClass1 and ObjClass2
are.
I'm getting really frustrated by this. Is there any way to fix it?
Evan Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130697
Add an image to an imageList from a ressource
Hi,
I want to add an image in an imageList.
I use the VS designer to create my imageList. When I try to add an image
to it, VS open the Windows Explorer... and I want to use an image in my
ressource file.
I used the ressource designer to add the image...
Thank you for your help. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130696
RijndaelManaged class
When I run my application as a NonAdmin user(a user who is a part of the
"Users" group), it throws an exception at a point in the code where
RijndaelManaged class is instantiated. Exception thrown is "Requested
registry access is not allowed". Any help wld be highly appreciated. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130690
IL code debugging?
Is it possible to debug IL code using VS.SET? It would be very useful,
when some error occurs in the module without source-code. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130687
Basic question about threading.
Hello all,
I am completely new to threading and am sorry if this sounds stupid.
I am developing a class which extends from ApplicationException class.
Basically this class (MyException) captures local and instance
variables and method parameters at the time of exception. This
exception is then propogated upwards and goes on collecting the above
mentioned information of all the method/classes through which it
bubbles.
For this purpose i have a "Dictionary<string, Snapshot> methodStates"
in MyException which holds all the information.
Finally i override the ToString method of ApplicationException to
provide a nice view of all the data that my class contains.
Anyway, now since ApplicationException is not thread safe
1)Does this mean that MyException is also not thread safe even if i
lock methodStates collection whenever i access it? Is it that, if
BaseClass is not threadSafe then DerivedClass cannot be thread safe no
matter what you do.
2)Will the locking of the methodStates make sure that atleast my
dictionary is thread safe?
3)What is it that makes ApplicationException not thread safe? From my
limited knowledge, i know that a class with a mutable state is
considered not thread safe.
Basically i want to know if all the care that i am taking to lock my
dictionary is worth anything at all.
Any kind of help would be greatly appreciated. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130681
ClickOnce Outside form a restricted Web site
We have an application that we distribute internally, with in our domain. We
would like to distribute it to a select group of users that will log into a
Web site. I find very little information on using the ClickOnce technology
when on needs to log into the publishing URL.
Has any one tried this?
Where can I find information on ClickOnce needing to logging into a Web
site?
Thank you,
--
Mike Reed Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130680
Opening File with Unknown Extension C#
Hi,
I want to open a File with unknown Extension using C#. What i want
is
i do System.Diagnostics.Process.Start("FileName");
Now if File is associated with any program then the File with open
with that Application, this is working fine.
My requirement says, if file extension is unknown or not associated
with any application then, it should open the Default windows Program
association box and allow user to select a program to open that file.
Thanks.
Abhijeet Kumar. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130674
WebDav Library for .NET?
I have to work with a WebDAV server, and was wondering what .NET
libraries or sample code exist to do so.
Thanks. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130672
ClickOnce Deployment Manifest - publisherIdentity tag
ClickOnce Deployment Manifest - publisherIdentity tag
Using: Microsoft.NET 2.0 application built with VS.2005
I have been searching for some documentation on the xml tag
publisherIdentity in the clickonce deployment manifest - and cannot
find any documentation on the tag. I believe if I can set this value
I will be able to resolve my ClickOnce deployment issue.
Only document found:
http://msdn2.microsoft.com/en-us/library/k26e96zf(vs.80).aspx
http://msdn2.microsoft.com/en-us/library/acz3y3te(vs.80).aspx
I have a ClickOnce application that is being publish from our QA
environment to our UAT environment. I have publish the ClickOnce
application as a Trusted Publisher. But when the application is
launched in our UAT environment (signed with a valid CA issued
certificate using mage). I receive a security warning (user can click
Install or Don't Install) before the user can install the
application. The only difference between UAT and QA is the
certificate (which is valid) and the environment (QA vs UAT).
I have followed the instructions in the MSDN article - but I have no
resolutions.
http://msdn2.microsoft.com/en-us/library/ms996418.aspx
Any help would be appreciated.
Kam Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130669
Can 2.0 Framework application reference 1.1 Framework DLL?
I guess this gets into backward compatibility, but assuming only 2.0
Framework installed on the runtime platform. If the 1.1 code is compatible?
The 1.1 library assembly contains datasets and datareaders. Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130668
3D border question
Some .Net controls have a 3D borders, but if windows XP Display "Appearance"
setting is "Windows XP style", The 3D border changed to XP style. I also
noticed VB 6 3D borders do not change. Is there a way to make 3D border
display all the time no matter what windows settings you choose?
Thanks Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130661
Free web based bug tracking and timesheet
http://www.livetecs.com
TimeLive Web Collaboration Suite is an integrated suite that allows you to
manage project life cycle including tasks, issues, bugs, timesheet, expense,
attendance.
TimeLive is available in two different flavors. Hosted version and
downloadable version. Downloadable version required certain system
requirement to install on local server. Whereas hosted version is already
installed on our fully managed server on state of art datacenter.
Free Lite version is available in both hosted and installable version.
Here are some key features of "TimeLive":
TimeSheet·
-----------
· Track your contractor and employee's timesheet using full featured and
easy to use Time Entry tool. You can then use detailed and summarized view
of all time records using different tools.
· Time Entry Day View for entering full day timesheet in just one server
hit.
· Time Entry Week View for entering full week timesheet in just one server
hit.
· Organization setup like Departments, Locations, Roles
· Different type of Off day monitoring like Sick Days, Vacations etc.
· Client Setup
· Project Setup
· Task setup with multiple assignees for single task.
· Audit Trail
· EMail notification of different timesheet related activities to users.
· Different billing type setup like Hourly / Task based / Call based
· Timesheet approval
· Four Timesheet Approval Paths (None,Administrator,Project,TeamLead)
· Reports with all possible filter selection to get your required output.
· Detail Timesheet Report
· Different timesheet summary reports for based on Client, Project,
Employee, Date
· Timesheet Approval status report
· Reminders to employee for their pending entries.
Attendance
------------
· Web based Attendance system to record and monitor all employee attendance
using simple / fully featured tool.
· Time In
· Time Out
· Off Day reporting for different purpose like Sick leave, vacation etc
· Working Day setup
· Daily Attendance report
· Summary reports for employee off days to track employee Sick leave,
vacation etc.
· Detail report employee off days.
Bug Tracking
------------
· Full integrated bug tracking tool to monitor all bugs / issues using
simple and full featured tool.
· Bug can be add with fields
· Subject
· Description
· Project
· Milestone
· Parent Task
· Duration
· Due Date
· Priority
· Files to be attached
· Multiple assignee of single bug.
· Dashboard view of bug showing All open task / All Reported Task
· Project based open bug summary view
· Bug comments
· Audit trail of every bug modification
· Updating of Bug status
· EMail notification of bug addition and update.
· ReOpen bug tracking and monitoring.
· Quality control reports summarizing bugs by Project / Milestone / Assignee
/ Status
· Personalized overall summary view of projects for Project Manager and Team
Lead.
Expenses Tracking
------------------
· Manage and monitor your project expenses with easy to use integrated
TimeLive Expense management tools.
· Expense entry view for employee to enter their expenses occurred on
project.
· Billable / Unbillable expenses.
· Detail Reports for monitoring expenses
· Different summarize report by Project / Employee / Expenses.
· Approval of Expenses with 4 different approval paths.
· No Approval
· Team Lead
· Team Lead --> Project Manager
· Team Lead --> Project Manager --> Administrator.
· Expenses approval monitoring.
Project Monitoring
---------------------
· Full featured tool to manage your projects and their task with single
integrated tool.
· Nested Task with task hierarchy.
· Tracking of project status
· Assigning of projects to multiple employee
· Tracking of project tasks
· Different dashboard view for Project Manager, Team Lead and Team Member.
· Different report to track and monitor overall project status.
Other Features
----------------
· Exportable reports in PDF and XLS file.
· Downloadable / Hosted version
· Free basic version
· Unlimited disk space for all plans Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130660
Free web based bug tracking and timesheet
This is a multi-part message in MIME format.
------=_NextPart_000_004D_01C7A6E5.E4FFF610
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
http://www.livetecs.com
TimeLive Web Collaboration Suite is an integrated suite that allows you =
to manage project life cycle including tasks, issues, bugs, timesheet, =
expense, attendance.=20
=20
TimeLive is available in two different flavors. Hosted version and =
downloadable version. Downloadable version required certain system =
requirement to install on local server. Whereas hosted version is =
already installed on our fully managed server on state of art =
datacenter.
=20
Free Lite version is available in both hosted and installable version.
=20
Here are some key features of "TimeLive":
=20
Time sheet application
=B7 Track your contractor and employee's timesheet using full featured =
and easy to use Time Entry tool. You can then use detailed and =
summarized view of all time records using different tools.=20
=B7 Time Entry Day View for entering full day timesheet in just one =
server hit.=20
=B7 Time Entry Week View for entering full week timesheet in just one =
server hit.=20
=B7 Organization setup like Departments, Locations, Roles=20
=B7 Different type of Off day monitoring like Sick Days, Vacations etc.=20
=B7 Client Setup=20
=B7 Project Setup=20
=B7 Task setup with multiple assignees for single task.=20
=B7 Audit Trail=20
=B7 EMail notification of different timesheet related activities to =
users.=20
=B7 Different billing type setup like Hourly / Task based / Call based=20
=B7 Timesheet approval=20
=B7 Four Timesheet Approval Paths (None,Administrator,Project,TeamLead)=20
=B7 Reports with all possible filter selection to get your required =
output.=20
=B7 Detail Timesheet Report=20
=B7 Different timesheet summary reports for based on Client, Project, =
Employee, Date=20
=B7 Timesheet Approval status report=20
=B7 Reminders to employee for their pending entries.=20
=20
=20
Bug Tracking Application
=B7 Full integrated bug tracking tool to monitor all bugs / issues using =
simple and full featured tool.=20
=B7 Bug can be add with fields=20
=B7 Subject=20
=B7 Description=20
=B7 Project=20
=B7 Milestone=20
=B7 Parent Task=20
=B7 Duration=20
=B7 Due Date=20
=B7 Priority=20
=B7 Files to be attached=20
=B7 Multiple assignee of single bug.=20
=B7 Dashboard view of bug showing All open task / All Reported Task=20
=B7 Project based open bug summary view=20
=B7 Bug comments=20
=B7 Audit trail of every bug modification=20
=B7 Updating of Bug status=20
=B7 EMail notification of bug addition and update.=20
=B7 Reopen bug tracking and monitoring.=20
=B7 Quality control reports summarizing bugs by Project / Milestone / =
Assignee / Status=20
=B7 Personalized overall summary view of projects for Project Manager =
and Team Lead.=20
=20
=20
Attendance
=B7 Web based Attendance system to record and monitor all employee =
attendance using simple / fully featured tool.
=B7 Time In=20
=B7 Time Out=20
=B7 Off Day reporting for different purpose like Sick leave, vacation =
etc=20
=B7 Working Day setup=20
=B7 Daily Attendance report=20
=B7 Summary reports for employee off days to track employee Sick leave, =
vacation etc.=20
=B7 Detail report employee off days.=20
=20
=20
Expenses Tracking
=B7 Manage and monitor your project expenses with easy to use integrated =
TimeLive Expense management tools.=20
=B7 Expense entry view for employee to enter their expenses occurred on =
project.=20
=B7 Billable / Unbillable expenses.=20
=B7 Detail Reports for monitoring expenses=20
=B7 Different summarize report by Project / Employee / Expenses.=20
=B7 Approval of Expenses with 4 different approval paths.=20
=B7 No Approval=20
=B7 Team Lead=20
=B7 Team Lead --> Project Manager=20
=B7 Team Lead --> Project Manager --> Administrator.=20
=B7 Expenses approval monitoring.=20
=20
Project Monitoring
=B7 Full featured tool to manage your projects and their task with =
single integrated tool.
=B7 Nested Task with task hierarchy.=20
=B7 Tracking of project status=20
=B7 Assigning of projects to multiple employee=20
=B7 Tracking of project tasks=20
=B7 Different dashboard view for Project Manager, Team Lead and Team =
Member.=20
=B7 Different report to track and monitor overall project status.=20
=20
Other Features
=B7 Exportable reports in PDF and XLS file.=20
=B7 Downloadable / Hosted version=20
=B7 Free basic version=20
=B7 Unlimited disk space for all plans=20
=20
=20
------=_NextPart_000_004D_01C7A6E5.E4FFF610
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML xmlns:o =3D "urn:schemas-microsoft-com:office:office"><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.6000.16441" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'"><A=20
href=3D"http://www.livetecs.com/"><FONT=20
color=3D#800080>http://www.livetecs.com</FONT></A><o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'"><BR>TimeLive=20
Web Collaboration Suite is an integrated suite that allows you to manage =
project=20
life cycle including tasks, issues, bugs, timesheet, expense, =
attendance.=20
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"> <o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'">TimeLive=20
is available in two different flavors. Hosted version and downloadable =
version.=20
Downloadable version required certain system requirement to install on =
local=20
server. Whereas hosted version is already installed on our fully managed =
server=20
on state of art datacenter.</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"> <o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'">Free=20
Lite version is available in both hosted and installable =
version.</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"> <o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'">Here=20
are some key features of "TimeLive":</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"> <o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'"><A=20
href=3D"http://www.livetecs.com/"><FONT color=3D#800080>Time sheet=20
application</FONT></A><BR>=B7 Track your contractor and employee's =
timesheet using=20
full featured and easy to use Time Entry tool. You can then use detailed =
and=20
summarized view of all time records using different tools. <BR>=B7 Time =
Entry Day=20
View for entering full day timesheet in just one server hit. <BR>=B7 =
Time Entry=20
Week View for entering full week timesheet in just one server hit. =
<BR>=B7=20
Organization setup like Departments, Locations, Roles <BR>=B7 Different =
type of=20
Off day monitoring like Sick Days, Vacations etc. <BR>=B7 Client Setup =
<BR>=B7=20
Project Setup <BR>=B7 Task setup with multiple assignees for single =
task. <BR>=B7=20
Audit Trail <BR>=B7 EMail notification of different timesheet related =
activities=20
to users. <BR>=B7 Different billing type setup like Hourly / Task based =
/ Call=20
based <BR>=B7 Timesheet approval <BR>=B7 Four Timesheet Approval Paths=20
(None,Administrator,Project,TeamLead) <BR>=B7 Reports with all possible =
filter=20
selection to get your required output. <BR>=B7 Detail Timesheet Report =
<BR>=B7=20
Different timesheet summary reports for based on Client, Project, =
Employee, Date=20
<BR>=B7 Timesheet Approval status report <BR>=B7 Reminders to employee =
for their=20
pending entries. <o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p> </o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p> </o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'"><A=20
href=3D"http://www.livetecs.com/"><FONT color=3D#800080>Bug Tracking=20
Application</FONT></A><BR>=B7 Full integrated bug tracking tool to =
monitor all=20
bugs / issues using simple and full featured tool. <BR>=B7 Bug can be =
add with=20
fields <BR>=B7 Subject <BR>=B7 Description <BR>=B7 Project <BR>=B7 =
Milestone <BR>=B7=20
Parent Task <BR>=B7 Duration <BR>=B7 Due Date <BR>=B7 Priority <BR>=B7 =
Files to be=20
attached <BR>=B7 Multiple assignee of single bug. <BR>=B7 Dashboard view =
of bug=20
showing All open task / All Reported Task <BR>=B7 Project based open bug =
summary=20
view <BR>=B7 Bug comments <BR>=B7 Audit trail of every bug modification =
<BR>=B7=20
Updating of Bug status <BR>=B7 EMail notification of bug addition and =
update.=20
<BR>=B7 Reopen bug tracking and monitoring. <BR>=B7 Quality control =
reports=20
summarizing bugs by Project / Milestone / Assignee / Status <BR>=B7 =
Personalized=20
overall summary view of projects for Project Manager and Team Lead. =
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p> </o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"> <o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'"><A=20
href=3D"http://www.livetecs.com/"><FONT =
color=3D#800080>Attendance</FONT></A><BR>=B7=20
Web based Attendance system to record and monitor all employee =
attendance using=20
simple / fully featured tool.<BR>=B7 Time In <BR>=B7 Time Out <BR>=B7 =
Off Day=20
reporting for different purpose like Sick leave, vacation etc <BR>=B7 =
Working Day=20
setup <BR>=B7 Daily Attendance report <BR>=B7 Summary reports for =
employee off days=20
to track employee Sick leave, vacation etc. <BR>=B7 Detail report =
employee off=20
days. </SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"> </SPAN><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'">=20
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"> <o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'"><A=20
href=3D"http://www.livetecs.com/"><FONT color=3D#800080>Expenses=20
Tracking</FONT></A><BR>=B7 Manage and monitor your project expenses with =
easy to=20
use integrated TimeLive Expense management tools. <BR>=B7 Expense entry =
view for=20
employee to enter their expenses occurred on project. <BR>=B7 Billable / =
Unbillable expenses. <BR>=B7 Detail Reports for monitoring expenses =
<BR>=B7=20
Different summarize report by Project / Employee / Expenses. <BR>=B7 =
Approval of=20
Expenses with 4 different approval paths. <BR>=B7 No Approval <BR>=B7 =
Team Lead=20
<BR>=B7 Team Lead --> Project Manager <BR>=B7 Team Lead --> =
Project Manager=20
--> Administrator. <BR>=B7 Expenses approval monitoring. </SPAN><SPAN =
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"> <o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'"><A=20
href=3D"http://www.livetecs.com/"><FONT color=3D#800080>Project=20
Monitoring</FONT></A><BR>=B7 Full featured tool to manage your projects =
and their=20
task with single integrated tool.<BR>=B7 Nested Task with task =
hierarchy. <BR>=B7=20
Tracking of project status <BR>=B7 Assigning of projects to multiple =
employee=20
<BR>=B7 Tracking of project tasks <BR>=B7 Different dashboard view for =
Project=20
Manager, Team Lead and Team Member. <BR>=B7 Different report to track =
and monitor=20
overall project status. </SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"> <o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><SPAN=20
style=3D"FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'; =
mso-fareast-font-family: 'Times New Roman'"><A=20
href=3D"http://www.livetecs.com/"><FONT color=3D#800080>Other=20
Features</FONT></A><BR>=B7 Exportable reports in PDF and XLS file. =
<BR>=B7=20
Downloadable / Hosted version <BR>=B7 Free basic version <BR>=B7 =
Unlimited disk=20
space for all plans <BR> </SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman','serif'; =
mso-fareast-font-family: 'Times New Roman'"><o:p></o:p></SPAN></P>
<P class=3DMsoNormal style=3D"MARGIN: 0in 0in 0pt"><o:p><FONT=20
face=3DCalibri> </FONT></o:p></P></DIV></BODY></HTML>
------=_NextPart_000_004D_01C7A6E5.E4FFF610-- Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130659
How do I Close XmlDataDocument?
Hi,
I am using the following code to open an XML document:
Dim datadoc As New System.Xml.XmlDataDocument
datadoc.DataSet.ReadXml(New StreamReader(sFileName), XmlReadMode.InferSchema)
When I am through using the XML file I want to rename it to another folder
but it's locked. How do i close it? XmlDataDocument does not have a Close
method.
Thanks,
John Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130655
Memory footprint across copies of app
What is the memory footprint methods & properties of a windows app running on
a server when the server spins up multiple instances of the application?
In my envirionment, we have a Citrix server farm running .Net 2.0 windows
apps. Does the framework allow for instances of the same application to
access the same memory space where these methods & properties are stored
(assuming the security context is the same for each instance)? Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130653
need help on autoscaling on win forms
hi,
i'm a newbie to winforms....
i've designed few forms...
but when the resolution is changed to lowest number..
i'm not able to see certain buttons on my form...
how do i fix this issue...
do i need to set any properties on the winforms or controls?
please do help out.... Tag: Free .net controls at http://www.controlstrading.com/ Tag: 130650
Hello
You can find many .net controls here:
http://www.controlstrading.com/