Click here to Skip to main content
15,910,787 members
Home / Discussions / C#
   

C#

 
GeneralRe: Downcasting VS Interfaces - Performance perceptive Pin
N a v a n e e t h22-Feb-08 3:16
N a v a n e e t h22-Feb-08 3:16 
GeneralDatagridview, checkbox and text in same cell Pin
akkram21-Feb-08 22:27
akkram21-Feb-08 22:27 
GeneralRe: Datagridview, checkbox and text in same cell Pin
Ravenet22-Feb-08 3:17
Ravenet22-Feb-08 3:17 
GeneralApp prevents windows to shutdown Pin
GermanDM21-Feb-08 22:00
GermanDM21-Feb-08 22:00 
GeneralRe: App prevents windows to shutdown Pin
Xmen Real 22-Feb-08 1:16
professional Xmen Real 22-Feb-08 1:16 
GeneralRe: App prevents windows to shutdown Pin
GermanDM22-Feb-08 1:22
GermanDM22-Feb-08 1:22 
GeneralRe: App prevents windows to shutdown Pin
Xmen Real 22-Feb-08 1:27
professional Xmen Real 22-Feb-08 1:27 
GeneralRe: App prevents windows to shutdown Pin
GermanDM22-Feb-08 1:31
GermanDM22-Feb-08 1:31 
GeneralPropertyGrid Pin
stancrm21-Feb-08 21:12
stancrm21-Feb-08 21:12 
GeneralRe: PropertyGrid Pin
phannon8621-Feb-08 21:52
professionalphannon8621-Feb-08 21:52 
GeneralRe: PropertyGrid Pin
stancrm21-Feb-08 22:05
stancrm21-Feb-08 22:05 
GeneralRe: PropertyGrid Pin
phannon8621-Feb-08 22:19
professionalphannon8621-Feb-08 22:19 
GeneralRe: PropertyGrid Pin
Pete O'Hanlon21-Feb-08 22:51
mvePete O'Hanlon21-Feb-08 22:51 
GeneralRe: PropertyGrid Pin
visualhint27-Feb-08 15:05
visualhint27-Feb-08 15:05 
GeneralListView item Pin
Maddie from Dartford21-Feb-08 20:57
Maddie from Dartford21-Feb-08 20:57 
GeneralRe: ListView item Pin
phannon8621-Feb-08 22:10
professionalphannon8621-Feb-08 22:10 
QuestionHow to save a text in a image format Pin
D i x y21-Feb-08 20:56
D i x y21-Feb-08 20:56 
AnswerRe: How to save a text in a image format Pin
Guffa21-Feb-08 21:11
Guffa21-Feb-08 21:11 
GeneralRe: How to save a text in a image format Pin
D i x y21-Feb-08 21:18
D i x y21-Feb-08 21:18 
GeneralRe: How to save a text in a image format Pin
Guffa21-Feb-08 22:08
Guffa21-Feb-08 22:08 
AnswerRe: How to save a text in a image format Pin
MoustafaS21-Feb-08 21:14
MoustafaS21-Feb-08 21:14 
QuestionError: Update application block (UAB) :The requested URL does not exist on the server. Pin
Robert Wang198321-Feb-08 20:53
Robert Wang198321-Feb-08 20:53 
GeneralRe: Error: Update application block (UAB) :The requested URL does not exist on the server. Pin
Robert Wang198321-Feb-08 21:43
Robert Wang198321-Feb-08 21:43 
GeneralRe: Error: Update application block (UAB) :The requested URL does not exist on the server. Pin
Mike Dimmick22-Feb-08 1:58
Mike Dimmick22-Feb-08 1:58 
The error code under BitsDownloadErrorException code is 0x80190194 in hex. Windows error codes are defined in WinError.h (which you can find under vc\PlatformSDK\include under Visual Studio's install folder, if you installed the C++ tools). Error codes are grouped into 'facilities' to allow codes to be allocated independently. The 'facility' part is the second byte of four, here it's 0x19 = 25 decimal. Facility number 25, according to WinError.h is FACILITY_HTTP, so it's an error defined by the WinHttp APIs.

I can't find where this is actually used, but the last 16 bits are always the specific error. 0x194 hex = 404 decimal, which is of course the 'not found' HTTP status code.

Assuming that you've copied the files to the right location, I'd check that your web server is configured to send that type of file. IIS 6.0 only sends files that it knows the MIME type for, in contrast to earlier versions. The Updater Application Block 2.0 FAQ mentions this and how to fix the issue at http://msdn2.microsoft.com/en-us/library/ms978569.aspx#updaterfaq_deploytopic5[^].


DoEvents: Generating unexpected recursion since 1991

GeneralRe: Error: Update application block (UAB) :The requested URL does not exist on the server. Pin
Robert Wang198324-Feb-08 22:58
Robert Wang198324-Feb-08 22:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.