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
V

vikashparida

@vikashparida
About
Posts
7
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Folder and File traversing in C#
    V vikashparida

    Use the DirectoryInfo class. DirectoryInfo di = new DirectoryInfo(path); FileSystemInfo[] fi = di.GetFileSystemInfos(); fi contains a list of all the folders and files in the directory represented by path. Now you can traverse through that list. Consult MSDN on DirectoryInfo class for further details

    ------------- The primary aim of AI is to make programming languages understand how frustrating it is to program them

    C# question csharp help

  • Web Service Deployment
    V vikashparida

    I want to deploy my web service on the internet. The problem I am facing is that my code references a dll (MySql.Data.dll). When I am using the code on local host it seems to run fine, but on uploading to the server, the code cannot locate the dll. I have tried putting the dll in the same as well as 'Bin' directory. Do I need to add something to the web.config file??

    Web Development sysadmin mysql help question

  • Creating custom tooltips
    V vikashparida

    How can i display my own tooltips using VC. I am talking about the ones such as function declarations that VC displays in the IDE. Any help will be appreciated Vikash Parida

    C / C++ / MFC visual-studio help question

  • setting the font of the view in the doc/ view architecture
    V vikashparida

    Hi, In the OnDraw function you can select a new font into the DC and do all your drawing(text) and it will be in that font. CTestView::OnDraw(CDC *pDC) { CFont NewFont; NewFont.Create(Specify Parameters); CFont *pOldFont = pDC->SelectObject(&NewFont); // Draw your text // Select old font back pDC->SelectObject(pOldFont); } Hope it helps Vikash Parida

    C / C++ / MFC architecture tutorial question

  • Using Math constants in vc++ 6
    V vikashparida

    okay i think i will define my own constant rather that searching for a way to use the constant in the header file. previously i had also used it only on an unix system thanks for the help

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

  • Using Math constants in vc++ 6
    V vikashparida

    Although it sounds quite silly, I havent been able to use the math constants defined in math.h such as M_PI etc. Can anyone help me with this?

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

  • Status Bar Help Required
    V vikashparida

    I want to code the Status Bar so that it displays the co-ordinates of mouse when i move the mouse. i created a pane for it and tried to handle the onmousemove event in the CMainFrame class but it didnt work. Plz help me with it

    C / C++ / MFC help
  • Login

  • Don't have an account? Register

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