Click here to Skip to main content
Page 1 of 296
Page Size: 10 · 25 · 50


Tag filtered by:  Visual-Studio [x]
Article 13 May 2013   license: CPOL
How to build a simple Scheduler in C# for Desktop and Web Applications
Article 13 May 2013   license: CPOL
tick data downloader for automatic trading systems
Answer 13 May 2013   license: CPOL
Right approach is just the opposite: any technique based on any assumptions on the order of loading of DLLs should be considered as incorrect and never be used. It would abuse and sabotage the process of software development, as well as the quality and reliability of final results.Chances...
Answer 13 May 2013   license: CPOL
Did you try the /DELAYLOAD[^] linker option in Visual studio?you can put your DisplayTT in this list.Check here[^] for more info on delayed loading.I hope this helps
Question 13 May 2013   license: CPOL
I use vs2008,develop a no-mfc regular win32- Dll(named DisplayTT.Dll) , which used QT library ;I also have a console32 program to use that DLL, they all use windows standard library and Use Multi-Byte Character Set.compile and link are both OK.But when I Run it with F5 in vs2008, It will...
Answer 13 May 2013   license: CPOL
Whilst I have never tried to directly host a page in the canvas control, I can confirm that you can host it in a Frame control sitting on the canvas control. Then set the source of the Frame control to show the Page control. Please see below: Source="ChildPageView.xaml" ...
Question 13 May 2013   license: CPOL
Please clarify whether the Canvas control can hold a Xaml page content (can we load Xaml into Canvas dynamically by reading the Xaml page?) Thanks.
Question 12 May 2013   license: CPOL
I had been working on a Server Client aplication where Server is going to service(sendto + receivefrom)'x' number of Clients at a time. For this purpose, I have created 'x' number of threads on Server side so that each thread is dadicated to one single client. Inside each thread there is a...
Answer 12 May 2013   license: CPOL
I think that using threads with blocking sockets instead of asynchronous API is much better. In most cases, communication is sequential in its nature and the flow of operations is logically independent from other threads. Therefore, using a separate thread for each communication channel (in case...
Answer 12 May 2013   license: CPOL
This is not only a good practice, it's a must. I would rather like to have "Remove unused references", too. You should always rigorously remove everything unused and take it as one of the most important engineering principles, in all branches of engineering, not only software.—SA
Answer 12 May 2013   license: CPOL
Yes, it is.If you perform code analysis, microsoft would show it as a warning if you have any unused warnings.Why use anything which is not in use?
Question 12 May 2013   license: CPOL
Hi Everyone, Removing Unused Usings in Visual Studio is a good practice? Any drawbacks of removing unused Usings?
Article 12 May 2013   license: CPOL
Create a simple cms project starting with bootstrap based layout
Article 12 May 2013   license: CPOL
A site for managing and delivering virtual conferences - complete with embedded live streaming and chat.
Question 12 May 2013   license: CPOL
How do I deal with the error: The remote server returned an error: (500) Internal Server Error. ? When downloading web page sourceError: The remote server returned an error: (500) Internal Server Error.Sometimes the page source request fails and I get the above error, how do I check for...
Catalog 12 May 2013   license: Commercial
Unsurpassed Documentation Comment generation and updating for C#, Visual Basic, C++/CLI, C++, C, Java and UnrealScript code. Keep your comments readable and in sync with the code with a minimum of effort. Plus other coding utilities.
Answer 12 May 2013   license: CPOL
Following article should help/guide you: Creating an MSI Package for C# Windows Application Using a Visual Studio Setup Project[^]
Catalog 11 May 2013   license: Limited Time Trial
IncrediBuild is an easy-to-use platform for accelerating Windows-based processes through advanced Grid Computing technology. IncrediBuild speeds up Visual Studio and make based code builds as well as data builds, scripts and applications.
Article 11 May 2013   license: CPOL
Indepth detail of how to utilize the trail period of windows Azure
Question 11 May 2013   license: CPOL
I have an application in visual studio. In that application i have an .txt/.xml file which stores some data(we can say i have used file instead of database to store data) which is needed for application while running. File is stored/created in debug folder. In my application it is working...
Tip/Trick 10 May 2013   license: CPOL
Learn to store/read data from Windows 8 app and available file storage options for Win8 apps.
Answer 10 May 2013   license: CPOL
You may have a look at: social.msdn.microsoft.com: 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine[^].CheersAndi
Question 10 May 2013   license: CPOL
I have created a Windows Forms application in VS 2008 on 32 bit XP machine. I have used Provider = 'Microsoft.Jet.OLEDB.4.0' in my application.When Published and ran the published code on a 64 bit Windows 7 machine (which do not have VS installed on it), I encountered following error:The...
Answer 10 May 2013   license: CPOL
very simple:string browserSelextedText = webKitBrowser1.SelectedText;
Question 10 May 2013   license: CPOL
how can i get the selected text of a web page using webKitBrowser? here is the old code of the default browser:IHTMLDocument2 htmlDocument = webBrowser1.Document.DomDocument as IHTMLDocument2;IHTMLSelectionObject currentSelection = htmlDocument.selection; if...
Answer 10 May 2013   license: CPOL
No, this is not how MySQL and other SQL servers are designed. You need to install it on the target computer to have your application working, period. There is no such concept as "embedding".—SA
Article 10 May 2013   license: CPOL
Tutorial showing how to build an iOS or Android app using Azure Mobile Services with HTML5 and JavaScript in Visual Studio.
Question 10 May 2013   license: CPOL
Hi. I'm really new to the database-thing. I'm trying to build an app using C# in VS 2010 that requires a DBMS be held inside the app not like the usual having connection to the outside the project. I mean when I want to pass the published app to a person I don't want to make him install MySQL...
Answer 10 May 2013   license: CPOL
Try This ... function isNumberic(evt) { var charCode = (evt.which) ? evt.which : event.keyCode if (charCode > 31 && (charCode 57)) return false; return true; ...
Answer 10 May 2013   license: CPOL
Use Masked edit Ajax Toolkit, go through this link , you'll know how to use ithttp://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/MaskedEdit/MaskedEdit.aspx[^]
Answer 10 May 2013   license: CPOL
See http://msdn.microsoft.com/en-us/library/windows/desktop/ms741540(v=vs.85).aspx[^] for a complete description of how these events are generated and consumed.
Question 9 May 2013   license: CPOL
I am working on newtwork event based socket application. When client has sent some data and there is something to be read on the socket, FD_READ network event is generated.Now according to my understanding, when server wants to write over the socket, there must be an event generated i.e....
Answer 9 May 2013   license: CPOL
you should try it,register it on page-]]>then use it. i think your problem will be solved. TargetControlID="txtEmpNo">
Article 9 May 2013   license: CPOL
Stream and play TCP Audio data from Microphone (VoIP)
Answer 9 May 2013   license: CPOL
These will help you..http://www.microsoft.com/en-us/download/details.aspx?id=23903[^]http://msdn.microsoft.com/en-us/magazine/dd453008.aspx[^]http://stackoverflow.com/questions/9367221/net-3-5-chart-controls-disabled[^]
Tip/Trick 9 May 2013   license: CPOL
Different methods to pass value between pages in ASP.NET
Answer 9 May 2013   license: CPOL
GetFiles does not return a =single file value - it returns an array of full paths to all the matching strings, even if there is only a single file that matches the specifications given.So you need to always hold the return value in an array of strings, and you should always check that at least...
Answer 9 May 2013   license: CPOL
Not too difficult after a quick Google[^].
Question 9 May 2013   license: CPOL
I would like to add mschart contro to visual studion 2008 can anyody help
Answer 8 May 2013   license: CPOL
You didn't bother to close the file, did you?Call fclose(fpSend); when you've done with it (before returning from the WndProc).
Question 8 May 2013   license: CPOL
I am trying to send a text file at a socket after every 10ms. The code works fine and keeps on sending the text file over the socket after an interval of 10ms. But after some period of time (like after 3-4 minutes), fopen() fils (though fopen() works fine for some duration) and I get an error...
Question 8 May 2013   license: CPOL
My following code is compiled successfully and runs perfectly for sometime handling 40 clients but after sometime, it gives an error "Debug Assertiion Failed expression: (_osfile(fh) & fopen)".I searched on internet and found a solution:Project + Properties, Configuration properties,...
Question 8 May 2013   license: CPOL
I have build an asp.net application which have crystal reports. Now I want to publish this application to the web server can anyone help me how to publish application with crystal report to the web. The steps I followed so far as followsBuild menu --> Publish --> publish method=File System and...
Answer 8 May 2013   license: CPOL
Tryhttp://weblogs.asp.net/guybarrette/archive/2008/04/24/how-to-deploy-the-crystal-reports-2008-basic-runtime.aspx[^]http://scn.sap.com/thread/2051597[^]http://msdn.microsoft.com/en-IN/library/aa287928%28v=vs.71%29.aspx[^]
Answer 8 May 2013   license: CPOL
Use a RegularExpression validator and use this: ^[0-9]{1,7}$ as your regular expression. Then you can change the error message to whatever you want.
Answer 8 May 2013   license: CPOL
Try using the Masked Edit Control[^] from the ASP.NET AJAX Control Toolkit.
Question 8 May 2013   license: CPOL
I have created a a web form that has text box called 'txtEmpNo'. At that text box I only want to enter numbers. In other hand I want to restrict the content to numbers when enter A - Z that text box should not allow to do that!I use C#.Net with ASP.NetHow am going to solve that? I...
Answer 8 May 2013   license: CPOL
Ok guys I have successfully abled to use JQuery http://jquery.com/[^] so the problem was solved ! Thanks for the help anyway!

Page 1 of 296
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 13 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid