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

Search:

Type: Posts; User: deszling

Search: Search took 0.04 seconds.

  1. Replies
    0
    Views
    1,003

    Serial Communication Through Web Browser

    Hi,

    I need to control a device through serial communication on a client PC used a web application.

    I have no idea how to do this. Can someone point me in the right direction?
    The following are...
  2. Critical: Unable drag and drop controls onto WebForm

    Hi,

    I got a critical problem! I can't drag and drop any items onto my web form in design view!! I'm not sure what I did. HOwever, I can drag and drop controls when I view the ASP.NET page in...
  3. Replies
    1
    Views
    516

    Computer Requirements for VS2005

    Hi,

    Can someone give me a recommendation as to what kind of computer specifications I should get in order to run VS2005.

    Currently my PC has Pentium IV 2.0 Ghz and 1 GB of ram. But VS2005 runs...
  4. Replies
    1
    Views
    632

    Back button to activate page load

    Hi,

    I have a page called RegisterPage.
    In this page, there are some textboxes and a "Register" button.
    THis is what happens when user click this button.
    1) Insert a new record into my database...
  5. Replies
    0
    Views
    1,955

    How to set Session.Timeout = 0

    Hi,

    I have a page that I wish to have its timeout set to 0.
    But it seems Session.Timeout cannot be set to 0 value.

    How can I go around this problem?
  6. Replies
    2
    Views
    954

    Unable to store session variable

    Hi,

    I have a problem with session variable.



    Public Sub StoreVar()
    session("MyVar") = "ABC"
    End Sub
  7. Replies
    2
    Views
    1,517

    Re: Adding hyperlink to databound gridview

    Hi,

    I'm reposting this msg as there was no reply.

    Basically I wish to set one of the columns in my DataTable to have a hyperlink so that user can click on it and go to another page.

    And how...
  8. Replies
    2
    Views
    1,517

    Adding hyperlink to databound gridview

    Hi,

    I have a GridView and a dataset.

    I have programmatically bound a table in the dataset to the GridView.
    The grid view currently has 3 columns.

    How can I change the first column to...
  9. Replies
    2
    Views
    1,202

    Re: CPreviewView in VC++.Net still exist?

    Hi,

    Sorry about the confusion.

    I was referring to the MFC version of CPreviewView.

    I did some more search and found the header file that contains CPreviewView (like you said in afxpriv.h).
    ...
  10. Replies
    2
    Views
    1,202

    CPreviewView in VC++.Net still exist?

    Does anyone know if CPreviewView still exists in VC++.NET.

    I can't seem to create a class that can inherit CPreviewView.
    Nor can I find the CPreviewView help page.

    I'm trying to make the...
  11. Re: Print Preview: Diff betw VC++ 6.0 and .Net

    I think i found the reason why there is a difference betw VC++ 6.0 and .Net

    Refer to the following code:

    This code was extracted from Visual C++ .Net


    BOOL CView::DoPrintPreview(UINT...
  12. Print Preview: Diff betw VC++ 6.0 and .Net

    Hi,

    I am migrating my application from VC++ 6.0 to VC++ .Net 2003

    I have a print preview function which seems to behave dfiferently
    for 6.0 and .Net

    Basically, I use MFC and add codes to...
  13. Replies
    1
    Views
    1,934

    Adding Web User Control to Panel

    Hi,

    I posted ths before but got no replies.

    I have a web user control.
    It consists of a HTML table.
    In the table is a ASP label and ASP textbox

    In one of my aspx pages, i need to add this...
  14. Thread: min()function

    by deszling
    Replies
    11
    Views
    1,204

    Re: min()function

    I assume you have MinValue function. And that you pass in a one dimensional array into this function (i.e each column's values)?

    If yes, then my solution is as such



    double col[] = { 2.31 ,...
  15. Re: Setting default button for CFormView at runtime

    Solution:

    Hi all,

    I think I have found a solution to my problem.
    Thought I'd share it here if other people experience the same thing.

    Apparently setting the button style of a button has an...
  16. Setting default button for CFormView at runtime

    Hi,

    I have a CFormView and there are edit boxes and buttons.
    There is a Close and Apply button.

    This is the tab order of my control

    1) Edit Box
    2) Edit Box
    3) Close Button
  17. Replies
    2
    Views
    677

    Re: Adding dynamic Web User Control

    Hi,

    After being able to add web user controls to a panel,
    i can't seem to be able to place it on a position that i want.

    During design time, i added 2 web user control (WUC) to a panel,...
  18. Replies
    3
    Views
    2,261

    Re: F10 key activates Menu Bar

    What is my application disabled RMB?
    Ultimately, the question is If an application has not assigned short cut actions to Shift+F10, should pressing Shift+F10 work just like F10?

    My opinion is...
  19. Replies
    3
    Views
    2,261

    F10 key activates Menu Bar

    Hi,

    I would like to ask for a UI opinion

    For a normal windows application, F10 will activate the menu bar
    (or set focus to it --> normally File menu).

    But what about Shift+F10? Should it...
  20. Replies
    2
    Views
    760

    Re: ASCii value of a CString object

    You can simple assign the char to a int variable

    You can display the hex value as well using %x in a string



    CString szString = "Ac20";
    int nValue;

    nValue = szString[0]; // nValue will...
  21. Replies
    1
    Views
    522

    Switching from VC++ 6.0 to VC++.Net2003

    Hi,

    I'm going to start my windows application project
    using VC++.Net 2003.

    I do MFC MDI applications for serial communications.

    I used to do it in VC++ 6.0.

    Is there anything that I...
  22. Replies
    2
    Views
    677

    Adding dynamic Web User Control

    Hi,

    I'm learning ASP.NET Programming and very new to this stuff.
    So pardon my question if its too trivial.

    I have a web user control. Its made up of the following:
    - ASP Label
    - ASP Textbox...
Results 1 to 22 of 22





Click Here to Expand Forum to Full Width

Featured