CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Valentin Rozescu

Page 1 of 11 1 2 3 4

Search: Search took 0.47 seconds.

  1. Replies
    4
    Views
    1,358

    Re: C# Writeln

    take a look at this:

    Console.WriteLine("Tip total/rate:" + ControlChars.Tab + "{0,8:c} ({1:p1})", tip, tipRate)

    let me know if this helps you
  2. Re: some question about deploy my Application

    hi kevin

    1) i don't know how to do that with Visual Studion Setup Project (i think you can't)
    take a look at Custom Action and Shortcuts...
    i tried InstallShield X and that put the Uninstall...
  3. Re: creating IIS ftp user using windows programming in any windows language

    hi zacharya
    i don't have the solution for you but i think i have some usefull information

    IIS FTP user is, in fact, windows user (local or domain user)
    i think it is enough if you create an user...
  4. try to put in Files prop of Restore object the...

    try to put in Files prop of Restore object the filename with the network path

    restoreobject.Files = "\\\\remotemachine\\restoreshare\\file"
  5. Replies
    8
    Views
    1,100

    hi i found that thread interesting but i need...

    hi
    i found that thread interesting but i need some advice now

    it is possible to know the file that notify me?
    i want to know what file was opened from a folder and when

    can you help me...
  6. Replies
    1
    Views
    782

    monitoring open file

    hi there
    does anyone know how can i log the activity of the file system?
    i need to know when a file opens and store the name in a database
    thank in advance for your help
  7. Replies
    5
    Views
    1,079

    take a look at this (I can't upload the entire...

    take a look at this
    (I can't upload the entire solution archived but if you provide me an email adress...)
  8. Replies
    2
    Views
    932

    int nStart = X ; int spos = 0 ; int epos =...

    int nStart = X ;
    int spos = 0 ;
    int epos = this.Columns[0].Width ;
    for ( int i=0; i < this.Columns.Count ; i++)
    {
    if ( nStart > spos && nStart < epos )
    {
    subItemSelected =...
  9. Replies
    5
    Views
    1,079

    try to place an editbox on top of your listview...

    try to place an editbox on top of your listview and than change the value of subitems
    if you need a sample i can provide one
    let me know if this help
  10. Replies
    0
    Views
    665

    Listview and Treeview

    hi there
    i need some ideas about putting treeview controls inside listview
    more specific, i need to have a treeview in each listview item or subitem

    i found some articles about treelistview but...
  11. Replies
    1
    Views
    731

    Windows color

    hi there

    i have a problem detecting the change of windows scheme
    is there a WM send to all windows when the user chenge scheme from desktop properties

    thank you in advance for your help
  12. Replies
    0
    Views
    658

    ATL ActiveX and Scroll

    hi there
    i build an atl activex control and i realy need to implement horizontal scroll capabilities. the window my activex that i want to scroll is derived from CTreeCtrl and i use the vertical...
  13. Replies
    0
    Views
    645

    ADO AddNew

    hi there,
    I build an ActiveX Control, inside this control I use an ADO Recordset and at one moment I need to add a new record
    I use this code, listed below, but with no success
    what can I do?
    ...
  14. Replies
    0
    Views
    655

    ADO ATL

    hi there
    i have a problem using ADO in ActiveX control that i build


    CComPtr&lt;ADORecordset&gt; m_rsDataSource;
    CComVariant vFieldlist, vValuelist;
    vFieldlist="Program";
    vValuelist="dhsgks";...
  15. Re: Direct copy to printer port under Win NT

    can you, please, post some code here?
  16. Re: Direct copy to printer port under Win NT

    look in MSDN Library at CreateFile API Reference

    let me know if this help
  17. Replies
    0
    Views
    753

    WTL + ADO + Shape

    hi
    i have a problem, a big one
    i build an active x control that receive from a vb programm a shape recordset
    like this

    STDMETHODIMP CXGrid::putref_DataSource(IDispatch *newVal)
    {
    long i;...
  18. Replies
    0
    Views
    537

    ATL ActiveX

    hi there

    i am building an ATL ActiveX and I have a big problem
    I have an TreeViewCtrl in my control and I need to work with HTREEITEMs from outside of my control
    Ihave to insert into the tree...
  19. Replies
    1
    Views
    508

    Re: CString

    you can use the operator []

    CString s( "abc" );
    ASSERT( s[1] == 'b' );

    let me know if this help
  20. Replies
    2
    Views
    682

    vector at

    how to use vector.at
    i try this and doesn't work
    mt arr has 100000 objects

    void CTestDlg::OnButton1()
    {
    CString s;
    s.Format("\n%d", arr.at(49999).Xdeg);
    AfxMessageBox(s);
    }
  21. Replies
    2
    Views
    690

    Re: Database

    first add references to ADO from project menu and then put the following code into a form

    Set conn = New ADODB.Connection
    conn.ConnectionString = "Provider=SQLOLEDB.1;Persist Security...
  22. Re: how to get the filesize of a file, which lies on a ftp server?

    CFtpFileFind::FindFile
    virtual BOOL FindFile( LPCTSTR pstrName = NULL, DWORD dwFlags = INTERNET_FLAG_RELOAD );

    Return Value

    Nonzero if successful; otherwise 0. To get extended error...
  23. Re: how to get the filesize of a file, which lies on a ftp server?

    FtpGetFileSize Function

    --------------------------------------------------------------------------------

    Retrieves the file size of the requested FTP resource.

    Syntax

    DWORD...
  24. Replies
    2
    Views
    812

    Re: Check Box, Radio Buttons

    if you need to change the background color of the lithe circle or litle square WM_CTLCOLOR is useless
    for that change must derive CButton
  25. Re: how to get the filesize of a file, which lies on a ftp server?

    read MSDN Library for FtpGetFileSize Function

    let me know if this help
Results 1 to 25 of 253
Page 1 of 11 1 2 3 4





Click Here to Expand Forum to Full Width

Featured