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
M

mehmetned

@mehmetned
About
Posts
40
Topics
27
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Streamwriter
    M mehmetned

    Dim objStreamWriter2 As StreamWriter
    Dim DTString As String

        DTString = "C:\\ETCLINK\\" + Convert.ToString(Date.Now)
    
    
        'Pass the file path and the file name to the StreamWriter constructor.
    
        objStreamWriter2 = New StreamWriter(DTString) 
    

    I take a runtime error when the code is run. What is the problem? Thank you? (objStreamWriter2 = New StreamWriter("C:\ETCLINK\09042008121212.txt") no problem here

    Visual Basic help question

  • MFC Datetime to String
    M mehmetned

    How can i convert MFC datetime to MFC string? Thank you.

    C / C++ / MFC question c++

  • get ActiveX Class [modified]
    M mehmetned

    at runtime please

    C / C++ / MFC question com

  • get ActiveX Class [modified]
    M mehmetned

    I have lots of dialogs and activex controls in those dialogs in my application. I want to set sizes of those dialogs and controls on it according to current resolution. I use enumchildwindow function to get child window but i need to know which control is activex to set activex control font. How can i know which controls are activex, which controls are not? (at runtime) Thanks

    modified on Wednesday, May 7, 2008 8:02 AM

    C / C++ / MFC question com

  • DoModal() Dialog Position
    M mehmetned

    I have a dialog and this dialog's domodal function(myDlg->DoModal) is called from another cpp file. I got rectangle of this dialog at the end of the oninitdialog function and a button clicked event after the dialog had been visible but these two rectangle values were different. Does domodal function do something about position of the dialog after oninitdialog function of this dialog? other.cpp: myDlg->domodal() myDlg.cpp: myDlg::OnInitDialog { //other code ...... ...... GetWindowRect(&rect); // top=29 bottom=221 left=165 right=1033 //end of function } myDlg::ButtonClick //i clicked button while the dialog was on the screen { GetWindowRect(&rect); // top=431 bottom=623 left=407 right=1275 } Why are these two rectangle diffenrent? Thanks.

    C / C++ / MFC c++ question

  • EnumChildWindows
    M mehmetned

    I use EnumChildWindows function to get child windows of my main dialog.If there is a child dialog in my main dialog, can i get child windows of this child dialog by using this function?(grandchild windows) Thanks

    Windows Forms question

  • OOP Question
    M mehmetned

    I have lots of dialogs in my application and these dialogs are used with 1600 1200 resolution. Now, this application is ready to use but i want to run it with different resolutions. I wrote an different application(or function or class with function) to do this and it sets all of controls' size of a dialog as resolution but for only one dialog. How can I apply this solution for all my dialogs? For example May all of my dialogs inherit from my new class(is it a good solution) or what else? Please help.

    C / C++ / MFC question help tutorial

  • How to get all controls of current dialog?
    M mehmetned

    It was very useful for my problem. thanks

    C / C++ / MFC help tutorial question

  • How to get all controls of current dialog?
    M mehmetned

    There is a dialog and it has more than one controls.I want to get all these controls to set or change some their properties at runtime. To do this , i use that code. CWnd* pChildWnd = wnd->GetWindow(GW_CHILD); while ( pChildWnd ) { // other code here pChildWnd = pChildWnd->GetWindow(GW_HWNDNEXT); } But i can't get controls and this while loop enters infinite loop. Please help me to get all controls. Thanks.

    C / C++ / MFC help tutorial question

  • MFC Application in Different Resolution
    M mehmetned

    I have a mfc application that i run with different resolution. So i want to change size of controls as resolutions rate. When the resolution increases, size of controls and font must increase with same rate between new and old resolution. please tell me how to make it simply. Thanks :)

    C / C++ / MFC c++ tutorial

  • Cyristal Report Problem
    M mehmetned

    I wrote a c++ and cyristal report application and embeded all cyristal report resources to application exe file. This exe can be run on computer with visual studio but i want to run this application without visual studio. What do i need to run this application on my computer? Cyristal report engine or what else? Thanks.

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

  • readonly DataGrid
    M mehmetned

    You want read only datagrid or no selection on datagrid text? Because, you can also select text on read only datagrid.

    C# question

  • Datagrid sorting
    M mehmetned

    In my application, there is a datagrid control and there are several columns on it. You know that datagrid control applies sorting data but I want to sort as multiple columns. For example, two columns are date and username. Firstly datagrid sort by date and after sort by username. Sorting priority of date greater than username. Date UserName 12.03.07 Mehmet 12.01.06 John 24.05.08 Michael 24.05.08 Anna 12.03.07 Becham Sorting by only date Date UserName 12.01.06 John 12.03.07 Mehmet 12.03.07 Becham 24.05.08 Michael 24.05.08 Anna Sorting by firstly date and after, by UserName Date UserName 12.01.06 John 12.03.07 Becham 12.03.07 Mehmet 24.05.08 Anna 24.05.08 Michael Thanks for your helps.

    C# algorithms tutorial

  • sql comman parameter into crystal report (Please)
    M mehmetned

    I have a form and in this form I produce an sql command as textbox inputs. As using this sql command, show suitable data in crystal report. But I can't. How do we send this sql command into crystal report as a parameter? This is a very important problem for me. Please help me.

    C# help database question

  • c++ list sorting
    M mehmetned

    I have a class A and it has x,y and z integer attributes I have created a list sequence container which has a type A list alist I want to sort the elements in this list according to y value. How can i do that? alist.sort() only sorts the elements according to the first attribute defined in the constructor.

    C / C++ / MFC question c++ docker algorithms

  • Base class to subclass conversion
    M mehmetned

    How do we convert from base class object to sub class object in c++?

    C / C++ / MFC c++ question

  • template method in c++
    M mehmetned

    carList for car busList for bus lorryList for lorry I have a method; int find(type list, int id) //type can be three posibilities (carList,busList,lorryList) { for(i){ if(list[i].id == id){ return id; } } } Is this method right for my porpose as logical?

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

  • template method in c++
    M mehmetned

    There are three list which include objects of my classes.(car,bus,lorry) All the objects have an unique id number. I want to find the object which has a id that has given as parameter. (as using template method of c++) For example my classes are; class car{ string colour1; int id; int weight1; } class bus{ string colour2; int id; int weight2; } class lorry{ string colour3; int id; int weight3; } Is it necessary to write same names of the variables (id) to apply template method to my application? Thanks.

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

  • Windows Programming and Vista
    M mehmetned

    I wonder that, will the fundamentals of microsoft windows programming change with Vista?

    C / C++ / MFC question

  • mfc tutorial
    M mehmetned

    I need mfc tutorials for beginners. Please help me.

    C / C++ / MFC c++ help tutorial
  • Login

  • Don't have an account? Register

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