Software Development Network Logo
  • Visual C++
  • SQL Server
  • .NET Development
  • VS Team System
  • Windows Vista
  • Visual C#
  • Visual Basic
  • SharePoint Products
  • Visual Studio
  • Smart Devicet
  • Windows Forms
  • Audio and Video
  • Microsoft ISV
  • IE Development
  • Visual FoxPro

Software Development Network >> vgvKarthik's Q&A profile

vgvKarthik

Member List

Ana Maria Bisbe
Aleniko29139
nils49
Dimitry
Alexander_H
peng_taoo
Mateusz Rajca
David_navigator
Pradeep Gupta
Steven Syfuhs
Devin
Keith Newton
matt01
ReneeC
Ananda Ganesh
Murre
PQSIK
ricky1980
Ademaure
SCRunner
Only Title

vgvKarthik's Q&A profile

  • Visual C++ LINK ERROR _errno

    hi, i've got a linker error :( my project is /MTD additionnal dependency " libcp.lib" ------ Build started: Project: romustrike, Configuration: Debug Win32 ------ Linking... Searching libraries Searching C:\Program Files\Microsoft DirectX SDK (December 2006)\Lib\x86\Dxerr8.lib: Searching C:\Program Files\Microsoft DirectX SDK (December 2006)\Lib\x86\dplayx.lib: Searching C:\Program Files\Microsoft DirectX SDK (December 2006)\Lib\x86\dxguid.lib: Searching C:\Program Files\Microsoft Platform SDK\Lib\winmm.lib: Searching C:\Program Files\Microsoft Platform SDK\Lib\wininet.lib: Searching C:\Program Files\Microsoft DirectX SDK (December 2006)\Lib\x86\dsound.lib: Searching C:\Program Files\Microsoft Platform SDK\Lib\use ...Show All

  • SQL Server DT_GUID to DT_WSTR yields braces around uniqueidentifier

    I'm using a Lookup component to add a DT_GUID column named cat_id to a data flow, which is used in a downstream Derived Column component to add a DT_WSTR column named value. The DC expression simply casts the uniqueidentifier to the desired type: (DT_WSTR, 434)cat_id But when the values are persisted in the destination table's nvarchar(434) column, they have braces around them, e.g. {F475DB7F-5CB0-4EE1-9BF2-758C77D7A6D7} What is introducing those braces, and what do I need to do to prevent it You may remove the braces by using SUBSTRING function in the DC expression: http://msdn2.microsoft.com/en-us/library/ms137541.aspx SUBSTRING((DT_WSTR, 434)cat_id, 1, 40) (if I remember GUID length, maybe the last param should be 3 ...Show All

  • Visual Studio Express Editions Install vc++ 6.0 on top of vc++ 2005 express?

    If I install ms vc++ 6.0 pro. ed. (academic price) on top of vc++ 2005 express: will there be a vc++ benefit of functionality or vc++ loss of functionality If I should install and use ms vc++ 6.0 pro. ed. (academic price), should I uninstall anything first, before installing ms vc++ 6.0 pro. ed. (academic price) I did install PSDK and enable MFC with the vc++ express and it works well. Thank you. B. John For one thing the C++ compiler that comes in VC++ 6.0 is old and tired and does not care too much about standards so you should give it a rest. VC++ 2005 is much better in this respect. When it comes to the IDE itself there may be some features in VC++ 6.0 that are missing from VC++ 2005 Express (because you have ...Show All

  • Windows Live Developer Forums Contacts Control now available in 9 languages

    We've just rolled out an update to the Windows Live Contacts control, adding language support for German, Dutch, Italian, Spanish, Korean, and Chinese! That's on top of the English, French, and Japanese we hacked together by hand earlier. If my fingers are correct, that's 9 languages covering several of the largest populations of web users worldwide. You can see them in action in the contacts control list view: http://dev.live.com/mashups/trycontactscontrol/ and tile view: http://dev.live.com/mashups/trypresencecontrol/ Select a language from the dropdown list in the middle of the test page and the control will reload with those strings. You can even switch languages after you've signed in! You specify the language or regional m ...Show All

  • Visual C++ Pls Help. Urgent!!

    Hi Everyone, Currently I having a problem on pass vb string into c dll. I sucessfully pass the string to the c dll and return the whole string with the codes below: c code to create dll char *ccDecrypt( char *str, char *ostr ){ return str ; } vb code Private Declare Function ccDecrypt _ Lib "C:\Documents and Settings\fpca\Desktop\dll\TestDLL\Release\TestDLL.dll" _ (ByRef str As String, _ ByRef ostr As String) As String Private Sub Command1_Click() Dim deCard As String txtDe.Text = ccDecrypt(txtEn.Text, deCard) End Sub But when i change the str in the c code to str[0], it throw me error... can anyone suggest how to solve this problem I fo ...Show All

  • Visual Studio vs2005 sp1 install fails

    On my computer (win2003) I get next message: The installation source for this product is not available. Verify that the source exists and that you can access it. On other computers it works... What can I do bye Damijan I am running Win2003 with SP1 and I am also having trouble loading the VS2005 SP1 with the Error 1718. Did anybody get past this Thanks in advance, Bob Hanson ...Show All

  • .NET Development Pass Property as a Reference Type

    Does anyone know if it is possible to pass the actual property of a class into a method instead of the value This is what I am trying to do... You have a basic class... public class Car { private int _id; private int _doors; public Car(int id, int doors) { _id = id; _doors = doors; } public int Doors { get { return _id; } } } Then I have a generic method as such... public List<T> GetWhereProperty<T>(PropertyInfo prop) { return a list of T where the prop name given is equal to the value in prop } I would like to call it like such... Car theCar = new Car(0, 4); List<Car> cars = GetWhereProperty<Car>(theCar.Doors); Basically, I want to be able to get the property name without making the user(developer ...Show All

  • Windows Forms Grouping in Listview

    Hi, I developed a C# WinForms application using Visusal Studio 2005 Professional. I added a listview control. I added two columns in design time. Listview type is details. I want to implement grouping in listview. My code is not working; even it is showing a blank lisview for ( int a = 0; a < DataSet .Tables[ "Table" ].Rows.Count; a++) { string hd = Convert .ToString( DataSet .Tables[ "Table" ].Rows .ItemArray[0]); ListViewGroup gp = new ListViewGroup (); gp.Header = hd; gp.Name = hd; lstTdaySch.Groups.Add(gp); lstTdaySch.Groups[gp.Name].Items.Add( new ListViewItem ( Convert .ToString( DataSet .Tables[ "Table" ].Rows .ItemArray[0]),gp.Name)); } Jus ...Show All

  • .NET Development Syntax Error

    I'm trying to write a database application in Visual Studio 2005 that inserts data into a database from a VB form, the connect and insert code are below: conBooking = New OleDbConnection( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=booking.mdb" ) Dim SQL As String SQL = "INSERT INTO tblBooking (Cust_Name, Telephone_No, Going_From, Going_To, Additional_Requirements, Booking_Date, Booking_Time, No_of_Passengers) VALUES" SQL = SQL & "(" & strName & ", " & strPhone & ", " & strFrom & ", " & strTo & ", " & strRequirements & ", " & strDate & ", " & strTime & ...Show All

  • Audio and Video Development Side Scrolling Chapter Menu

    I'm trying to create a side scrolling chapter menu and was wondering if anyone has solved this riddle script side. Basically I want to scroll through chapter images using left and right arrow buttons, so the menu would start like this: < #1 #2 #3 > Then by clicking on the right arrow button it would then look like this: < #4 #5 #6 > And so on. The version I have built simply replaces the images (#1 replaced with #4, #2 replaced with #5 and so on). But I would love to make them scroll so the new images come in as if they are all on the track moving left and right. I did try to solve the problem be creating on long block of all the chapter images, masked behind a div that was only big enough to show th ...Show All

  • SQL Server SQL2005 Performance problem with updating subscribers with identities

    Since we've upgraded to 2005 we've had major performance problems with updating subscriber tables that contain identity PK columns set to manual or auto range management. If a table has identity range management set to 'None' (the "old" 2000 way), the peformance is fine. Below are sample tables: CREATE TABLE [dbo].[ID_RANGE_TEST]( [ID] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL, [DATA] [int] NULL CONSTRAINT [PK_ID_RANGE_TEST] PRIMARY KEY CLUSTERED ( [ID] ASC )WITH (PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF) ON [PRIMARY] ) ON [PRIMARY] GO CREATE TABLE [dbo].[ID_NONE_TEST]( [ID] [int] IDENTITY(1,1) NOT NULL, [DATA] [int] NULL CONSTRAINT [PK_ID_NONE_TEST] PRIMARY KEY CLUSTERED ( [ID] ASC )WITH (PAD_INDEX = OFF, IGNORE_DUP_KE ...Show All

  • Windows Live Developer Forums map.Find and longitude/latitude problems

    Hi, I have problems using the Virtual Earth Find function. I am trying to first locate a position using the map.Find() method, and then get the longitude and latitude for that position. The problem is that if I call the map.find wih the first parameter as ' ', the onFindResults function does not get called. Further, a map.getCenter() call right after the map.Find call returns the wrong coordinates. A click on the "locate" button, how ever, returns the correct coordinates. How can a output the correct coordinated without the need for the button Or, how can I get the onFindResults function to be called when the map.Find method is finished My problem is show in the example below. The alert box show the wrong coordintes the first t ...Show All

  • SQL Server Long wait times for simple SQL on 2005

    I have an existing application deployed on many SQL 2000 servers running without issue. We installed SQL 2005 (8 way DualCore) and the most simple trivial SQL statements are taking an extreme amount of time (e.g. an identical query in 2000 took 10 ms is taking a couple of minutes in 2005). The data in the tables being queried are very small (low row count < 400; and low row size < 1k). When profiling 2005 we see the connection going into a status of 'suspended' with a wait type of 'ASYNC_NETWORK_IO'. There just simply is not enough data being retrieved for a lag to occur returning data to the client. Has anyone seen anything like this Any thoughts I haven't seen anything relating to NETWORK_IO, ...Show All

  • Visual Basic How to get DataGridView into Database

    How I get this into Database Thank you. Public Class Form1 Dim PocetRiadkov As Integer Private Sub Table1BindingNavigatorSaveItem_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Me .Validate() Me .Table1BindingSource.EndEdit() Me .Table1TableAdapter.Update( Me .Database1DataSet.Table1) End Sub Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'TODO: This line of code loads data into the 'Database1DataSet.Table1' table. You can move, or remove it, as needed. Me .Table1TableAdapter.Fill( Me .Database1DataSet.Table1) End Sub Private Sub Button1_Click( ByVal sender As System.Obj ...Show All

  • SQL Server Drill Through Reports

    Any way to have the drill through report open in a new window on the web ...Show All

©2008 Software Development Network