Detecting if Internet Explorer browser is installed
I'm using axwebbrowser in my C# \ Winform application.
I want that when the application is launched (or when installed, what is
better?) will check that Internet Explorer browser is installed (so the
axwebbrowser will function as expected).
How to do that?
Thanks Tag: Setup package without Admin rights? Tag: 112808
Which future for WINDOWSFORMS ?
Hi
i must start this year a very big application.
i think 2 possibilty :
1) Visual Studio (2008) with WindowsForms
2) Delphi 2007 VCL
i have read some news on the web on windowsforms....
Is a dead tecnology ? without future ( long termine )
Are there other tecnology in substitution of the windowsforms ?
I DON'T WANT REWRITE ALL MY BIG APPLICATION Beetween 3-5 years
( MS philosophy -.- ) Tag: Setup package without Admin rights? Tag: 112806
Using Visio InterOp in VB.Net - Loading Visio silently
Hello,
I am having problems loading the visio application silently. When I
load word in the background in VB.NET, it remains hidden and the user
doesn't know its loaded.
However, when I load Visio in the background, the window pops up and
then disappears. Is this a fault with the visio interop libraries, or
can this be fixed?
At the moment, I am using the same code that opens word to open visio.
Is there a better way to open visio in VB.NET?
Thanks in Advance.
Dean Tag: Setup package without Admin rights? Tag: 112804
Seeking advice for DataGridView with several Unbound Columns
Hi,
I'm looking for advice or samples regarding the implementation of what is
essentially a bound grid, most columns are bound, however there are a couple
of unbound columns which are basically calculated totals (read-only) of data
in the bound columns (which are read/write).
I've implemented the CellValueNeeded event for the unbound columns. This
works when each row is first loaded. However, I then need to be responsive
to changes that that the user may make to the values of the bound columns.
when this happens, I need to recalculate the values of the bound columns. I
know whenever the user makes a change to a cell; CellValueChanged. At that
point, how to I 'invalidate' the current row so that it will refetch all of
the calculated columns (thus causing the recalculated values to appear). So
here's what I really need to understand how to do:
1. Force an Unbound cell to refresh its value.
2. Force all Unbound cells in a given Row to refresh their values.
3. Force all Rows in a Grid to refresh all of their respective unbound
columns.
(and if someone can show me a link, I'd really appreciate it. I'm usually
pretty good with Google but for some reason in this case, I'm turning up
documentation on Bound and Unbound modes, but really very little on the
mixed mode of binding which I'm trying to implement.)
Thanks for your advice!!!
Joseph Geretz Tag: Setup package without Admin rights? Tag: 112802
how go to specific row with CurrencyManager
I try to build form with binding textbox for employees table. the
problem is: I need to give user ability to move to specific
employeeID. how can I move the form by BindingManager to specific
employeeID, while i not have idea what is the position of this row? Tag: Setup package without Admin rights? Tag: 112801
Add combo to another application's toolbar
I am developing a plugin for query analyzer (QA). It is a single window, with
1 combo. When i choose an item, my application brings QA to front and send
some keystrokes to connect to a specific server, with a pre defined user name
and password. It works fine and i also could turn my application into a Query
Analyzer's child window.
But, i really would like to turn my combo into a element of the toolbar
(that is a ToolbarWindow32 object). Any idea about how to do it? Tag: Setup package without Admin rights? Tag: 112800
Changing ProductName in Setup Package
I created a setup package, through the wizard, and realized I didn't like
the form of the ProductName.
Where can I find the place to change the ProductName property? Tag: Setup package without Admin rights? Tag: 112798
DataGridView Sort calls Form.Shown
Hi,
I have a form with DataGridView on it. Also I have hooked for Shown
event of Form. Now when I click DataGridView header to sort column,
Shown event of Form also gets called.
I just want not to call Shown event of Form when header is clicked on
DataGridView.
Any idea how to do this?
Thanks,
Mahesh Tag: Setup package without Admin rights? Tag: 112797
programatically access property of a control placed on a windows f
Hi,
I want to programmatically access property of a control placed on a windows
form which is not a part of my application.
Other application might have already launched and a form is opened. I just
want to access properties of a control based on name of the control.
Is this possible using any api or .net framework
--
Mahesh A Deo, MCP Tag: Setup package without Admin rights? Tag: 112796
DataGridView and Binding Source
Hi,
When I set DataGridView's DataSource property to Binding Source,
DataGridView becomes invisible. If I comment that line, DataGridView is
visible again.
I am using another thread to get data from server and then using
control.invoke on ui thread to set DataGridView's DataSource property to data
received from server which is Binding Source object.
Any idea what could be the reason?
--
Thanks,
Mahesh Tag: Setup package without Admin rights? Tag: 112793
User Control Localization
I have a user control with a public property, when I try to set the
attirbutes of the property as so:
<Localizable(True)> _
Public Property DisplayText() As String
Get
Return Me.DisplayTextLbl.Text
End Get
Set(ByVal value As String)
Me.DisplayTextLbl.Text = value
End Set
End Property
I get Type Localizable not defined, what am I missing?
Thanks. Tag: Setup package without Admin rights? Tag: 112790
v3.5 Apps on v2.0 machines
Hi,
Has anyone succesfully built and app with 'Orcas' and deployed on machine
with only NET 2.0 installed. I would think that if it doesn't reference any
of the 'new' assemblies all should work OK.
TIA
Jared Tag: Setup package without Admin rights? Tag: 112783
Modal Dialogs Such as MessageBox Should Appear Above Always-on-Top
I suggest that modal dialog boxes have a higher priority than non-modal
always-on-top forms, as an unanswered modal dialog will give the appearance
of a hung app.
Good morning. I've been beating my head against a problem where my C#
app was hanging, and I finally isolated it to MessageBox.Show(). I use this
function many times in the app, and I couldn't figure out why it wasn't
working in this one case. Just in case anyone else goes through this same
problem, here was what was happening: part of my app is always-on-top, as a
kind of floating menu. The message box was appearing _behind_ the menu, and
for this one bit of code, the message box was so small it didn't show up
around the menu.
For my app, a better solution would probably be to put all my forms
inside a MDI frame, rather than my current GDK-ish solution with
free-floating forms, but if this post saves anyone an hour's headache, or at
least gets a laugh, it's worth the bits!
----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.
http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx?mid=ca9f172b-ee14-4bfe-a72e-e57eefd0e9d7&dg=microsoft.public.dotnet.framework.windowsforms Tag: Setup package without Admin rights? Tag: 112775
how to make selected dates Backgroud color MonthCalendar control
Hi,
In my windows application I need to display MonthCalendar control
with some selected dates.
I am using the property "Bolded Dates" to add selected/some dates.
But those dates are displayed in "BOLD".
But I need to display with different background color.
How can I display the "Bolded Dates" in different Background color?
Thank you
Ramesh Tag: Setup package without Admin rights? Tag: 112772
How to determine the active form
This is a multi-part message in MIME format.
------=_NextPart_000_000B_01C7CFCC.69E14F00
Content-Type: text/plain;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
Hi there,
Does anyone know how to (generically) determine the currently active =
form for an application using a "static" function (so I can call it from =
anywhere). There is no offiical way I've been able to find so I've =
written the following for starters:
public static Form GetActiveForm()
{
// Returns null for an MDI app
Form activeForm =3D Form.ActiveForm;
if (activeForm =3D=3D null)
{
FormCollection openForms =3D Application.OpenForms;
for (int i=3D 0; i < openForms.Count && activeForm =3D=3D null; =
++i)
{
Form openForm =3D openForms[i];
if (openForm.IsMdiContainer)
{
activeForm =3D openForm.ActiveMdiChild;
}
}
}
return activeForm;
}
However, if no MDI child forms are open when this is called then the MDI =
parent should be returned. What if there's more than one MDI parent in =
the application however (unlikely but possible I assume). How do you =
then determine which is active. In any case, the code above seems like =
a "hack" to me and I'm concerned about any issues I may be neglecting. =
In fact, the entire situation seems like a major oversight on MSFT's =
part so I'm uneasy about doing this. If someone can therefore set me on =
the right track I'd appreciate it. Thanks in advance.
------=_NextPart_000_000B_01C7CFCC.69E14F00
Content-Type: text/html;
charset="Windows-1252"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Dwindows-1252">
<META content=3D"MSHTML 6.00.6000.16481" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT face=3DArial size=3D2>Hi there,</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Does anyone know how to (generically) =
determine the=20
currently active form for an application using a "static" function (so I =
can=20
call it from anywhere). There is no offiical way I've been able to find =
so I've=20
written the following for starters:</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DCourier size=3D2>public static Form=20
GetActiveForm()<BR>{</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2> // Returns =
null for an=20
MDI app<BR> Form activeForm =3D=20
Form.ActiveForm;<BR> if (activeForm =3D=3D=20
null)<BR> {<BR> =20
FormCollection openForms =3D =
Application.OpenForms;<BR> =20
for (int i=3D 0; i < openForms.Count && =
activeForm=20
=3D=3D null; ++i)<BR> =
{<BR> =20
Form openForm =3D=20
openForms[i];<BR> =
if=20
(openForm.IsMdiContainer)<BR> =20
{<BR> =
=20
activeForm =3D =
openForm.ActiveMdiChild;<BR> =20
}<BR> =
=20
}<BR> }</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV><FONT face=3DCourier size=3D2> return=20
activeForm;<BR>}</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>However, if no MDI child forms are open =
when this=20
is called then the MDI parent should be returned. What if there's more =
than one=20
MDI parent in the application however (unlikely but possible I assume). =
How do=20
you then determine which is active. In any case, the code above =
seems like=20
a "hack" to me and I'm concerned about any issues I may be neglecting. =
In fact,=20
the entire situation seems like a major oversight on MSFT's =
part so=20
I'm uneasy about doing this. If someone can therefore set me on the =
right track=20
I'd appreciate it. Thanks in advance.</FONT></DIV></BODY></HTML>
------=_NextPart_000_000B_01C7CFCC.69E14F00-- Tag: Setup package without Admin rights? Tag: 112764
Using Crystal Reports
Is there a way to add ReportObjects to a ReportDocument in code with the
Crystal Reports version included with Visual Studio 2005? I've done this
before, but I had a full version of Crystal Reports installed. I'm currently
looking at things like ReportDefinition.ReportObjects and
Section3.ReportObjects and I can reference TextObjects that are already
created on my report, but I can't seem to add any more. Thanks for the info.
--
- Dave Davidson [MCSD] Tag: Setup package without Admin rights? Tag: 112763
Responding to DataGrid selection
With a .Net 2's WinForms which contain
1) a DataGrid which is assigned to a DataSet's DataTable (some columns are
"hidden" on screen)
2) a few TextBox which are aligned to different fields within the same
DataTable
What event do I code for the .Net DataGrid such that the TextBoxes's value
are updated as different rows are selected? Tag: Setup package without Admin rights? Tag: 112761
Executable's path
With .net2, how do I get the path of where the .EXE is located for a WinForms
app? e.g. for "h:\myapps\testapp\test.exe" , "h:\myapps\testapp\" should
bee returned Tag: Setup package without Admin rights? Tag: 112760
Integer Number -> Text Number
All,
I have a form that currently displays an integer value in a label to a user
but want it to now display the text equivalent. For example, if I have 54,
it should say fifty four. Any class examples on doing this or should I just
do it with a case function? Not to be picky, but....Ideas in VB would be
best.
Thanks,
Brian Tag: Setup package without Admin rights? Tag: 112752
KB928365 and ClickOnce
Hi All,
Sorry i'm new to this so i hope this is the correct section. I know
KB928365 has been beaten to death but i have encounted a differnet issue.
(And have not been able to find a thread that talks about it) It seem that
once i installed the new security patch all my applactions that check for
updates now fail with the error Application cannot be started. I cannot even
install using the Publish.htm. I always get the error. Contact the
applicaiton vendor. When i click the details i see:
PLATFORM VERSION INFO
Windows : 5.1.2600.131072 (Win32NT)
Common Language Runtime : 2.0.50727.832
System.Deployment.dll : 2.0.50727.832 (QFE.050727-8300)
mscorwks.dll : 2.0.50727.832 (QFE.050727-8300)
dfdll.dll : 2.0.50727.42 (RTM.050727-4200)
dfshim.dll : 2.0.50727.42 (RTM.050727-4200)
SOURCES
Deployment url : http://y8zg843m/test/test.application
ERROR SUMMARY
Below is a summary of the errors, details of these errors are listed later
in the log.
* Activation of http://y8zg843m/test/test.application resulted in
exception. Following failure messages were detected:
+ Object reference not set to an instance of an object.
COMPONENT STORE TRANSACTION FAILURE SUMMARY
No transaction error was detected.
WARNINGS
There were no warnings during this operation.
OPERATION PROGRESS STATUS
* [2007/07/26 2:12:40 PM] : Activation of
http://y8zg843m/test/test.application has started.
ERROR DETAILS
Following errors were detected during this operation.
* [2007/07/26 2:12:40 PM] System.NullReferenceException
- Object reference not set to an instance of an object.
- Source: System.Deployment
- Stack trace:
at
System.Deployment.Application.SystemNetDownloader.DownloadSingleFile(DownloadQueueItem next)
at System.Deployment.Application.SystemNetDownloader.DownloadAllFiles()
at
System.Deployment.Application.FileDownloader.Download(SubscriptionState
subState)
at
System.Deployment.Application.DownloadManager.DownloadManifestAsRawFile(Uri&
sourceUri, String targetPath, IDownloadNotification notification,
DownloadOptions options, ServerInformation& serverInformation)
at
System.Deployment.Application.DownloadManager.DownloadDeploymentManifestDirectBypass(SubscriptionStore
subStore, Uri& sourceUri, TempFile& tempFile, SubscriptionState& subState,
IDownloadNotification notification, DownloadOptions options,
ServerInformation& serverInformation)
at
System.Deployment.Application.DownloadManager.DownloadDeploymentManifestBypass(SubscriptionStore
subStore, Uri& sourceUri, TempFile& tempFile, SubscriptionState& subState,
IDownloadNotification notification, DownloadOptions options)
at
System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut)
at
System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)
COMPONENT STORE TRANSACTION DETAILS
No transaction information is available.
Now this is happening regarless of the application C# VB. This test
application only has a lable. When i remove the patch everything works just
fine. Anyone else seeing this issue? Tag: Setup package without Admin rights? Tag: 112751
Character spacing when printing
Hi everybody.
I've been searching but I can't find if is it possible and, if so, how
to set the space between characters (I have to fill in a already printed
form and every single character must fall in its own little square).
I thought it was possible to set something with System.Drawing.Fon, but
nothing seems to work...
Hope someone could help me.
Thank you very much,
Lorezo Tag: Setup package without Admin rights? Tag: 112750
WFP, WF, WCF and CAB
Is the introduction of these new technologies going to change the way that
CAB works or will CAB still use basically the same architecture?
Bill Tag: Setup package without Admin rights? Tag: 112749
Sent Crystal Report as pdf via Outlook
Hi,
is it possible to sent an Crystal report as pdf file via outlook in code??
does someone have a code snippet to get me started??
Thx!!
--
Best regards
Luc N Tag: Setup package without Admin rights? Tag: 112748
Setup Project Question: Validating user input within UI Templates
Hi:
In one step in my setup program I'm asking user to supply database
connection information using supplied UI Templates. How can I prevent user
from moving forward if fields are left empty?
Thanks,
Charlie Tag: Setup package without Admin rights? Tag: 112747
Running MS Word in VB.net with a switch
Hello,
We are currently running Word in a form OK. However, we need to run a
dedicated instance. In order to run this instance, as a service we use
the following code:
Dim p As New ProcessStartInfo("winword.exe", "/x")
Process.GetCurrentProcess().StartInfo = p
Currently to execute word in vb.net so that we can get a handle on it,
we use:
dim wrdapp as New Word.Application.
Is there a way to have wrdapp run the application with the /x switch
as we need to get a handle on the application to open documents within
this.
Thanks in Advance,
Dean Tag: Setup package without Admin rights? Tag: 112745
Clicking on a label's border does not work
Hey guys,
I've been trying to figure this out for a while now. I have a form with
some labels. The labels' click events are handled fine if I click inside the
label but if I position the mouse directly on the border of the label (a
fixed single border) the click isn't registered.
Is it just impossible to click/double click the label's border and set off
the click event handler? If anyone knows how this can be done, please let me
know.
Thanks. Tag: Setup package without Admin rights? Tag: 112742
Was form miximized while closing?
I want to store state of the form such as X and Y position, size, height of
GridView on this form when form is closed. Then on load I want to reload this
state.
The question is how do I know if form was in maximized state while closing
and would appreciate if you could point me to example of doing above task.
--
Thanks,
Mahesh Tag: Setup package without Admin rights? Tag: 112739
FolderBrowserDialog.RootFolder not using special folder?
Is it possible to set the root folder of FolderBrowsserDialog to any
folder I want. ie c:\temp or something?
Haven't yet found a way to do this.
Thanks for any responses. Tag: Setup package without Admin rights? Tag: 112737
Check data before binding manager add to table
Hello,
How can I check for Null or other constraint before the row will be added by
the binding manager to the datatable.
sorry for my english i'm from Italy
Grazie
Stefano Bonazzi
--
Stefano Bonazzi Tag: Setup package without Admin rights? Tag: 112733
Idosynchrosies relating to the taskbar
A couple of issues for the boffins among you.
Given a screen with the taskbar docked at the bottom and a maximized form
with a statusbar docked at the bottom where the ShowItemToolTips property is
set to True, when one moves the mouse over any of the items on the statusbar
that have a ToolTip and the ToolTip is painted so that it overlaps the
taskbar then the ToolTip blinks at a fairly fast frequency. On XP this
behaviour occurs along the whole length of the taskbar however on Vista this
behaviour occurs only when the ToolTip overlaps the system tray area.
To me it appears that on XP, the whole taskbar is being repainted several
times per second and that on Vista, the system tray area is being repainted
several times per second, thus causing an overlapping window (the ToolTip in
this case) to be repainted as well.
Again, given a screen with the taskbar docked at the bottom and set to 'Keep
on top of other windows', on XP, when one resizes a window by dragging the
bottom border, one cannot drag the border any lower than the top of the
taskbar, however, on Vista, when one does the eqivalent operation one can
drag the bottom border lower than the top of the taskbar with the result
that the lower portion of the window ends up behind the taskbar.
This one is probably a bit more subtle in that it would appear that when a
window is being resized by dragging a border, Vista is using an equivalent
of Screen.Bounds to limit the drag operation rather than an equivalent of
Screen.WorkingArea.
Needless to say, both observed behaviours are quite disconcerting.
Has anyone else noticed either of these behaviours and perhaps come up with
a workaround? Tag: Setup package without Admin rights? Tag: 112732
HTTPWebRequest, Proxy, Credentials?
Is there a simple way to get my logon credentials to make my web request
work through our proxy server? I tried CredentialCache.DefaultCredentials,
but I get nothing back. I can get it to work if I just create a new
NetworkCredential object specifying user, password and domain. But, I would
rather get that info automatically if possible, rather than presenting a
winform for them to type it in.
Lastly, why do both the request object and the request's proxy object have
properties for credentials? Do I need to populate them both?
Thanks,
// WebRequest
HttpWebRequest webRequest =
(HttpWebRequest)WebRequest.Create(anyURL);
webRequest.Timeout = 10000;
webRequest.CookieContainer = cookieContainer;
// Proxy Credentials?
webRequest.Proxy = WebProxy.GetDefaultProxy();
webRequest.Proxy.Credentials = new
NetworkCredential("XXX","YYY","ZZZ");
webRequest.Credentials = CredentialCache.DefaultCredentials;
webRequest.Credentials = new
NetworkCredential("XXX","YYY","ZZZ"); Tag: Setup package without Admin rights? Tag: 112731
Custom Toolstrip
I want to create a toolstrip and I would like to make that toolstrip reusable
by other windows in my application. This would be the same concept as a
UserControl, only it would be a Toolstrip. Any suggestions on the best way to
do that? Tag: Setup package without Admin rights? Tag: 112728
Unable to close Microsoft Word within AxWebBrowser Control
Hello,
I am currently opening Word in an AxWebBrowser Control on a form. When
the user saves the saves the document using a save + close button on
the form, it saves the document, navigates the AxWebBrowser Control to
about:blank and exits word and then closes the form.
The exiting of word and the closing of the form is run in the
AxWebBrowser.NavigateComplete event handler.
The issue I have, is if the user clicks the close button on the form,
it still leaves word running.
If I try to exit word in the form.closing or form.closed event
handler, it has an error as the word document is still displaying in
the AxWebBrowser Control. Because the form is closing, it cannot run
the AxWebBrowser.NavigateComplete event handler.
This then leaves multiple instances of Word open in the Process
tables.
Does anyone know if there is a way of closing word without any errors
when the user closes the form?
Many Thanks,
Dean Tag: Setup package without Admin rights? Tag: 112726
a problem in datagridview
i am using a DataGridView control to populate data from database.
it has a checkbox column for selecting and some other textbox columns
for showing the data.
the form also has a toolstrip which has a button for viewing print
preview of selected rows. when the user selects or deselects a row
then the preview button visiblity changes depending upon whether one
or more rows are checked.
i created the procedure for it as following:
--------------------------------------------------------------------------------------------------
Public Sub TogglePrintPreview()
Dim flagPreview As Boolean = False
For i As Integer = 0 To dgSwitchInv.Rows.Count - 1
If
Convert.ToBoolean(dgSwitchInv.Rows(i).Cells(0).EditedFormattedValue) =
True Then
flagPreview = True
End If
Next
ActiveDirectory.HideButton(Me.Name, btnPreview, flagPreview)
End Sub
--------------------------------------------------------------------------------------------------
but the preview button does not change its visiblity everytime
am i doing something wrong here. or is there a better solution for
this. Tag: Setup package without Admin rights? Tag: 112723
Continual restart, never loads
One of my computers is is in a continual restart, it never loads. The
windows logo appears with the animated bar under it, it will go one and a
half times them shuts down and starts back up. Safe mode does the same
thing. The recovery console gives me this error message:
UNMOUNTABLE_BOOT_VOLUME
Technical information:
*** STOP: 0x000000ED (0x862b0848,0xc0000006,0x00000000,0x00000000)
I have tried to use norton to scan it and fix it but says there is nothing
wrong.
Anyone who has any information would be very much appreciated. Thank You. Tag: Setup package without Admin rights? Tag: 112716
XP style GUI for winform
hi i m using .net 2003 and winform application, i m using below article to
make my application winform outlook like xp style, but it does not shows
controls on my winform as xp style , but it shows messagebox(using
MessageBx.Show("dd")) like xp style, what i m missing , how to make my
winform button also behave lik xp style.
http://msdn2.microsoft.com/en-us/library/aa289524(VS.71).aspx#vbtchusingwindowsxpvisualstyleswithcontrolsonwindowsformsanchor7
thanks in advance. Tag: Setup package without Admin rights? Tag: 112708
vs 2005, borken installation? No controls show up
I've installed vs 2005 pro and sp1. When I try to add controls to a
winform, they never appear on the canvas. The controls are listed at the
bottom of the design area, so apparently they are being added to the
form. But after adding buttons tabs whatever, the form is still blank
looking. Per property box all are visible with valid locations and
dimensions.
Something is very screwed up. Has this been heard of? How can the ide
fail at such basic tasks? Tag: Setup package without Admin rights? Tag: 112707
Waiting for a process to Finish (Threading)
Hello,
I have having issues with threading. Below is the code I am running:
'Prints the word doc
myWordApp.ActivePrinter = cboPrintList.SelectedItem
myWordApp.PrintOut()
'Sets the default printer back
myWordApp.ActivePrinter = strDefaultPrinter
'Pauses until the word document is printed
System.Threading.Thread.Sleep(2000)
'Closes the word document
myWordApp.Quit(False)
The issue is that the word document is still printing in word as the
Word Application closes, so the document never prints.
Is there a way to have quit word once the printing has finished by
using threads. I am quite new to threading, so I'm probably missing
something obvious (or not).
Many Thanks in Advance,
Dean Tag: Setup package without Admin rights? Tag: 112702
Errors Found Code 80244019 Windows Vista Business
Hi there,
Recently i've installed Windows Vista Business. When i run Windows update i
get the following error Code 80244019. I allready tried to set the LAN
settings to automaticly dectected settings, but that won't work. Earlier i
also removed a setting in my regedit but that didn't work alswell. The
settings for automatic updates is grey i can't put them on because i am no
administrator. I changed this settings to administrator but no succes. Is
there anabody who had the same problem with this error??
Tnx Michel Tag: Setup package without Admin rights? Tag: 112701
vs2005: windows form won't minimize or maximize
I have a main form window (c#) that won't minimize or maximize. Clicking the control menu buttons will minimize or maximize the form, but the form immediately reverts back to normal size. This just started all of a sudden, I have rebuilt the app, and searched through the form code and properties. Nothing was changed as far as I know, and there is nothing out of the ordinary I can find. I'm pretty far into designing this form and I'd like to keep it if I could rather than redesigning it since it has toolbars, tree and grid controls. Tag: Setup package without Admin rights? Tag: 112695
Winform controls vs. WPF controls.
Will Net 2.0 Winform controls work in WPF apps or does a control have to be
specifically designed for WPF?
Bill Tag: Setup package without Admin rights? Tag: 112694
Looking for suggestions on design patterns/architecture books
Hey guys,
I'm looking to improve my knowledge of design patterns and n-tiered
application architecture. Do any of you have any suggestions on good reading
material?
I know the GoF book on design patterns is very popular but I was wondering
if that is my best choice to learn these design patterns. It is a pretty old
book and in C+, and I am concentrating on C# but I don't think that would be
a problem. However, if anyone knows a book thats just as good as the GoF one
and in C#, please let me know.
Besides desing patterns, I would like to learn more about n-tiered
architecture and application development (winforms and soon WPF). Any
suggestions for this (C# preferred)?
Thanks for the input,
-Flack Tag: Setup package without Admin rights? Tag: 112693
Question on WPF
Is it possible to develop a windows app using WPF and net 3.0 that will run
in a browser or on the desktop without any changes to it?
Bill Tag: Setup package without Admin rights? Tag: 112692
Web based timesheet application
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
. International date formats supported. Tag: Setup package without Admin rights? Tag: 112689
Uninstalling SmartClient on XP
I installed a .Net 2.0 SmartClient on an XP machine. The options for the
SmartClient install was that the 'Application is only available online'. How
do I remove it? How do I view a list of installed SmartClients and their
versions?
Thanks for your help!
Terry Tag: Setup package without Admin rights? Tag: 112687
Context menu depending on panel
I have a form that has 3 different panels in it. I want to have a different
context menu depending on which panel the mouse cursor is in at the time of
the right click on the mouse. How do I achieve this?
Bill Tag: Setup package without Admin rights? Tag: 112684
memory not being released
Hello all,
I have a winforms app running on framework v2.0.50727 which isn't not
releasing memory back to the OS after closing forms. Simple forms (a list +
button)
or complex ones (tabs, lots of text boxes, third party masked edit control)
behave the same way,
Every time is instantiated it allocates memory which never gets released.
The code sequence is
Dim frCustomer As New frmCustomer
..
custom code to populate form
...
frCustomer.ShowDialog()
frCustomer.Dispose()
If Not frCustomerIs Nothing Then frCustomer= Nothing
Where should I start troubleshooting? What am I doing wrong.
Thanks a million,
Gigel Tag: Setup package without Admin rights? Tag: 112683
Is there any way to create a setup package, through VS.Net (2003, in this
case), so that the people who are installing it, do not need Admin rights
when doing so?