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


Tag filtered by:  VS2008 [x]
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.
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.
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...
Article 2 May 2013   license: CPOL
Imagine connecting church worship attenders with real-time content.
Answer 2 May 2013   license: CPOL
@ Dave Kreskowiak....I hv created a module for connection string in which i have created a sub named connection. i call this sub wherever i need to call the connectionstring and con.open() and i directly proceed to write sqlquery. So are u suggesting me to explicitly define a connection string...
Answer 2 May 2013   license: CPOL
You're getting yourself in trouble by trying to reuse a connection. Don't. What you did was try to run 2 readers on the same connection, but one after the other. When you closes the first reader, it also closed the connection, preventing you from running the second reader on it.You're...
Question 2 May 2013   license: CPOL
I get this error when i run my vb.net program. I am unable to understand what causes this error.The error points to dr1= cmd2.executereader in line no 113.This is my coding. Private Sub cmbstudentid_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As...
Tip/Trick 2 May 2013   license: CPOL
Visual Studio comes with seven refactoring options as explained here.
Question 2 May 2013   license: CPOL
Hello, I am trying to port this code from vc6 to vc2008Here is my code with errors:http://sourceforge.net/projects/thief/files/thief-source/[
Question 30 Apr 2013   license: CPOL
I want to capture image from web cam without showing vedio display box.I am using avicap32.dll.When I call capDriverConnect(hMyWindow,index) it shows dialog box with capturing devices.I already fill combo box with capturing devices.my code is HWND InitDevice(HWND m_hWnd,int w,int...
Article 26 Apr 2013   license: MIT
Reflexil is an assembly editor and runs as a plug-in for Reflector or JustDecompile. Reflexil is able to manipulate IL code and save the modified assemblies to disk. Reflexil also supports "on-the-fly" C#/VB.NET code injection.
Article 24 Apr 2013   license: CPOL
Plays AVI files using Microsoft's DirectX.AudioVideoPlayback.
Tip/Trick 19 Apr 2013   license: CPOL
Re-sizing images to equalize the width & height
Answer 18 Apr 2013   license: CPOL
I installed a virtual machine with XP 32 bit on my Win7 64 bit. That was the easiest and the most quick way for me!
Answer 17 Apr 2013   license: CPOL
look this exampleWe can implement auto attach database just use the connection string following.1) Add a folder named ”DB” to the project, and copy the database file into it after you detach it from your sql server.2) Change your connection string like this: ...
Answer 16 Apr 2013   license: CPOL
USE Visual Studio Windows Application Setup ProjectTake a look here : Visual Studio Windows Application Setup Project[^]
Question 16 Apr 2013   license: CPOL
Hello all, I have created a project in vs 2008 with sql server 2008 as database.Now i want to make a setup file(exe), which can be installed on any computer.Please help me how to do the same.
Answer 15 Apr 2013   license: CPOL
copy the shortcut of exe to user's startup folder elseif you have created set up of project then in setup project add new folder of startup folder and add shortcut of exe in it
Question 15 Apr 2013   license: CPOL
how to get a login page by c# right after booting?
Answer 11 Apr 2013   license: CPOL
Steps to do:1) Add ContextMenuStrip (Name: ContextMenuStrip1)2) Add to contextMenuStrip ToolStripTextBox (Name: ToolStripTextBox1)3) Add below code: private void toolStripTextBox1_KeyUp(object sender, KeyEventArgs e) { ToolStripTextBox tsb =...
Catalog 11 Apr 2013   license: Fully Function Evaluation version
Thousands of development teams and millions of end users trust in the multiple award winning report generator List & Label. Since 1992 customers worldwide value the fast and scalable performance and the royalty free report designer.
Answer 10 Apr 2013   license: CPOL
public fillCurrentCityList (){CurrentCityList = new List(); string tt1 = CurrStateIDcmb.SelectedValue.ToString(); string str1 = "Select CityName from mstCity where StateId = (Select StateId from mstState where StateName =@tt1)"; SqlConnection cn2 =...
Question 10 Apr 2013   license: CPOL
I got a tree view And i want the user to re sequence the tree nodes as he wishes .I could implement drag and drop but the no of nodes go above 600 which is impossible to drag and drop .So i plan to Implement a context menu right click on node which asks the user to specify the node...
Question 10 Apr 2013   license: CPOL
I want to know that when I type a first character in combo box it should display all item which are start that character and the character remains in combo box text edit.xmlns:myControl="clr-namespace:Enrollment.Controls"
Answer 9 Apr 2013   license: CPOL
Please see these examples:1. Automatically Filtering a ComboBox in WPF [^]2. A Reusable WPF Autocomplete TextBox [^]
Catalog 9 Apr 2013   license: Commercial
PVS-Studio is a static code analyzer for C/C++ (Visual Studio 2012, 2010, 2008, 2005 and Embarcadero RAD Studio XE3 Update 1, XE3, XE2, XE, 2010, 2009) with a simple licensing and pricing policies which is easy to install and use without need to deploy a complex maintenance environment.
Answer 5 Apr 2013   license: CPOL
I have solved from this ref. linkhttp://www.vbforums.com/showthread.php?541057-RESOLVED-add-handler-with-button-click-in-flowlayoutpanel[^]
Answer 5 Apr 2013   license: CPOL
It means that the assembly or executable module being built on your project is supposed to be an application, which always requires the definition of the entry point, a function to be called when the application is loaded. By some reason, it is missing.Please see:...
Question 5 Apr 2013   license: CPOL
Hello there :)how can i solve this error:fatal error LNK1561: entry point must be definedand i need a grant visual studio 2008 professional edittion please :)
Question 5 Apr 2013   license: CPOL
Hi All,I am using vb.net,vs2008 window form application.I am using "FlowLayoutPanel Control" in my window form application.this control have displayed with multiple images. i want to do that click on each image after that image display in other window form. how to use selected index or...
Question 4 Apr 2013   license: CPOL
I have staff module and agent module ... In staff modude i have added information abt agent in member table and in staff collection i have added amount with amount,agent name, agent id etc details with date wise in monthly collection table...Now when i login to agent module if i select two...
Answer 3 Apr 2013   license: CPOL
Actually I was inserting the empty byte arrayNow insert code is Bitmap OriginalImage = new Bitmap(LiveImage.Image, LiveImage.Width, LiveImage.Height); Bitmap _img = new Bitmap(cropWidth, cropHeight); Graphics g = Graphics.FromImage(_img); ...
Question 3 Apr 2013   license: CPOL
I want to set image on picture control in wpf.private void button7_Click(object sender, RoutedEventArgs e) { byte[] bitmapimage; System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection(); conn.ConnectionString =...
Answer 2 Apr 2013   license: CPOL
HiBelow article might solve your problem.http://stackoverflow.com/questions/9564174/convert-byte-array-to-image-in-wpf[^]
Answer 2 Apr 2013   license: CPOL
Since you moved from a 32 bit machine to 64 bit machine, you need to upgrade most of your apps from 32 to 64 bit as well. This includes the 32 bit winsock library. You will probably find other things needing upgrade as well...
Answer 1 Apr 2013   license: CPOL
Hi,Did you try to link the ws2_32.lib file(in your application dependency settings) in your 64 bit machine ?
Question 1 Apr 2013   license: CPOL
Hello,My computer has been upgraded from WinXP 32-bit to Win7 64-bit and VS2008 was reinstalled.Unfortunately, I can't build my C++ project using Winsock anymore! :-(ws2_32.lib reference is typed in "linker/inputs/dependencies but" I get a link error!Your help is welcome.Regards.
Article 31 Mar 2013   license: CPOL
MailMergeLib is a SMTP mail client library. It makes use of .NET System.Net.Mail and provides comfortable mail merge capabilities. MailMergeLib corrects a number of the most annoying bugs and RFC violations that .NET 2.0 to .NET 4.0 suffer from.
Article 29 Mar 2013   license: CPOL
Goal: Describe how asynchronous or non-blocking TCP code works
Answer 27 Mar 2013   license: CPOL
Try working using this - Google MP3 Player[^]Implement the playlist feature and use javascript to work the player on the client side.
Question 27 Mar 2013   license: CPOL
i need to play mp3 file in asp.net,c# And i also try http://www.codeproject.com/aspnet/MP3PlayerControl.asp[^] but it not work for me.i want to play 1000 of mp3 with play list and above link code not suite for meplease help me .
Catalog 27 Mar 2013   license: Fully Function Evaluation version
Power systems, wiring diagrams, distribution maps, geographic wiring diagram, the power system configuration and simulation, power dispatch, automatic control, C/C ++ and DELPHI and .NET, and web application examples and , 100% VC++ Source Code is Shipped.
Tip/Trick 27 Mar 2013   license: CPOL
Easy to use class for downloading, uploading, and other FTP commands.
Article 26 Mar 2013   license: CPL
How to create an animating glass button using only GDI+ (and not using WPF)
Answer 24 Mar 2013   license: CPOL
It is not only biWidth and biHeight necessary to set for the resolution change.In additionally to parameters which require to change (this in case you uses the format which you get previously) you should set the biSizeImage = biWidth * biHeight * biBitCount / 8.Note: you can't set the...
Question 24 Mar 2013   license: CPOL
I want to set resolution of web cam.My code is[StructLayout(LayoutKind.Sequential)]public struct BITMAPINFOHEADER{public uint biSize;public int biWidth;public int biHeight;public ushort biPlanes;public ushort biBitCount;public uint biCompression;public uint...
Answer 21 Mar 2013   license: CPOL
avicap32.dll does not has capGetVideoFormat definition.

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


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