473,544 Members | 439 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

.NET Framework Forum

Microsoft . NET Framework - Ask questions about Windows Communication Foundation(WCF), Windows Workflow Foundation(WF), applications (web, server, smart clients, console and database).
1
2,259
thread by: Developer | last post Jul 19 '05 by: Scott M.
We have a need to track our customers opening the HTML emails that we send out to them. As soon as the customer opens the HTML email that we send out we need to make an entry in the database with the email viewd date. What are the options I have? tia
0
1,232
thread by: John McD | last post Jul 19 '05 by: John McD
If I compile a windows application with VS.NET, will it only work on a machine with the .NET framework installed? Is there a way to fully compile it to machine code so it will work on any windows98 machine? Thanks, John.
0
1,711
thread by: Mike Smith | last post Jul 19 '05 by: Mike Smith
Is it possible to have an expression set on an existing column in a datatable i.e DataSet11.Tables("Orders").Columns("Amount").Expression = "Price * Quantity" and then have this column updated into the database. Yup i know its redundant info, but im wondering how its done as .Net generates an error when an update is performed. (Error Msg :...
3
1,670
thread by: Mr. B | last post Jul 19 '05 by: Mr. B
With Deft Fingers, "Jan Driesen" <jan.driesen@tiscali.be> wrote: I've an app with a bunch of Control Array of Buttons. I'll use code from my App using 5 buttons as my example: 1) I've Dim them as a button in my Form Dim btnUsrMonday() As Button ' User Monday Buttons
0
2,117
thread by: Mike Smith | last post Jul 19 '05 by: Mike Smith
Can the DEL key be trapped on the datagrid (windows forms version) ? It doesnt seem to respond to the keypress and keydown events of the grid.
2
1,908
thread by: Ian Smith | last post Jul 19 '05 by: Mike Smith
Can Visual Studio.NET 2002 Enterprise Developer do everything that Vis.Studio 6.0 does? i.e. can I uninstall 6.0 to make room for .Net? Your advice will be much appreciated. Regards, Ian
2
1,424
thread by: Sam | last post Jul 19 '05 by: Robbie Harris
Hi everyone, I create a windows service and its installer in VS Net. but when I try to install it on command line, "installutil myservice.exe" ,I kept receiving the error message: System.ComponentModel.Win32Exception: The account name is invalid or does not exist, or the password is invalid for the account name specified
1
2,349
thread by: Billy Jacobs | last post Jul 19 '05 by: Billy Jacobs
I have a datagrid control in a web application in which I have both paging and sorting enabled. The sorting works only on the current page. If I am on page 1 and sort by any field, the page displays the records sorted properly. If I go to the next page the records on that page are not sorted. The datagrid is bound to a dataview. I set the...
1
1,706
thread by: Simon LU | last post Jul 19 '05 by: Kumar Gaurav Khanna [.NET MVP]
I have a COM component in ATL, one of its method's IDL define is as the following: HRESULT SetValue(long a, long* b,string* c, VARIANT* d, ConfirmVal e); here ConfirmVal is a Enum define by IDL. The VC++ client has no problem to call it by using smart pointer as the followings: long a=0; long b=-1;
0
1,220
thread by: tariq | last post Jul 19 '05 by: tariq
i want to have to solve a problem of that how a web design can be converted to the web programme ????????????
1
1,331
thread by: Lee Rautenberg | last post Jul 19 '05 by: tariq
For some reason, every time I try to do a search, such as putting the word "form" in the message body line, the next page I see is the blank search form again. I never see any results. What is going on?
5
4,559
thread by: Sabrina | last post Jul 19 '05 by: Bo Persson
Can someone help? I have been trying to get the hash_map in C++ for .NET to work with strings and const char*. I am using the const char* as the key and a pointer to another class as the data type. I would like to be able to assign unique names to each key and allow the user to be able to search the hash_map to find that key and in so doing,...
1
1,752
thread by: RAJ | last post Jul 19 '05 by: Kishore S
Has anyone noticed that the TopMost property doesn't work when the form contains a DataGrid? Is there a work around RAJ
1
1,721
thread by: Serge Bollaerts | last post Jul 19 '05 by: Dave
Hello everybody, I'm creating (Hum... trying to:) a small proxy server based on a sample I found on the net. Could someone explain me the difference between clientThread1 and clientThread2??? There something mystic I cannot realize... Dim clientRequest As New ProxyClient(_svrSocket.AcceptSocket()) Dim clientThread1 As New...
0
1,548
thread by: unclehughie | last post Jul 19 '05 by: unclehughie
I have a number of working ASP pages that use HTML forms to obtain and display data from a remote source. A current example would be the stock quote interactive component in FrontPage 2003 that queries msn money for a current stock price and displays it in the browser. I know I can run ASP pages side by side with aspx pages, but my problem is...
1
3,060
thread by: Wayne Wengert | last post Jul 19 '05 by: Jeff Levinson [mcsd]
I am trying to take the item the user selected in a list box and put it in a string variable. When I execute the code RegionalName = lstRegional.Items(lstRegional.SelectedIndex) I get this error: Additional information: Cast from type 'DataRowView' to type 'String' is not valid. The listbox is bound to a dataset so I suspect that is...
1
1,541
thread by: David Sworder | last post Jul 19 '05 by: Jeff Levinson [mcsd]
Hi, Can anyone recommend a 3rd party .NET component that would allow me to determine the approximate number of miles between two zip codes? At runtime, I will know the user's zip code. I will also have access to an array of MyObjects where MyObject is defined as: internal class MyObject{ ...
1
4,894
thread by: David Yu | last post Jul 19 '05 by: Jeff Levinson [mcsd]
Hi, anybody knows how to use debug window to start console application program with input arguments. In DOS window I can start my application program likes MQGET QTT1 DAVID.LOCAL which input Queue Manager and local queue. But If I want to run in debug mode how do I enter that two
0
2,035
thread by: Andreas Suurkuusk | last post Jul 19 '05 by: Andreas Suurkuusk
Hi, I just noticed your post in the "C# memory problem: no end for our problem?" thread. In the post you implied that I do not how the garbage collector works and that I mislead people. Since the thread is over a month old, I decided to start a new one with my response. Please see my comments inline.
1
3,746
thread by: Clark B | last post Jul 19 '05 by: KC
How can I check which version of .NET framework user is running? Regards Clarkie
1
1,727
thread by: | last post Jul 19 '05 by: Dick Grier
I'm having trouble implementing one of my standard timer strategies. Because the code for a timer might take an unspecified amount of time, in VB 6 I disabled the timer until the timer event code completed. Now in .NET I'm seeing the timer fire twice in succession, even though the timer interval is long (1-4 seconds). A simple project...
0
1,175
thread by: juavizga | last post Jul 19 '05 by: juavizga
my code is the next: <%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %> <%@ Page Language="vb" AutoEventWireup="false" Codebehind="MobileWebForm1.aspx.vb" Inherits="pruebas.MobileWebForm1" %> <HEAD> <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR"> <meta...
0
1,544
thread by: Fu Chen | last post Jul 19 '05 by: Fu Chen
Hi pals! One of my client have a old UNIX application (but very important), it use telnet to operate. I am designing a web interface to this client. one of the work is building the UNIX application in a better interface. I try not to change any code in the old system for I don't want to take response for any trouble in their core system. Is...
0
1,600
thread by: Brian Daoust | last post Jul 19 '05 by: Brian Daoust
Hello everyone! I just installed Visual Studio .NET (2002) and just getting to learn it. I added a data form using the wizard - and it was working fine. Now, when I run it with F5 - I am getting this:
0
512
thread by: SuicidalLabRat | last post Jul 19 '05 by: SuicidalLabRat
Is it Possable to build a chroot() like function using the abID and ITEMIDLIST structures, wherein the context in which a process runs ( this includes boundries to inter process communication )can't be reversed. Once you have executed one of the system calls (chroot or some new new_sys_context {namespace} ),the process can't get back from...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.