Hi, I am new in web services programming. I followed a sample. It seems worked on my local computer (with IIS). But I don't know how to put the program online (internet)? Which file should I use? Any settings? (the sample book didn't say anything.) The Visual Studio 2003 seems did some setting on the local machine. One more question is "How to do debug?" I built a test client. But how can I know if the web service (server) followed the correct steps when the client asked a data process? thanks a lot, larry
H
haipengl
@haipengl
Posts
-
web service: deployment and debug question -
metafile to bitmapthanks for you both. I am not good in graphic design. I have some code here. I am trying to save Meta to BMP. But I only get black area. please help. larry if ( OpenClipboard() ) { HENHMETAFILE handle = (HENHMETAFILE)GetClipboardData(CF_ENHMETAFILE); CClientDC dc(this); CRect client(0,0,500,500); CBitmap * bmf = new CBitmap(); CDC mdc; mdc.CreateCompatibleDC(&dc); bmf->CreateCompatibleBitmap(&dc,client.Width(),client.Height()); PlayEnhMetaFile(dc, handle, &client); dc.SelectObject(bmf); SetClipboardData(CF_BITMAP,bmf->m_hObject); CloseClipboard(); }
-
metafile to bitmapDoes anyone know how to convert metafile to bitmap?