all groups > dotnet general > july 2005 > threads for thursday july 28
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Pop-up window and the parent
Posted by thejackofall at 7/28/2005 6:38:56 PM
Hi.
I create a pop-up window. From there, I select an item. As soon as I
select an item, my JavaScript function, below, gets called. In there, I want
the parent window to refresh with a query string. However, the parent window
isn't refreshed, but the pop-up window closes silently.
W... more >>
Show a closed form brings up old values on form
Posted by Darren Murdoch at 7/28/2005 6:37:39 PM
Gedday,
I have a program where users click on a Add Seeker option from the main menu
and then another form is opened and the users enter data and then it adds it
all to a dbase which works fine and then closes the form. The problem is
that when I close the form and go back to the main menu, ... more >>
Stop Excel connecting to Internet?
Posted by jersey at 7/28/2005 5:49:07 PM
I am creating an instance of Excel in a WinForm application. When I try
to run this application, there is a long wait followed by a message from
my firewall that my application is attempting to connect to the internet.
Is there any way to stop automation instance of office from connecti... more >>
Create a TextBox control with BorderColor property
Posted by sreenish at 7/28/2005 5:44:01 PM
Hi All,
How can I change the boder color of a TextBox control? I am trying to crate
a new control derived from TextBox with a new property BorderColor. I could
not find a way to do this. Please help!
Thanks,
Sreenish
... more >>
.Net Framework 2.0 Collection classes with Delegates?
Posted by cody at 7/28/2005 5:13:08 PM
Is is just my imagination or was there a Beta or VS2005 where an overload
Arrayist.Sort(Delegate d) existed? Now Iam using Beta 2 and cannot find it
anymore.
I think that delegates are a very good alternative instead of using
IComparable and stuff. Why do I have to create a class everytime if I ... more >>
Draw an Image on my Form
Posted by DraguVaso at 7/28/2005 4:27:59 PM
Hi,
I have an inherited DataGrid, that does lots of extra stuff. For exemple
drawing a backgroundimage in every cell. The problem is that it's taking too
much time (using gdi+), so I want to do it using DirectX. I downloaded
already the DSK etc, but I can't find how I need to draw an image on ... more >>
folder permissions
Posted by Bill H at 7/28/2005 1:12:02 PM
Using Asp.Net/VB.Net on a Win2003 server
I need to determine if a Windows user has access to a folder on a local
drive.
One option is to impersonate, but I've read that impersonating is not
scalable via web application.
The scenario is this...
I'm trying to replicate FTP functionality ... more >>
Storing and then retrieving ValueMember info from a list or combo box
Posted by travlintom NO[at]SPAM yahoo.com at 7/28/2005 1:06:36 PM
Dim intCurID As Integer *** outside of code and available to all
***
Dim strConnectionString As String = _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\Databases\ClientAppDB.mdb;"
Dim objConnection As New OleDbConnection(strConnectionString)
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Client Script in a Web User Control
Posted by sperotti at 7/28/2005 11:49:02 AM
I have an asp.net web page with a user control within it. I need to run some
javascript when a button, that is on the user control, is pressed. The
javascript does not run if the script is on the parent page or within the
user control. Is this possible with VB.NET 2003? How can I do it?
... more >>
Help with custom dialog
Posted by AMDRIT at 7/28/2005 11:37:02 AM
'System.Runtime.InteropServices.SEHException' occurred in
system.windows.forms.dll is generated when I use "My Custom Dialog". Any
ideas what I could be doing wrong?
Basically, I wanted to create a dialog like Messagebox. I created a class
with a public shared function that returns a dialo... more >>
Int32.Parse calling Thread.Abort?
Posted by Alan Baljeu at 7/28/2005 10:34:59 AM
My code calls int.Parse(text), which throws a System.Format exception. This is fine
because text is all letters, and I explicitly catch the exception. However, my program
never receives the System.Format exception. Instead, I get this in the output, and I
receive a ThreadAbortException:
A fir... more >>
in C# how do i get to total number of kilobytes of memroy total and available for the current machine?
Posted by Daniel at 7/28/2005 10:29:12 AM
in C# how do i get to total number of kilobytes of memroy total and
available for the current machine?
... more >>
Calling an mfc dll from .NET
Posted by Moto47 at 7/28/2005 10:19:04 AM
What steps need to be taken when calling an mfc dll from .NET application? I
am getting an ASSERT error from the dll on afxCurrentResourceHandle. Do I
need to define anything specific in my .NET application to get this to work... more >>
display an image with BitBlt (in Paint-method)
Posted by DraguVaso at 7/28/2005 10:13:49 AM
Hi,
In the override of the Paint-method of a DataGridTextBoxColumn I want to
show an image with BitBlt, to see what I can gain there on performance.
The problem is: It doesn't show me the image in the DataGrid-Cell's, but a
black background...
Does anybody has any idea what I am doing wrong... more >>
error 1053 starting custom windows service
Posted by mtc at 7/28/2005 9:35:03 AM
I'm able to install and run a service I built on two machines - the one I
built it on and another that has visual studio installed. I've installed it
without problems on 3 other machines that don't have visual studio, but when
I try to start the service it immediately fails with error 1053: T... more >>
Parser error in global.asax
Posted by .Net Sports at 7/28/2005 9:30:05 AM
I have had to move my files to another machine, and re-install
visualstudio.net2003 and re-integrate my project into the IDE.
When trying to run/f5 debug , I'm getting a Could Not Load type
myproject.global on line one in my global.asax.cs :
Line 1: <%@ Application Codebehind="Global.asax.cs... more >>
How do i do javascript with ASP.NET?
Posted by baylor at 7/28/2005 8:29:05 AM
i have an ASP.NET application that displays confirmation prompts using
javascript. The text of these messages comes from a string resource file. The
script is attached to the button. Code is similar to this:
btn_resetPassword.Attributes.Add("OnClick",
"javascript:return dConfirm('" + co... more >>
Trying to hide a user control
Posted by Geoff Pennington at 7/28/2005 8:26:22 AM
We use a user control, SCMMenu.ascx, as our menu at the top of our web
pages. Under some circumstances we need to hide the menu.
At the top of the (.aspx) page we register the control with:
<%@ Register TagPrefix="eSCM" TagName="ctrlSCMMenu"
Src="/eSoftware/Common/SCMMenu.ascx" %>
At the ... more >>
Automated Testing Tools
Posted by Web Developer at 7/28/2005 8:22:02 AM
Can anyone recommend a good automated testing tool that works with .Net? I'd
like to generate scripts to unit test my applications, and have the ability
to regression test.
Thank you!... more >>
Global Parameters?
Posted by Steve at 7/28/2005 5:27:08 AM
Visual Studio 2003 / C#
My application has 1 main form. On this form is a treeview object down the
left hand edge and a status bar along the bottom. That is all. The tree
view acts as my menu controller, and when the users click an item, I generate
instances of various UserControls I hav... more >>
|