Click here to Skip to main content
15,890,845 members
Everything / Virtual

Virtual

virtual

Great Reads

by Tomaz Koritnik
TmStorage is a structureless virtual file system from which complex storages or databases can be built.
by Young Ye
This article solve the performance issue while loading and displaying large amounts of data by using a virtual list with paged data technique.
by Mark Vinod Sinnathamby
This post is a tutorial that is complimentary to the session I did, demonstrating the steps of how a simple holographic application can be built and deployed in the HoloLens emulator.
by Minh Danh Nguyen (ToughDev)
This article describes how to use WinDbg to identify issues that may prevent Windows Subsystem for Linux (WSL) from starting.

Latest Articles

by Minh Danh Nguyen (ToughDev)
This article describes how to use WinDbg to identify issues that may prevent Windows Subsystem for Linux (WSL) from starting.
by Wessel Beulink
Microsoft Azure enhances security with private subnets, fostering efficient network management.
by ToughDev
Emulate parallel port printer to capture data from Tektronix 1230 Logic Analyzer
by ToughDev
Hyper-V & Hardware Assisted Virtualization

All Articles

Sort by Updated

Virtual 

18 Jan 2024 by Minh Danh Nguyen (ToughDev)
This article describes how to use WinDbg to identify issues that may prevent Windows Subsystem for Linux (WSL) from starting.
5 Jan 2024 by Wessel Beulink
Microsoft Azure enhances security with private subnets, fostering efficient network management.
8 May 2023 by ToughDev
Emulate parallel port printer to capture data from Tektronix 1230 Logic Analyzer
7 May 2023 by ToughDev
Hyper-V & Hardware Assisted Virtualization
16 Dec 2021 by Gabriel Sharp
Here is the code for the project, I need to work at implementing inheritance for it. I would like to have some virtual functions and make it a class driven program which uses derived classes and has a base class. The derived clase should inherit...
16 Dec 2021 by Greg Utas
Once you're finished converting this code to classes, you should have learned that you should design that way from the beginning. Rewriting the code later is a lot of work and is prone to error as you cut and paste fragments into various classes,...
15 Dec 2021 by OriginalGriff
To be honest, I'm not going to go into details because that would mean a close inspection of that code, and what I can see from a cursory glance is that it's ... pretty poor quality. It's pretty much monolithic, it's full of duplicated code and...
5 Nov 2021 by Member 15405313
Which emulator doesn't requires VT at all can be installed in win 7 without enabling hardware assisted virtualization What I have tried: Which emulator doesn't requires VT at all can be installed in win 7 without enabling hardware assisted...
5 Nov 2021 by RickZeeland
Try VirtualBox, it does not need hardware virtualization support, but a strong processor is recommended: Oracle VM VirtualBox[^]
12 Oct 2021 by Ali Majed HA
HelloI am coding a Windows Form Application and I need to active an on-screen keyboard by pressing a key. I have tried applications like Hot Virtual Keyboard but the problem is when I activate keyboard, some part of my application form wull be hidden under the keyboard application. I need to...
15 Mar 2021 by tugrulGtx
Header-only C++ tool that supports basic array-like usage pattern and uses multiple graphics cards in system as storage with LRU caching
11 Jul 2019 by Member 13608791
I'll paste my code below: #include using namespace std; class Smoothy{ private: int price; public: int getPrice(){ return price; } virtual ~Smoothy() = default; virtual string description() = 0; }; class BasicSmoothy: public Smoothy{ private: string...
11 Jul 2019 by Stefan_Lang
If you can't use virtual functions, where's your point in using the decorator pattern?? Just store the description and price of each ingredient in a simple struct and create a list or std::vector to hold the ingredients. Problem solved. If you have a specific reason to use the decorator...
18 Oct 2018 by Santosh Vijay Patil
Configuring Developer Docker Tool to use BYOD VM as your Docker Host/Machine
13 Jan 2017 by Richard MacCutchan
C++ does not have any mechanism for detecting class types at runtime. You would need to add some extra properties to your classes. Alternatively there are some third-party libraries that may help; Google for "C++ reflection".Thanks to Carlo, I now know the correct answer.
13 Jan 2017 by YznIT
Hej :)How can i detect the class type of a specific object in c++ or What is the best way to find out which type the object is on my array ?For example what if i want to set a new age for all the cats only without knowing there positions(index) in the array.And please write the...
13 Jan 2017 by CPallini
Have also a look at typeid operator[^].
12 Jan 2017 by nv3
You have a couple of alternatives:(a) Adding you own type field to the base classclass Animal{public: int m_type; ...}That is not very object oriented and would be my last resort.(b) Use the run-time type information system of C++: Cat* pCat =...
6 Jan 2017 by Mark Vinod Sinnathamby
This post is a tutorial that is complimentary to the session I did, demonstrating the steps of how a simple holographic application can be built and deployed in the HoloLens emulator.
26 Sep 2016 by Shamim Uddin
In this tip, we will discuss the differences between IIS Physical path & IIS Virtual path.
19 Sep 2016 by Alex Banu
Take a look at: How to Use Windows On Screen Keyboard in C# WinForms - Stack Overflow[^]
17 Sep 2016 by Karthik_Mahalingam
write here Contact us - VRbox[^]
17 Sep 2016 by Dave Kreskowiak
Why are you asking us?How about you TRY IT and see what happens.
17 Sep 2016 by OriginalGriff
Ask the manufacturer, not us. They will have a much better idea - particularly as it will probably vary from mobile to mobile, and VR box to VR box...
16 Sep 2016 by Brady Kelly
I've added an external network switch to Hyper-V that connects to my wifi router. Then, when I install Debian, and set the network adaptor during install, Debian still has no internet access at all. Is there a task or settings I am missing or something?What I have tried:I have tried...
23 Aug 2016 by Max Fedotov
Virtual Keyboard (TabTip) integration in WPF on Win 8.1 and Win 10
30 Jul 2016 by Member 12661920
I have two monitors one is a touch screen, i want doing a click one my touch screen without moving the mouse position (pointer)is there a simple autohotkey script that it return to previous position of mouse.i use keystarter 1.0 software you can make in 3d a list of button icons with...
26 May 2016 by Dave Kreskowiak
Given the performance requirements of the Rift, I'd say, no you can't. The Intel graphics chip just doesn't have the performance to generate a decent frame rate.EDIT:After doing a search for "Oculus Rift Intel Graphics" it does work, but you'd have to lower the graphics settings in games...
26 May 2016 by Dzianis Igaravich Leanenka
Hello to everyone!I try to install oculus rift dk2 and I have troubles after I have installed all the required soft. Oculus demands amd or nvidia graphics. Is there a walking around way to run oculus sdk with intel hd?What I have tried:I have tried google search)) but I have found...
11 Nov 2015 by Frankie-C
To access ports from code you have to enable permissions for I/O access using ioperm() [^].Consider also that there are some issues with io.h and asm.h (see[^]). It is highly recommended to compile the code with optimization on when using I/O macros.
11 Nov 2015 by Jochen Arndt
From the outl man page[^]:Quote:You use ioperm(2) or alternatively iopl(2) to tell the kernel to allow the user space application to access the I/O ports in question. Failure to do this will cause the application to receive a segmentation fault.
10 Nov 2015 by Dzianis Igaravich Leanenka
Hello to everyoneI use ubuntu as an OS in Virtual Box(virtual machine). And my goal is to list all the pci devices that can be found in the system using c++ code. Here is a part of it:#include #include #include #include #define...
11 Jul 2015 by salam_dust_man
hi everyone;i'm looking for source code or sample that get printer data before print (capture printer output) put it in variable and change some values then print it in form.any idea how to get data and put it into variable for special purpose.
10 Jul 2015 by Dave Kreskowiak
Well, you're going to have to write your own Notepad then."Intercepting" the print job and editing it is an extraordinarily complex way to do what amounts to Mail Merge.The application describes what the page image looks like to the print driver. The driver takes that "image" and...
28 Jan 2015 by Snesh Prajapati
No need to purchase dedicated domain..until you like to access WCF service with it. or Just IP will do.Have a look in steps given here:http://stackoverflow.com/questions/1712778/how-do-i-host-a-wcf-service-on-the-internet[^] 1. I am assuming that you have made a working WCF...
28 Jan 2015 by Dharanya K
Good Evening,I need to know what are the requirements for hosting my WCF web services in real time.I have purchased a VPS and it have a dedicated IP. Do I need to purchase a separate domain??Please help me to know all my requirements.Thank you.
25 Nov 2014 by Zoltán Zörgő
Technically you can do that with file:// protocol, but with one condition: this url will point to a local resource - with othe words a resource visible from client side. Sometimes you might need to do that, for example in an enterprise environment. But in general, when you don't know anything...
25 Nov 2014 by Member 11058906
Hi,MVC 4 C# app, I need to allow users to access files from folders that are out the virtual directory, files are created by another app every month.1. I do not want user see physical path of files likefile1Could you...
21 Nov 2014 by Tomaz Koritnik
TmStorage is a structureless virtual file system from which complex storages or databases can be built.
20 Nov 2014 by Raul Iloc
1.Lazy loading related with EF does not depends on MVC. You could find details about it in the next link: http://msdn.microsoft.com/en-us/library/vstudio/dd456846(v=vs.100).aspx[^]Or if you want info about "Lazy Loading" in general here is a good article: Can you explain Lazy...
20 Nov 2014 by Fredrik Bornander
By making the properties virtual, entity framework can conjure up dynamic proxies for your objects, and through the overridden properties support lazy loading.The virtual keyword does not have a different meaning, it just allows the framework to manipulate your object in a way that allows...
20 Nov 2014 by Grant Weatherston
I've heard a lot about lazy loading in MVC (i'm completely new to MVC btw), and alot say you utilise the virutal keyword on properties you wish to lazy load from Entity Framework.can anyone explain does that mean the virtual keyword has a different meaning in MVC than in standard application...
16 Sep 2014 by Manas Bhardwaj
I think what you need is an Application Page:http://msdn.microsoft.com/en-us/library/ee231581.aspx[^]Quote:An application page is an ASP.NET Web page that is designed for use in a SharePoint Web site. Application pages are a specialized type of ASP.NET page. The primary difference...
16 Sep 2014 by Troy Billeter
We have a number of client sites and would like to append a virtual path to each of them. Example, appending a help site:www.contoso.com/client1/helpwww.contoso.com/client2/helpwww.contoso.com/client3/helpWe want to create a single Help site, and have each client site pull that...
13 Aug 2014 by Richard MacCutchan
There is no simple way by programming to rename a registry key. You would have to create a new key, copy the subkeys and values from the old one to the new one, and delete the old key and its content. This seems like quite an advanced test for a school project, especially given your comments...
13 Aug 2014 by Member 11011736
Hello everyone,fist of i want to say is that am using visual studio's as my application maker and using virtual basic as my language, am currently having to make a application as a school project that i need to turn in this Friday so any help will be appreciate it the application has 5...
23 Mar 2014 by abhitechno
My company is still running VAX VMS 5.5-2. My moron boss has accidentally created a huge file named "H:\BCS02\VAX\BCS02_SYSD.bck" and now i am unable to delete it. "dir" command is listing the file along with size and all other specifications but all other commands including "delete"is refusing...
26 Jan 2014 by Member 9066404
Hello sir/madamI am designing my own Email System like Gmail. In this I want to use word prediction technique in Compose mail TextBox.I mean when Someone type something in compose mail textbox ,it should automatically retrieve values from database.That's fine,, With PHYSICAL...
5 Jan 2014 by Richard Tauber
Implementing dynamic polymorphism without virtual functions and sharing objects across process boundaries.
29 Dec 2013 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
Quote:[UnauthorizedAccessExcep...
28 Dec 2013 by NAGESH SRIVASTAVA
Server Error in '/' Application.Access to the path 'C:\Inetpub\vhosts\sssinfracity.com\httpdocs\Reports\Logistics_Report_by_Employee_on_12_29_2013.pdf' is denied.Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for...
24 Nov 2013 by Sergey Alexandrovich Kryukov
A Web site has nothing to do with "Project Solutions" (what is it, by the way?). Project and solutions are just the artifact of development, they don't exist after you deploy the site code. The thing is: yes, the code-behind code needs what you call "physical paths"; more exactly, file path...
24 Nov 2013 by Kunal Ved
I want to set a download link in my gridview , the thing is that I have set a physical path while Uploading the file and saving the file name and its pyshical path in the databaseif (fileUpTimeTable.HasFile){ string TimeTableFileName = fileUpTimeTable.FileName; string...
14 Nov 2013 by Member 10402390
I found this.this MFC. I hoped on clean winapi...
14 Nov 2013 by CHill60
Did you even try Google with the search "virtual view list example lvs_ownerdata" - the exact wording in your post?If you had then you would have found this CodeProject article[^]
14 Nov 2013 by Member 10402390
I will be grateful for virtual view list example lvs_ownerdatathanks.
12 Nov 2013 by Sergey Alexandrovich Kryukov
Yes, ASP.NET can be well used to create a virtual classroom. The question is so vague, so that's all. If you have some particular problem, feel free to ask your questions.—SA
10 Nov 2013 by OriginalGriff
We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.Try it yourself, or learn the...
2 Nov 2013 by Tadit Dash (ତଡିତ୍ କୁମାର ଦାଶ)
Here we answer specific questions which members face during programming.Please try something on your own. Search in Google, find good tutorials and implement them.If you face any difficulty while coding, feel free to come back here and ask another question with specific issue describing...
2 Nov 2013 by Adam_adam
Hello All,I want to update multiple rows in ms access project table from different queries, by using vbamy database on sql server 2005. please could you help me and send me some information for it.with regards
15 Oct 2013 by JL_Coder
Hello. I have one third party tool, which is an authoring tool/software to create e-learning contents. In which I want to add one onscreen keyboard when a students clicks on a textbox to write. How can do? I heard about tinymce software. Can it be done using it?
14 Oct 2013 by wise.bear
You need to take a look at the Virtual sound card SDK
2 Oct 2013 by sid2x
I was just programming some stuff in ASM, until I got to know that VGA is limited to 640x480 resolution, (I hate VGA), then I was thinking about VESA/VBE, since in OS Development people use VESA more that VBE (To what I have seen), I wanted to switch to VESA, but I couldn't find anything...
29 Sep 2013 by pasztorpisti
Bug #1:You are allowed to call the constructor of a member variable or base class only from the initializer list of your constructor.Rectangle(int a, int b) : Shape(a, b){}Bug #2:"no matching function for call to Shape::Shape()"If you don't explicitly call the...
29 Sep 2013 by kumar_11
Here is the code.This code is to understand the concept of virtual function so in the constructor when write like shape(int a=0, int b=0 ) and same for all other constructor of derived classes, working absolutely fine.But when not initializing the members to 0 it's showing error like " no...
24 Sep 2013 by tenderzs
i have writed an app with c#,i want my app can not running in a virtual machine,such as,vmware,virtual boxthanks
20 Aug 2013 by gssajith87
http://social.technet.microsoft.com/Forums/windows/en-US/09f64a88-e1d7-4f3a-8e6a-292b46bfe4f7/vhd-file-size-is-lesser-than-the-actual-data-size-present-inside-it[^]
20 Aug 2013 by gssajith87
Hi,I have a VHD File size of 29 GB., I attached the VHD to disk Management in 2008 R2 machine, the VHD has two partition say z: and c:., z: has used space of 33 MB of Full size 100 MB and the C: has used space of 75GB of Full Size of 300 GB. How is this possible ? In my understanding,...
8 Aug 2013 by adriancs
class Class1{ public virtual int GetNumber() { return 1; }}class Class2 : Class1{ public override int GetNumber() { int i = base.GetNumber(); return i + 1; }}private void button1_Click(object sender, EventArgs e){ Class1...
8 Aug 2013 by Srinivas Kalabarigi
In polymorphism we have method overloading and method overriding.Method overloading is the process of creating new method with same name but different signature.Method overriding is the process of creating new method with same name and same signature but in a derived class.In method...
7 Aug 2013 by Raghuveer Kasyap
Hi,Define the Virtual methods only in the case if the methods are to be overridden in the derived classes as per their behavior. For an example the shape class can have Draw method. The Circle, Rectangle classes which derived from the Shape class can override the Draw method.Regards,Raghu
7 Aug 2013 by microkbr
hi,I am new to .net so please let me clear my doubt .i wanted to know the scenarios where i have to declare my method as virtual.otherwise it will not work.
3 Jul 2013 by nv3
The specification of the thread function is not correct. Use _beginthread (&gangplank, 0, (void *)this);[AMENDED]In addition, you should wait in the destructor of your thread until the newly created workerthread has ended. What happens now is that in main you create a "d"...
2 Jul 2013 by Ken Chiayuan Chang
i wanna write a threading object has a virtual member function ,can override.#include #include using namespace std;class thread{private: static void gangplank(void *ptr) { ((thread *)ptr)->run(); }public: void start() { ...
30 Jun 2013 by Member 9166990
Hi,I am hosting my website in IIS on my local system. It is working file. But I am creating virtual directory for it then getting below error. Can anyone plz let me know how to resolve it?Server Error in '/'...
12 Jun 2013 by gssajith87
Hi,I have a virtual harddisk file created using a backup software., i was able to attach the file in disk-management [2008 R2] to view the files., When i right clicked the disk management Disk# section, it does not show me, detach option, it just showed me up the offline option. I made the...
30 Apr 2013 by Leo Chapiro
Take a look: VC++ MFC Tutorial: CListCtrl, InsertItem, Using List Control, SetImageList, Article with source code[^]>can we have any other option to increase or decrease the column width of virtual list control.Yes, we can:// The pointer to my list view control.extern CListCtrl*...
30 Apr 2013 by P Uday kishore
i am working on on to save the column width of a list control,but in my list control we used as virtual list control so am not able to update the column width.can we have any other option to increase or decrease the column width of virtual list control.
8 Apr 2013 by Wassim Brahim
How To export virtualized DataGrid to Excel ??
7 Apr 2013 by Dusan Paulovic
Hello, do you know about any Generic SQLite Virtual Table Implementation in C++?I mean something like pure abstract class (interface) that can wrap around any type of container or some another abstract class (interface) providing data at Row and Column in abstract data table.In other...
11 Mar 2013 by MGreatwolf
Thanks, but that is more of an SDK to use a driver that Tobias has already developed.
18 Feb 2013 by jeron1
Possibly this[^] SDK will help.
18 Feb 2013 by MGreatwolf
Hi,I am trying to track down information that would help explain how to create a virtual MIDI port similar to LoopBe1 (www.nerds.de). My development environment is Visual Studio 2010 and I am most familiar with C++. LoopBe1 is an awesome program and I have/am using today but now I want to...
20 Jan 2013 by Sandeep Mewara
It does not work like this here.Here is what is expected of enquirers:1. TRY first what you want to do! You may find that it's not that hard.2. Formulate what was done by you that looks like an issue/not working. Try them and tell if you face issues.Members will be more than happy...
3 Jan 2013 by Young Ye
This article solve the performance issue while loading and displaying large amounts of data by using a virtual list with paged data technique.
12 Dec 2012 by Christian Graus
I assume this line is the error:byte[] data = req.DownloadData(Server.MapPath(strURL));You did MapPath on strURL already. So, it's already a local path, but you pass it to a method that expects a virtual path to convert.
12 Dec 2012 by kishanthakar
I am trying to download resume file from folder nameed as strjobID and file name is stored in CommandArgument of grid view , but while execution I am Getting this Exception'D:/AdminApp/Jobportals/Utils/ApplicantFiles/27/directory.txt' is a physical path, but a virtual path was...