Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

pri_skit

@pri_skit
About
Posts
32
Topics
16
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Creating Bitmap Error
    P pri_skit

    hii, I am getting "Error Creating bitmap!" in EVC++ 4.0 on Window CE 5.0. I don't where this error came from. I am using CreateCompatibleBitmap and BitBlt for drawing the screen. I have checked all Error codes , but no luck. Description of Error : It’s the SNAP window with the “error creating bitmap” message. “Snap” is in the blue portion “Error Creating Bitmap” in gray portion Thanks and regards,

    priyank

    C / C++ / MFC graphics c++ help

  • how to download makeCF utility
    P pri_skit

    Yes , i tried but i am getting non relevant results.

    priyank

    Mobile adobe tools help tutorial workspace

  • how to download makeCF utility
    P pri_skit

    Hi, I want to write System files in window CE Compact flash card so that it boots from CF flash. The files are 1.Configuration file: bootcepc.cnf 2. Boot logo .pcx file: bootcepc.pcx 3. Kernel Image file (nk.bin) To write i have just copied file's by copy and paste in Flash but it doesn't work and i am getting error like "Boot failure" . I heard about a utility named (makeCFUtility) used to write in Flash. But i don't know how to download this utility. Is there is any other way to write system files in Flash card. I am using Advantech single board (PCM-3370 F) with 128 MB RAM . The OS used is Window CE 5.0.

    priyank

    Mobile adobe tools help tutorial workspace

  • How know revice type
    P pri_skit

    In RequestDeviceNotifications to detect USB Device, i am using FSD_MOUNT_GUID option to get two drives present on system namely: 1. \Disk (COMPACT FLASH TRAY) 2. \USBDisk(USB Device) both of them are removable drives i.e one is FLASH TRAY which contain (.bin files) for Window CE and other is USB Device. Is there is any way to know there device type? My aim is to store only USB Drive names in list. Note: both of them are removable. i am using Window CE 5.0 thanks,

    priyank

    C / C++ / MFC adobe question

  • Reading register key values
    P pri_skit

    How to detect USB Drive & its letter by reading register key values in EVC++ 4.0? The location of register of local mount point is: The HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices Thanks

    priyank

    C / C++ / MFC c++ tutorial question

  • Detect Current Drive name in EVC++ 4.0 on window CE 5.0
    P pri_skit

    Q1.I'm trying to write an MFC program in EVC++ 4.0 on window CE 5.0 that lists the disk drives on the system (C:, D:, and so on). I also need to know if the drive is a hard disk or a USB. Is there a class to get this information? Q2. What are Windows Volume Management Functions in EVC++ 4.0 on window CE 5.0?

    priyank

    C / C++ / MFC c++ question

  • File read problem
    P pri_skit

    I have written a CString Object into Text file by using : f.Write (&FileName,FileName.GetLength());//FileName is CString Object Now I want to Read CString object back How this could be done?I am using code : LPTSTR p = CurrentLanguageName.GetBuffer(11); void *g=(void *)p; f.Read (g,CurrentLanguageFileLen); CurrentLanguageName.ReleaseBuffer( ); //But this method don't work. Regards,

    priyank

    C / C++ / MFC help question

  • Timer start problem
    P pri_skit

    How to start timer on screen which is drawn continously?

    priyank

    C / C++ / MFC graphics help question

  • Timer start problem
    P pri_skit

    I am drawing a screen which requires refrehing,so Invalidate() function is called continously.Now I want to start a timer when screen is drawn first time.In the timer i want to call another function which draws another screen after some time.How this could be done? I have tried to start timer but it starts only after when i Maximize 0r minimize a screen. Regards,

    priyank

    C / C++ / MFC graphics help question

  • Font size problem
    P pri_skit

    I am using CListBox(MFC Class) which have some strings added to it.I want to display different string in different font.Is this possible?How this could be done? regards,

    priyank

    C / C++ / MFC c++ help question

  • Read MS-Excel file through EVC++ 4.0
    P pri_skit

    But I m not sure this could work in EVc++ 4.0.

    priyank

    C / C++ / MFC c++ question

  • Read MS-Excel file through EVC++ 4.0
    P pri_skit

    Yes in its Native format.I have saved 2 strings in excel i.e in row=0,col=0.I want to read that.how this could be done?

    priyank

    C / C++ / MFC c++ question

  • Read MS-Excel file through EVC++ 4.0
    P pri_skit

    I want to read MS-Excel file using EVC++ 4.0.The file contain strings.How this could be done?Thanks in Advance. Regards,

    priyank

    C / C++ / MFC c++ question

  • Printing Problem
    P pri_skit

    I am using MM_TEXT mode during Ondraw(CDC *pDC) function & displayed a rectangle but during printing i am using MM_TWIPS mapmode now i want to use CoOrdinate used during Ondraw.I tried to convert Co-ordnate into correct pixels. Here is code: // during On draw pDC->MoveTo(p1); pDC->LineTo(p2); pDC->LineTo(p3); pDC->LineTo(p4); pDC->LineTo(p1); // some macro #define CalibPoint(p, HorPix,VerPix) CPoint(CALIBX(p.x,HorPix),CALIBY(p.y,VerPix)) #define CALIBX(point,HPIX) (point * HPIX )/PIXPERINCH #define CALIBY(point,VPIX) (point * VPIX )/PIXPERINCH #define PIXPERINCH 72 int nHorz = pDC->GetDeviceCaps(LOGPIXELSX); int nVert = pDC->GetDeviceCaps(LOGPIXELSY); //during printing p1=CalibPoint(p1, nHorz,nVert);//CalibPoint is Macro p2=CalibPoint(p2, nHorz,nVert); p3=CalibPoint(p3, nHorz,nVert); p4=CalibPoint(p4, nHorz,nVert); pDC->MoveTo(p1.x,-p1.y); pDC->LineTo(p2.x,-p2.y); pDC->LineTo(p3.x,-p3.y); pDC->LineTo(p4.x,-p4.y); pDC->LineTo(p1.x,-p1.y); Thanks & regards priyank Dwivedi

    priyank

    C / C++ / MFC help

  • Printing Problem
    P pri_skit

    Thank u for u help.I am facing with another problem in same thing.While printing font changes for different printer.I have created font using: int nHorz = pDC->GetDeviceCaps(LOGPIXELSX); CFont fnTimes; int FontPrinterWeldData = (EUROPEANWELDDATAFONT*nHorz)/PIXPERINCH;//..where //PIXPERINCH=150, //EUROPEANWELDDATAFONT=18 fnTimes.CreateFont(FontPrinterWeldData , 0, 0, 0, FW_NORMAL ,FALSE, FALSE, FALSE, ANSI_CHARSET, OUT_DEFAULT_PRECIS,CLIP_DEFAULT_PRECIS,DEFAULT_QUALITY, FF_DONTCARE, _T("Courier New")); I can't understand why font change for printer. Thanks & regards,

    priyank

    C / C++ / MFC help tutorial

  • Printing Problem
    P pri_skit

    I am doing printing on two types of printer e.g EPSON StYLUS C82 & HP Deskjet 5700.When printing using HP,i have displayed two Text one after other with some coordinates passed to it.Text are displayed one after other with some GAP.But when i print using EPSON ,Text are displayed one after other with Larger GAP.How this problem could be soved.Example code of this is: pDC->ExtTextOut(XCoOrdinate,YCoOrdinate+LINEGAP_Y,ETO_OPAQUE ,NULL, "Date",NULL); XCoOrdinate+=ParamHeadingRectWidthPrint; pDC->ExtTextOut(XCoOrdinate,YCoOrdinate,ETO_OPAQUE ,NULL, "Time",NULL); Thanks & regards,

    priyank

    C / C++ / MFC help tutorial

  • Compile EVC++ 4.0 from command line [modified]
    P pri_skit

    I am new to eVC, I want to know how can I compile eVC++ project using NMAKE or equivalent for eVC++ project.How can i write a batch file to do so? thanks in advance. -- modified at 3:50 Friday 4th May, 2007

    priyank

    C / C++ / MFC question c++

  • Including header file in project??
    P pri_skit

    Excel contains strings in 9 language.This (.exe) project(Win32) read excel & convert to file(containg CString str[]="Lang1",.,.,.,"lang7") format string.

    priyank

    C / C++ / MFC c++ help question workspace

  • Including header file in project??
    P pri_skit

    When i run Console Win 32 App,then it reads excel & converts it into file(which may be of any type .txt,.c,.cpp,.h).This file needs to be used in another project Embedded VC++ 4.0(MFC Supported).How this could be done? This shold happen: When i compile Embedded VC++ 4.0(MFC Supported) Application,then it automatically runs another .exe (Win 32 Cosole App) first,which in turn generate a file & this file needs to be used in project. Is there any more clarification required????

    priyank

    C / C++ / MFC c++ help question workspace

  • Including header file in project??
    P pri_skit

    I have application build in Embeded VC++ 4.0 project,now i want to include (.h) file in project which is produced from another (.exe) built in Win32(App) Console.I have added header file in project workspace.The problem is (.h) file is created after compiling the project.I want to include (.h) file before compilation of code because it is being used in project.Is there any way to do thing? I have tried by writing command in Custom build step: call "L:\11rvtsapril\ExcelCvt.exe"//(ExcelCvt.exe is Wn32 Console App) Is there any way to change Comipler option so that Cosole App(.exe) runs first,after that compilation of Application take place.Thanks in advance.

    priyank

    C / C++ / MFC c++ help question workspace
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups