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

Search:

Type: Posts; User: iamkajal

Search: Search took 0.06 seconds.

  1. Re: How do I code pointers in Visual Basic? (Relating to Cheat Engine) I'm so confuse

    Here is the complete listing of the source code: (just copy it into a project and run it).

    Option Explicit

    Private Declare Sub CopyMemory Lib "kernel32" _
    Alias "RtlMoveMemory"...
  2. Replies
    1
    Views
    133,189

    Re: How to load html page into the main page ?

    You can use jQuery

    <html>
    <head>
    <script src="jquery.js"></script>
    <script>
    $(function(){
    $("#divId").load("b.html");
    });
    </script>
  3. Replies
    19
    Views
    52,443

    Re: A 'customised' std::list ??

    Since the list contains pointers, rather than objects, you'll have to provide a custom comparator to compare the objects they point to. And since you're using a list, you have to use its own sort...
  4. Replies
    1
    Views
    3,268

    Re: Problem with autosave function?

    Hello, you should try this code to autosave

    < div >
    @Html.HiddenFor(model = > model.MyNoteViewModels.ICTMyNoteId, new {@id = "ID"})
    @Html.TextAreaFor(model = >...
  5. Replies
    3
    Views
    3,310

    Re: How to convert CString to wstring_view?

    To convert CString to std::wstring:


    CString hi("Hi");
    std::wstring hi2(hi);


    And to go the other way, use c_str():
  6. Replies
    4
    Views
    3,301

    Re: Free is getting called for string object

    You should try this code-

    std::string foo("since it's on the stack, it will auto delete out of scope");
    or

    std::string* foo = new std::string("allocated on the heap needs explicit...
  7. Re: Can anyone help me to Run this Matlab simulink file

    This MATLAB code shows the commands to run the simulation programmatically. The Simulink.SimulationOuput object get method returns the results and time vector.


    mdl = 'vdp';
    load_system(mdl);...
  8. Re: How to prevent GridLayout from vertically stretching?

    Please use layout_column and layout_row to specify in which row and in which column of that row you want to place your ImageView.


    <?xml version="1.0" encoding="UTF-8"?>
    <GridLayout...
  9. Re: How to connect to SQL Server data without using SQL Server Management Studio in C

    I have the same problem that you have, then I research and I find a solution to this website
    https://www.guru99.com/c-sharp-access-database.html
  10. Replies
    19
    Views
    10,422

    Re: Calling python from c++ in visual studio

    You can now substitute the contents of your C++ source file with the following source code example:


    #include “stdafx.h”

    #include <iostream>

    #include <Python.h>

    int _tmain(int argc,...
Results 1 to 10 of 11





Click Here to Expand Forum to Full Width

Featured