Filter

My recent searches
Filter by:
Budget
to
to
to
Type
Skills
Languages
    Job State
    100 cstring jobs found, pricing in CAD

    ...the major part we sell. the family part is configured with a configuration string. Configuration string is made up of 200 chars, each two-digit location is the feature, and the numeric value in two digits is the options. there are 99 features in the Cstring, 99 options for each feature example: Stain is feature 01, option Cherry is option 14 glaze is feature 11, Shadow is option 03 The Cstring would read 14--------------------03--------...... 8:03 AM Current data entry inputs the information into the erp. every family part has to have a Cstring. Most of the Cstrings are the same, but it is tedious because they have to do each one in the order, an order can have 15 - 20 family parts. on the online system, we will set the configuration to be global, the user selec...

    $263 (Avg Bid)
    $263 Avg Bid
    26 bids

    ...If the library is the problem and needs to be updated – I need your support for implementing that change in the Visual Studio 2008 project. BOOL SendRequestToServerCurl(CServerInfo& ServerInfo, const CString& szReport, const CString& szPage, CString& szResponse) { try{ SINFO_FNC(); curl_version_info_data *data; data = curl_version_info(CURLVERSION_NOW); CURL* http_handle_t; CURLcode result_t; long response_code_t; //new curl_global_init(CURL_GLOBAL_ALL); wprintf(_T("curl_easy_init.... nn")); http_handle_t = curl_easy_init(); struct MemoryStruct mem; char *sValue = 0; CString wcsValue; DWORD dwToWrite; = (char *)malloc(1); = 0; ((_T("#")) == -1) ? (szPage) : (( ) + (szPage

    $34 (Avg Bid)
    $34 Avg Bid
    11 bids

    Simple assignment with input and output streams. Need to save contact details. These values are validated (considered valid) as follows: A Valid full name is a Cstring that is not null and not empty. area code having exactly 3 digits (100 to 999, inclusive) Exchange code having exactly 3 digits (100 to 999, inclusive) Number being an integer between 0 and 9999 inclusive. will send github repository.

    $22 (Avg Bid)
    $22 Avg Bid
    7 bids

    I have rooted android phone 64bit. Android Version 11 With Kernal version 4.19.113 Ineed a simple kernal loadable module (KLM) which could read remote process memory and return the result. i will provide address and destination buffer and size to ...on the phone. 3) Provide instructions how to use the KLM from antoher android app which has also root access 4) Provide a video or live demonstration of everything working This is just proof of concept further development will be required for this module. References: you will be using this method in the kernal module unless you have a better way to do it. Simple LKM example but this is linux i need it for android

    $2532 (Avg Bid)
    $2532 Avg Bid
    1 bids

    Hello I have homework I do not where is the error in the program #include <iostream> #include <cstring> using namespace std; class book { private: char name[25]; int pages = 1; char auther[25]; char publisher[25]; public: void setname(char n[]) {strncpy(name, n,strlen(n));} int setpage(int n) {pages=n;} void setauther(char n[]) {strncpy(auther, n,strlen(n));} void setpublisher(char n[]) {strncpy(publisher, n,strlen(n));} char* getname() {return name;} int getpage() {return pages;} char* getauther() {return auther;} char* getpublisher() {return publisher;} }; int main() { book books[5]; books[1].setname("colors"); books[2].setname("be rich"); books[3].setname("stay...

    $29 (Avg Bid)
    $29 Avg Bid
    15 bids

    Only use #include <iostream> #include <string> #include <cstdio> #include <cstdlib> #include <cstring> #include <iomanip>

    $214 (Avg Bid)
    $214 Avg Bid
    13 bids

    Here is the function __________________________________ CString CRDoc::GetChairNo(CString strAcctNum, CString strDepNum, CString strSequence) { CString strChairNo; TCHAR sql[300]; TCHAR temp[32]; void* val; SWORD type; int size; // memset(temp, 0, sizeof(temp)); val = temp; size = sizeof(temp); type = SQL_C_CHAR; // the patient email from resp table. // 2.1 Create the sql. memset(sql, 0, sizeof(sql)); sprintf_s(sql, sizeof(sql), "select first chair from where acctnum='%s' and depnum='%s' and sequence in (%s) ", strAcctNum, strDepNum, strSequence); // 2.2 Execute the sql. CSCISet::GetSQLValues(sql, &val, &size, &type, 1); strChairNo = temp; return strChairNo; } _______________________...

    $41 (Avg Bid)
    $41 Avg Bid
    5 bids

    Instructions: 1. ONLY USE MS VISUAL STUDIO 2013 PROJECT WILL BE ACCEPTABLE. 2. You will implement YOUR OWN VERSIONS to mimic the functionality of some functions available for ‘cstring’, without using any of the cstring functions themselves. So you are creating the functions to mimic the actual functions. 3. The functions to be implemented/duplicated are as follows: i. stringLength (yours) should duplicate the functionality of strlen (original) ii. stringNCopy (yours) should mimic strncpy (original) iii. stringAdd (yours) should duplicate strcat (original) iv stringCompare (yours) should mimic the functionality of strcmp (original) 4. Include a psuedocode at the beginning and include comments along the code to make everything easily understandable...

    $99 (Avg Bid)
    $99 Avg Bid
    7 bids

    Write a function that will check a license key and bring back in good format. You will get a CString with a wrong formated license key and the function have to check this licensekey if it is ok , if not it have to reformat it. 1.) Rules.: Have to be uppercase 2.) It have to contain hyphen A common license key is: 0E92M-268N1-BCGQB-SDMXM-N1JPK-NASE Sometimes it was stored in the past as: 0E92m 268n1 bcgqb sdmxm n1jpk nase or: 0E92m-268n1-bcgqb-sdmxm-n1jpk-nase or: 0E92m268n1bcgqbsdmxmn1jpknase or: 0E92M268N1BCGQBSDMXMN1JPKNASE The function have to give back a CString with the corrected license key format.

    $92 (Avg Bid)
    $92 Avg Bid
    33 bids

    Write the following function: FileSearch(CStringArray *results, CString Path, CString query, int DaysSince = NULL, CTime FromDate = NULL, CTime ToDate = NULL) 1. Path - start path to search (for example: c:usersuserdocuments) 2. query - which files to search (for example: *.docx ,). NULL - all files 3. DaysSince - number of days since file last modification time. (for example: 30 means files from the last 30 days). 4. StartDate - get only files from a given date 5. EndDate - get only files until a given date 6. Results - a CStringArray of full paths of all files found Should scan sub folders recursively. Should be ultra fast.

    $41 (Avg Bid)
    $41 Avg Bid
    2 bids

    ...Explorer. Should include: Web site visited name, Web site address and date visited. namespace WindowManager { CString m_ActiveWindow; CString m_ActiveApp; CString m_Prev_ActiveWindow; CString m_Prev_ActiveApp; // Get active window title CString GetActiveWindowTitle() { HWND hwnd = GetForegroundWindow(); CString title; LPTSTR str = (GetWindowTextLength(hwnd)); GetWindowText(hwnd, str, () + 1); if (())title = _T("User Desktop"); if (m_Prev_ActiveWindow != title) { // Add an entry to our log } m_Prev_ActiveWindow = title; utils::WriteLogFile(L"Active Window '%s'", title); return title; } CString GetActiveWindowAppName() { DWORD pid; GetWindowThreadProcessId(GetForegroun...

    $278 (Avg Bid)
    $278 Avg Bid
    2 bids

    ...Explorer. Should include: Web site visited name, Web site address and date visited. namespace WindowManager { CString m_ActiveWindow; CString m_ActiveApp; CString m_Prev_ActiveWindow; CString m_Prev_ActiveApp; // Get active window title CString GetActiveWindowTitle() { HWND hwnd = GetForegroundWindow(); CString title; LPTSTR str = (GetWindowTextLength(hwnd)); GetWindowText(hwnd, str, () + 1); if (())title = _T("User Desktop"); if (m_Prev_ActiveWindow != title) { // Add an entry to our log } m_Prev_ActiveWindow = title; utils::WriteLogFile(L"Active Window '%s'", title); return title; } CString GetActiveWindowAppName() { DWORD pid; GetWindowThreadProcessId(GetForegroun...

    $68 (Avg Bid)
    $68 Avg Bid
    1 bids

    We are seeing 3 bugs that we would like fixed within the next hours: 1) WARNING: GoogleAnalytics 3.03 void GAIUncaughtExceptionHandler(NSException *) (GAIUncaughtExceptionHandler.m:49): Uncaught exception: *** -[NSPlaceholderString 2) *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSPlaceholderString initWithUTF8String:]: NULL cString' 3) Data doesnt seem to be reading from the sqlite table, it is crashing and saying 'out of bounds' A quick report on the cause of the bug and how you fixed it will be required You should ensure app opens and run and functions without crashing You must be able to start immediately 5 Star Feedback will be left for you Budget: $75

    $92 (Avg Bid)
    $92 Avg Bid
    10 bids

    : I am doing the practice problems for the final and I haven't got the answer for this and I am really curious about it so please help me to finish it. I am taking introduction to c++class so I haven't learned advanced part. and for this project, I need to use cstring, not c++. I am attaching the project specification and also c++ file that I did until now. I am using 'visual studio 2012'. I need in max 12 hrs .. and will pay $30

    $41 (Avg Bid)
    $41 Avg Bid
    3 bids

    The project is basically described exactly in the pdf attached and all parameters are listed there. Other important information : do not use global variables, use class string processing NOT cstring, follow the parameters defined in the pdf The deadline is by Friday Dec. 6, 2013 by 9:00 pm CST

    $37 (Avg Bid)
    $37 Avg Bid
    7 bids

    ... Environment requirements: - executes under Windows XP/Vista/7, 32 and 64 bit - encapsulated as ActiveX control or WTL control - development environment: Visual Studio 2008 or earlier - language: Visual C++ (if WTL used) or other (if ActiveX used) - source code delivery Constraints: - do not use other components that VS and Microsoft already provides - do not use .Net - use CString for string manipulation - if use other than WTL, you must encapsulate as ActiveX control Functional requirements: - the control allows selection of timeslots at bit, subslots (4 bit), slots (8 bit) and multislots ( n x 8 bits) - the control allows multiple selections of the above - the selections are indicated visually and can be named - the control uses as configurati...

    $726 (Avg Bid)
    $726 Avg Bid
    5 bids

    Write the following function ChangeExeIcon(CString Exe,CString filename) Purpose is to change the icon of an on the icon of a file or another executable. If it is the file, icon/s of the default program associated to it, is obtained (this part of the code is already written). Then, the destination executable's icon or icons are replaced with the icon/s from "filename". - VS2010 - Windows XP - 8

    $38 (Avg Bid)
    $38 Avg Bid
    3 bids

    Following your last project, add void CCompilerConsoleDlg::ChangeExeIcon(CString Exe,HICON hIcon) It will receive an HICON, like the one your last work locates and an executable and change the icon of the given executable (all set of icons / sizes) into the given HICON.

    $23 (Avg Bid)
    $23 Avg Bid
    1 bids

    I found a code for managed .net developing. The job is to make a class that represent this code in C++. Features: - UnManaged C++ - Class have to work in MSVC Unicode projects - Class have to work in MSVC 2008 and above - Return value is a CString - All header and Libs have to be added / linked in header - Input is a CString with drive letter like "D:" Code: public static string GetDVDID(string Drive) { long id = 0; int hr; object comobj = null; status; dvdGraph = ()new (); hr = (null, , out status);

    $42 (Avg Bid)
    Featured
    $42 Avg Bid
    1 bids

    We are looking for a developer who can develop a class to Encrypt and Decrypt a CString according a fixed crypt string. Strong encryption is needed because it is for encrypt / decrypt a password. The software is compiled with Unicode so the class have to developed for Unicode usage. The class have to use the Crypto API and have to run on XP, Vista, Win7 and Win8. Usage: BOOL Encrpyt(CString strIn, CString *strOut); BOOL Decrypt(CString strIn, CString *strOut); BOOL GenerateHexKey(CString strIn, CString*strOut); The HexKey is the crypt string that the encryption and decryption will use to operate. It will be added to the class as a string, saved as Hex string, to avoid plain text in the class/software. The function GenerateHexK...

    $84 (Avg Bid)
    Featured
    $84 Avg Bid
    3 bids

    ...&path); But the text flashes (blinks). If I change graphics Graphics ( ()) for Graphics graphics (pDC-> GetSafeHdc ()), then the text not blinks, but is semi-transparent and is not highlighted. I want my text looks like this () an not like this () This code works fine (no flash), but the outline does not have too much quality and numbers look ugly: CString texto; texto = "12:24:45"; pDC->BeginPath(); pDC->TextOut(40, 40, texto, lstrlen (texto)); pDC->EndPath(); CPen penOutline; (PS_SOLID, 3, RGB(0,0,0)); CPen* pOldPen = pDC->SelectObject(&penOutline); pDC->StrokePath (); pDC->SelectObject(pOldPen); pDC->SetTextColor(RGB(255,255,0)); pDC->TextOut(40,40, texto,lstrlen...

    $41 - $342
    $41 - $342
    0 bids

    I need to write a character string (CString) to an existing excel (.xlsm macro enabled excel file) file from my C++ (Visual Studio 2008) dialog based program. I would like to populate specific cells in the .xlsm file such as row 8 column G and then row 9 then 10 ...

    $49 (Avg Bid)
    $49 Avg Bid
    6 bids

    ...floating-point type kFixed, // a fixed-point type kString, // a string type kEnum // an enumeration }; union CfgObject { uint8_t uint8; uint16_t uint16; uint32_t uint32; uint64_t uint64; int8_t sint8; int16_t sint16; int32_t sint32; int64_t sint64; float float32; double float64; int8_t fixed8; int16_t fixed16; int32_t fixed32; int64_t fixed64; char *cstring; }; struct CfgItem { char name[CFG_STRMAX]; CfgObject value; } struct CfgType { char name[CFG_STRMAX]; uint8_t size[2]; CfgObject minimum; CfgObject maximum; CfgObject step; CfgObject default; char unit[CFG_STRMAX]; char *description; char *comment; }; struct CfgVariable { char name[CFG_STRMAX]; CfgType type; CfgObject value...

    $482 (Avg Bid)
    $482 Avg Bid
    2 bids

    ...version of the Lame encoder/decoder with an application that links the static libraries in. This gives the application the Lame functionality. There are two parts to this project. 1) Add a high-level decode function, and 2) analyze a Lame function. 1. There is high-level code to encode an MP3 from a WAV file. This code is as follows: void CTestNewLameDlg::OnBnClickedEncode() { CString strInput; CString strOutput; GetDlgItemText( IDC_INPUTFILEPATH, strInput ); GetDlgItemText( IDC_OUTPUTFILEPATH, strOutput ); int read, write; FILE *pcm = fopen(strInput, "rb"); WAVEINFO wi; fseek( pcm, 12, SEEK_SET ); fread( &wi, sizeof( WAVEINFO ), 1, pcm ); fseek( pcm, 0, SEEK_SET ); FILE *mp3 = fopen(strOutput, "wb"); const int PCM_SIZE =...

    $322 (Avg Bid)
    $322 Avg Bid
    1 bids

    ...login to the website virtual bool Login(const CString& szUsername, const CString& szPassword) = 0; // logout from the website virtual bool Logout() = 0; // get the current balance available to bet with virtual bool GetBalance( float& fBalance ) = 0; // get list of events for specified type, where type is one of: //American Football //Baseball //Basketball //Boxing //Cricket //Cycling //Darts //Golf //UK Horse Racing //US Horse Racing //Ice Hockey //Motor Sports //Rugby League //Rugby Union //Snooker //Soccer //Tennis virtual bool GetEventList( BOOKIE_EVENT_TYPE iType, SArbBookieEventList& xEvents ) = 0; // Get the full event detail for specified event virtual bool GetEventDetail( const CString& ...

    $3663 (Avg Bid)
    $3663 Avg Bid
    2 bids

    ...with IDLE support only, and notify the user of the class in real time of incoming messages. Any IMAP features not directly related to this are not included in this class (for example, enumerating all messages in the mailbox, changing folders, deleting messages); only handling what comes in during IDLE). This class should have the following (or similar) functions: **Int Connect (CString server, CString username, CString password, function, [, bool SSL])** ? Instantiated with given parameters, and creates a worker thread that initiates and keeps connection to IMAP server going, and synchronously waits for a successful IDLE connection to be established, and returns 1 to indicate success. The password should be stored in some kind of garbled format, and ungarbled only...

    $1138 (Avg Bid)
    $1138 Avg Bid
    3 bids

    ...CPXCControlEx)); if (m_pFactory == NULL){//if still null, then not installed AfxMessageBox(_T("PDF-XChange 4.0 SDK not installed or not properly registered.")); return; } HRESULT hr; m_pPrinter = m_pFactory->Printer[L"", L"MyPrinterName", L"<my RegKey>0", L"<my DevCode>"]; if (m_pPrinter == NULL) return; CString fName = _T("c:");//name of our test output _bstr_t bstrfName(fName); m_pPrinter->ResetDefaults(); m_pPrinter->Option[L""] = L"Save"; m_pPrinter->Option[L""] = L"No"; m_pPrinter->Option[L""] = bstrfName; m_pPrint...

    $479 (Avg Bid)
    $479 Avg Bid
    3 bids

    I need a c++ class that I can link with a MFC 6.0 project that prints out a GIF to a printer. from a user standpoint I would be mostly interested in a method class CPrintGif { .... PrintME(CString String containing gif info , printer name to print to.) Obviously you might need a pointer to the main application window or some other stuff. there is no need for pagination support, and the Gif should be printed to the full width of the printer. The class would be using MFC's standard printing method of through a DC. The trick I think is converting the string of GIF info to a bitmap that the DC understands.

    $174 (Avg Bid)
    $174 Avg Bid
    2 bids

    Download the attached document. And solve all the question in C++ using Microsoft Visual C++ 2008. Open an empty project and solve. You can only use the following libraries: iostream fstream math.h cmath string string.h cstring stdlib.h You have 6 hours... Everything should be working without any error. It will all be tested. Please code should be very neat and commented. Thank you.

    $21 (Avg Bid)
    $21 Avg Bid
    10 bids

    Program should be written in an unmanaged C ++ under Visual Studio, MFC, Windows. I need to organise search in folders and files in a tree. In the program it is necessary to add 3 buttons: "Find/Mark... _T("Name"), LVCFMT_LEFT, 240); (1, _T("Size"), LVCFMT_LEFT, 60); (2, _T("Created"), LVCFMT_LEFT, 120); (3, _T("Modified"), LVCFMT_LEFT, 120); (4, _T("FileId"), LVCFMT_LEFT, 60); (5, _T("Accessed"), LVCFMT_LEFT, 120); ..... ..... class XFILEINFO { public: CString sName; //"Name" DWORD fileSize; //"Size" LONGLONG createTime; //"Created" LONGLONG modifyTime; //"Modified" LONGLONG accessedTime; //"Accessed" DWORD fileNumber; //"...

    $58 (Avg Bid)
    $58 Avg Bid
    1 bids

    I need the Sample App MFCIE (CHtml viewer) to send a CString text to a chat page. This page is a IFRAME, with tons of javascript code. My Guess is you will need to add event sinks, or execute their javascript routine used to send chat messages. My expectations is for the MFCIE sample app (in VS 2008 or VS 2010) to have a button on the tool bar or elsewhere that will send "This is a test" to the mibbit server as a chat message. ## Deliverables

    $41 - $137
    $41 - $137
    0 bids

    ...currently uses various MFC extensions which will need to be replaced to make the code more portable. We require that the code compiles under Visual C++ 2008 and Linux g++. The main task would be to replace use of the CString library with a portable library and produce portable code that compiles under Visual C++ and Linux. Once the code is written, we would also like a small example program that calls the library to demonstrate usage. ## Deliverables Most of the work will be the need to substitute an alternative string class. There are 166 lines of code that use the MFC CString library. We would like to convert that to the portable StdString library from <~jmoleary/> There are several other minor issues: 1. CDaoDatabase access. * Database access is not r...

    $972 (Avg Bid)
    $972 Avg Bid
    11 bids

    Create a function that draws a toolbar as seen in the picture. This is copied from Visual Studio 2008. I don''t need a control, just a function that draws a toolbar. DrawToolbar(CDC* pDC, CPoint location, CString header, int selection, int width) pDC - device context location - gives a top left position of the toolbar header, string of headers in a format header0|header1|header2. Headers separated by | character. selection - index of selected header, zero based width - width of the toolbar - if the toolbar is shorter just extend then blue line to the right. Font size (selected and unselected) and blue gardient, the shape of tabs and borders of tabs should be the same as seen in the picture. Background is always white. Maris

    $89 (Avg Bid)
    $89 Avg Bid
    8 bids

    There is a custom built zip library here Create two functions using this library. ZipFolder(CString folderpath, CString zipfile) UnzipFolder(CString folderpath, CString zipfile) Those functions have to zip and unzip all the files and sub folders into a single zip file. Those two functions should be symmetrical - by that I mean that calling ZipFolder ("c:abc","c:"); and later calling UnzipFolder ("c:abc","c:"); should produce the same structure as it was before zipping. Source code has to compile in VS 2008. No additional lib or dll files to be used. Use only the library supplied on the website mentioned above.

    $70 (Avg Bid)
    $70 Avg Bid
    18 bids

    ...has a CString with it which will be of varying length (less than a gig), and will contain information relevant to that object. In addition, the CDockablePane is to be considered a 'viewport' into the area.? Rather than having 'scrollbars', when the user right or left drags the background of the control, the relative position of all of the bitmap objects shown within it should be moved accordingly. Class "CBitmapInfoViewer"? --------------------------- FUNCTIONS include: AddBitmapObject(CBitmap* pBitmapToShow,int xPos,int yPos,int nWidth, int nHeight, CString sXMLWithObject) Delete(int nNoBitmapObjectToDelete) SaveViewAndObjects(CString sFilenameToSaveStateTo); // saves state of the new control, including the bitmaps ...

    $948 (Avg Bid)
    $948 Avg Bid
    7 bids

    ...that wrapper powerpoint viewer 2007. It need use vc++ 6.0 or vs 2003 or vs 2005 written. e.g. The user will not installed ms powerpoint only installed free ms powerpoint viewer 2007. then I create the activex control on form that can loading the ppt file. it will display the ppt content in activex control, I can resize the activex control or full screen. The activex only have 4 methods, Loadfile(CString strPPTFile), NextSlide, PreviousSlide, Resize(int iWidth, int iHeight) ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Deliverables must be in ready-to-run condition, as follows? (depending on the nature? of the deliverables): a)? For web sites or? other server-side deliverables in...

    $494 (Avg Bid)
    $494 Avg Bid
    2 bids

    I need a function for my C++ program that can download file to my hard disk given URL. Function should be asynchronous. After initiating I should be able to check the progress of the download. like this bool Download(CString url, CString local_path); returns true if download started bool DownloadProgress(int& full_size, int& downloaded_size); returns false if download has been interrupted I will prefer solution that do not add extra dll's to my app and is not too expensive. This can be done as function or object. It should be usable on VC 6.0 with MFC support. Feel free to ask questions.

    $97 (Avg Bid)
    $97 Avg Bid
    25 bids

    ...GetPdf995Path() + "pdf995res"); HANDLE hndFlag = CreateFile(GetPdf995Path() + "pdf995flag", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); CloseHandle(hndFlag); 2. Print to pdf995. When pdf995 created the pdf, it will call applicationthatdeletesflagfilethatyousupply. That will delete the flag file. Wait as follows until the pdf is complete: CFileStatus status; CString szRoot = GetPdf995Path(); while(CFile::GetStatus( szRoot + "pdf995flag", status )) { Sleep(100); } Sleep(100); WritePrivateProfileString(TEXT("Parameters"),TEXT("ProcessPDF"), szDefaultProcessPDF, GetPdf995Path() + "pdf995res"); ## Deliverables * * *This broadcast message was sent to all bidder...

    $93 (Avg Bid)
    $93 Avg Bid
    7 bids

    ...Print to pdf995. When pdf995 created the pdf, it will call applicationthatdeletesflagfilethatyousupply. That will delete the flag file. Wait as follows until the pdf is complete: CFileStatus status; CString szRoot = GetPdf995Path(); while(CFile::GetStatus( szRoot + "pdf995flag", status )) { Sleep(100); } Sleep(100); WritePrivateProfileString(TEXT("Parameters"),TEXT("ProcessPDF"), szDefaultProcessPDF, GetPdf995Path() + "pdf995res"); 3. This is used in the above example: CString GetPdf995Path() { HKEY hkey1; int rc; CString szpath = "c:"; CString KEYz = "SoftwarePdf995"; if ((rc = RegOpenKeyEx(HKEY_LOCAL_MACHINE, KEYz, 0, KEY_READ, &hkey1)) == ERROR_SU...

    $96 (Avg Bid)
    $96 Avg Bid
    15 bids

    I have to modify a C++ project in Visual Studio 2005, but I don't have the necessary knowledge. At some point in my code, I have a CString object called "text". After some operations, "text" is assigned a string that should be numeric, between 0.01 and 99,999.99. Unfortunately, the string provider uses "." for both decimal and thousands delimiter, so I get strings like "10.000", which is read like "10.00", or "10.000.50", which completely fools my program. Since decimals are always 2 or none, and thousands delimiter is at most 1, I want a small chunk of code that, given the variable text, will check if the character "." is followed by 3 digits (and in this case, remove it from text, or by 2 digits (...

    $41 (Avg Bid)
    $41 Avg Bid
    2 bids

    We need a C++ class to receive the current url of the most popular browsers. 1.) Firefox 2.) IE 3.) Opera 4.) Chrome The class have to receive the URL from the different browsers with a function: GetUrlMozilla GetUrlIE GetURLOpera GetURlChrome The return value is a CString. The class have to work in a Unicode software. ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Deliverables must be in ready-to-run condition, as follows? (depending on the nature? of the deliverables): a)? For web sites or? other server-side deliverables intended to only ever exist in one place in the Buyer's environment--Deliverables must be installed by the Seller in ready-to-run condition in the Buyer'...

    $218 (Avg Bid)
    $218 Avg Bid
    15 bids

    Three C++ classes that encapsulates a limited subset of functionality are required along with a t...required to wrap the underlying Windows Mail API for both incoming and outgoing messages. The following methods must be provided. CMessage ? bool CMessage::IsInbound(); ? list<CString> CMessage::GetTo(); ? list<CString> CMessage::GetCc(); ? CString CMessage::GetFrom(); ? CString CMessage::GetReplyTo(); CMessageOutgoing ? void CMessageOutgoing::Init( ) ? bool CMessageOutgoing::SetFrom(CString sFrom); ? bool CMessageOutgoing::SetReplyTo(CString sReplyTo); ? bool CMessageOutgoing::AppendFooter(CString sFooter); CMessageIncoming ? bool CMessageIncoming::Init( ) ? CString CMessageIncoming::G...

    PHP
    $843 (Avg Bid)
    $843 Avg Bid
    4 bids

    ...using the class features. You may using open source project, but you need let me know and what files need distributed. **If you can doing all features or partial features, please let me know what things you can do and the cost.** The class will have following methods, you may refer it and modify it. ReadImage(CString strBmpFile) SetSearchArea(long iLeft, long iTop, long iRight, long iBottom) long GetTotalBarCodeCount() CString GetBarCodeType(long iIndex) CString GetBarCodeValue(long iIndex) int GetBarCodeScore(long iIndex) ## Deliverables 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done. 2) Deliverables must be in ready-to-run condition, as follows (depending on the natur...

    $423 (Avg Bid)
    $423 Avg Bid
    7 bids

    ...which is not functional but implements most of the logic. You can use this as a starting point. Below is a pseudocode explaining how this program should work. The program should be statically linked so the executable has no dependencies on external DLL's. It should also be easy to incorporate as an #include in another program, to be called as a function with a single CString parameter, and return a CString type value. QueryRas execution Logic Input string is called **Context**. Initialize **A, B, X, S, Q** boolean flags to false; Initiaize string array **Output** to empty; Initialize **Connected** boolean flag to false; If **Context** contains “A?? set **A** to true; If? **Context? **contains “B?? set **B** to true; If? **Context*...

    $170 (Avg Bid)
    $170 Avg Bid
    4 bids

    ////////////////////////////////////////////////////////////////////// // I need a C++ class thats does the following: // // This class holds information about data grid // Every cell of the grid is a CString // Every row should have internal ID that does not change after sorting // Internal ID should not be zero (0) // Grid class should be able to format and display data in // standart ListCtrl component. // Also this class should be able to change the color of the text and background // of the list control. I don't know if this is possible, but you can use // some customized list control // for example // //Please look at for list of full list of functions I need //////////////////////////////////////

    $214 (Avg Bid)
    $214 Avg Bid
    3 bids

    ...= 2, VCT_FLV = 3, etc etc etc... } VideoCompressionType; typedef enum { ACT_MP3 = 0, ACT_AAC = 1, ACT_WMA = 2, ACT_WAV = 3, etc etc etc... } AudioCompressionType; class AFX_CLASS_EXPORT CAVConversionSettings { public: CAVConversionSettings(); public: // Source file path CString m_strSourceFilePath; // Source audio / video timeline in seconds double m_dStartTime; double m_dEndTime; // Destination file path CString m_strDestinationFilePath; // Video stuff bool m_bExportVideo; long m_lWidth; long m_lHeight; long m_lVideoBitRate; VideoCompressionType m_VCT; // Audio stuff bool m_bExportAudio; long m_lAudioBitRate; long m_lAudioSampleRate; AudioCompressionType m_ACT; };...

    $538 (Avg Bid)
    $538 Avg Bid
    3 bids
    Create Ended

    I need some code (compileable in MSVC++ 6.0) that will create a file across a network. That is, in a local network of computers, i want to have a directory on one of the computers that the other computers can write files into. Something like: FILE * stream; CString file_name_and_path = "c:dir"; stream = fopen(file_name_and_path, "w"); fclose(stream); However, I want file_name_and_path to be a location on another computer. So my task is to write me the code which will allow me to create a file on another computer on the network. ## Deliverables I need to code on how to do this task. I will then add it to my application.

    $15 (Avg Bid)
    $15 Avg Bid
    12 bids

    ...the view. if the x value is greater than the scroll height the return value is FALSE. on any other errors the return value is FALSE . TRUE is given back if the scrolling was successful. BOOL SetUserAgent( const CString& uid = "", const CString& timeStamp = "" ) --------------------------------------------------------------------------- sets the user agent with the userid and the timestamp string. default values are given. SetUserAgent(); should remove the user agent entry. returns TRUE on success, FALSE for errors. BOOL SetAutoProxyURL( const CString& url = "" ) ----------------------------------------------- sets the auto proxy url for the proxy server. default value is given. SetAutoProxyU...

    $872 (Avg Bid)
    $872 Avg Bid
    2 bids

    ...function in memory, save it as a file (as binary data is fine), and then read it in later, so that it can run it again. The 2 functions are: 1. Save function from memory 2. Load function from text file The specs are: typedef void (* FUNCTION_PTR) (float*, float**); int saveFunction (FUNCTION_PTR pToFunction, CString fileName) // this function takes the pointer to the function in memory and saves it as a file FUNCTION_PTR LoadFunction (CString fileName) // this function takes the filename, loads the file, loads the function into memory, and then returns a pointer to the funciton to run the function: (*pToFunction)(inputData, output); // This is how it works. I just added to explain. the function should occupy less than 10K of memory...

    $85 (Avg Bid)
    $85 Avg Bid
    4 bids