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

Search:

Type: Posts; User: shail2k4

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    1,675

    WIFI Based Location Tracking

    Hi Gurus...

    I am working on my assignment of wifi based location tracking.
    I googled and found so many articles regarding the same but not getting clear idea that how the complete system can be...
  2. emails get spam if sent via C# .net 2.0 but goes to inbox if outlook is used

    Hi All,

    My emails are getting spammed if i use my own software to send them. The software is in C# (with .net framework 2.0).

    If i send the same mail (will all Identical settings ie. same ip,...
  3. Replies
    2
    Views
    4,621

    Re: Hard disk Serial Number

    [QUOTE=BioPhysEngr;2071340]It looks like there has been a very similar question over at StackOverflow:

    Already tried without success.
    Results are as mentioned.

    Regards
  4. Replies
    2
    Views
    4,621

    Hard disk Serial Number

    Hi All,

    I am trying to read the Physical Hard disk serial number(Not the volume serial number) which remains unchanged on formatting.

    I have tried WMI as well as DeviceIOControl API as...
  5. Replies
    3
    Views
    1,291

    Re: Content of Listview of External Application

    Isn't there any solution???:(:(:(:(:(:(:(
  6. Replies
    3
    Views
    1,291

    Re: Content of Listview of External Application

    I got the Handle of the Listview with the same API.

    But what next to get all the items of that listview.

    Already tried with the sendmessage and Virtual Memory allocation in the external process...
  7. Replies
    3
    Views
    1,291

    Content of Listview of External Application

    Hi all,

    I am trying to get the contents of the listview which is in external application (Not my application)

    Type of the window is "WindowsForms10.SysListView32.app7". [As per SPY++]

    I am...
  8. Replies
    8
    Views
    1,688

    Re: LPARAM of user defined message

    I have checked the window handles with spy++, but didnt found any window having the value equal to lparam.

    Is it possible that it is pointing to some function in the dll?

    Thanx
  9. Replies
    8
    Views
    1,688

    Re: LPARAM of user defined message

    How can i do it with reading the assembly code.

    Can you pls explore it.

    Thanx
  10. Replies
    8
    Views
    1,688

    LPARAM of user defined message

    Hi all,

    I am working with an external application (not my application)

    This application posts a user defined message to perform a task. I have captured the message with help of spy++.

    It...
  11. Replies
    2
    Views
    625

    Output of specific application on LCD

    Hi All,

    I want to redirect the output of a specific application on LCD/TV like devices.

    What this type of technology is described as??

    I want to start googling on that, but i dont know from...
  12. Replies
    10
    Views
    1,756

    Re: CTabCtrl Enumeration Problem

    No probs at all....;)

    Will try with all of your suggestions...:thumb:

    Thanx a lot...

    Regards,
    Shail2k4
  13. Replies
    10
    Views
    1,756

    Re: CTabCtrl Enumeration Problem

    I have already mentioned that in my post at begining





    In every trial i am getting all five dialogs and the controls of that dialogs even if the application is not active...

    The problem...
  14. Replies
    10
    Views
    1,756

    Re: CTabCtrl Enumeration Problem

    Oh, i think there is misunderstanding

    This is not my design... It is an external application and i want to get data from that application..

    Though i have got the desired data, but as the order...
  15. Replies
    10
    Views
    1,756

    Re: CTabCtrl Enumeration Problem

    How can i have CPropertySheet from the following windows hierarchy.



    ---> Message Bar
    |---> Message Bar
    |---> SysTabControl32
    |---> "32770" Dialog
    |---> TextBox
    |---> "32770"...
  16. Replies
    10
    Views
    1,756

    Re: CTabCtrl Enumeration Problem

    what i have done from your suggestion is



    CPropertySheet *cps = (CPropertySheet*)CWnd::FromHandle(m_fSysTab);
    //m_fSysTab is the HWND of the CTabCtrl Control found in enumeration
    int...
  17. Replies
    10
    Views
    1,756

    CTabCtrl Enumeration Problem

    Hi All,

    I am trying to Enumerate all the child and sub child windows of a CTabCtrl window which is in external window. (Not my application)

    I can successfully enumerate all the childs of the...
  18. Replies
    12
    Views
    81,747

    Re: Check a Point lies in a Line segment

    Still i m confused with the condition used in the function "is_between"

    Oring (||) has been used in the function and hence if x lies between x1 and x2 it will return true, whether x2>x1 or not.
    ...
  19. Replies
    12
    Views
    81,747

    Re: Check a Point lies in a Line segment

    Hi

    Nice peace of code, though i am not sound at geometry but i think the following condition may return unwanted results.




    if ((x2 - x1) <= tolerance) // Vertical line.
    ...
  20. Re: How to Validate a TextBox to accept only String - Not any numeric(int ,decimal...

    You may use the following code to validate,



    //Keypress event of your textbox
    private void txtTarget_KeyPress(object sender, KeyPressEventArgs e)
    {
    int x =...
  21. Replies
    2
    Views
    1,032

    Re: IPAddress Control

    Do you want it for the data entry purpose ie. some should enter valid ipaddress?

    if Yes then u can also use simple text box with the regex validations.
  22. Replies
    15
    Views
    10,821

    Re: Web Browser and Image Elements

    Definitely true, but with only one hazard,

    Have to replace all the image element like <img> and <v:Imagedata> or any other custom image tags (may be there if different editors are used).

    Any...
  23. Replies
    15
    Views
    10,821

    Re: Web Browser and Image Elements

    Ok, that can be done by this way, but when the designer will change the image, he will save it to another location. So need to change the src attribute of the image to locate that path.
  24. Replies
    15
    Views
    10,821

    Re: Web Browser and Image Elements

    The complete task is what,
    1. Have to save the images in the folder.
    2. The images will be edited by the designers.
    3. The original images will be replaced with the modified one and then be sent...
  25. Replies
    15
    Views
    10,821

    Re: Web Browser and Image Elements

    Respected HanneSThEGreaT
    I believe 100% that you are giving your 100% to help me out:).



    I have already tried with both type of methods and resulted in the hard luck.
    I know that my problem...
Results 1 to 25 of 148
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured