Click here to Skip to main content
15,903,030 members
Home / Discussions / C#
   

C#

 
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 
QuestionWhere to find an OCR API? Pin
nirfun21-Feb-08 20:36
nirfun21-Feb-08 20:36 
AnswerRe: Where to find an OCR API? Pin
Christian Graus21-Feb-08 20:40
protectorChristian Graus21-Feb-08 20:40 
GeneralRe: Where to find an OCR API? Pin
nirfun21-Feb-08 21:11
nirfun21-Feb-08 21:11 
GeneralRe: Where to find an OCR API? Pin
Christian Graus21-Feb-08 23:23
protectorChristian Graus21-Feb-08 23:23 
AnswerRe: Where to find an OCR API? Pin
DaveyM6921-Feb-08 23:45
professionalDaveyM6921-Feb-08 23:45 
GeneralDatagridView Checkbox Pin
Xerox421-Feb-08 19:35
professionalXerox421-Feb-08 19:35 
QuestionC# -> C++ call issue Pin
Jais Joy21-Feb-08 19:20
Jais Joy21-Feb-08 19:20 
GeneralRe: C# -> C++ call issue Pin
Christian Graus21-Feb-08 19:34
protectorChristian Graus21-Feb-08 19:34 
Generalresize control by code Pin
jason_mf21-Feb-08 19:15
jason_mf21-Feb-08 19:15 
GeneralRe: resize control by code Pin
Christian Graus21-Feb-08 19:19
protectorChristian Graus21-Feb-08 19:19 
GeneralRe: resize control by code Pin
jason_mf21-Feb-08 19:31
jason_mf21-Feb-08 19:31 
GeneralRe: resize control by code Pin
Christian Graus21-Feb-08 19:41
protectorChristian Graus21-Feb-08 19:41 
GeneralRe: resize control by code Pin
jason_mf21-Feb-08 20:00
jason_mf21-Feb-08 20:00 
GeneralRe: resize control by code Pin
jason_mf21-Feb-08 20:12
jason_mf21-Feb-08 20:12 
GeneralRe: resize control by code Pin
Christian Graus21-Feb-08 20:46
protectorChristian Graus21-Feb-08 20:46 
GeneralRe: resize control by code Pin
darkelv21-Feb-08 20:57
darkelv21-Feb-08 20:57 

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.