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

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

Sriman

Member List

Chandra_SQL
D--
James2007
Naolin
xshua
GreenStone90
WizMan
WHMoweryJr
Adam Shipp
csLearner
jhikel
CraigInCalifornia
John Hax
wslee
Dr.Pepper
André Scaravelli
TobsTec
ScipBe
wencey
Pockey
Only Title

Sriman's Q&A profile

  • SQL Server Cannot open http://localhost/reports

    Hi Folks, I've just installed SQL Server 2005 Standard Edition with Reporting Services. Via Visual Studio, I am able to create and run reports without an issue, but I am unable to launch the web element of Reporting Services, via http://localhost/reports I get the message "Page cannot be found". I have run the install a second time in the hope of a "repair" but it has made no difference. FYI, from within IIS, I cannot see reference to a website for "reports". Any ideas You may have unchecked the option to configure the server during the install. Try launching the RS 2005 Configuration tool from Start->All Programs->Microsoft SQL Server 2005-> ...Show All

  • Visual Studio 2008 (Pre-release) The Scope of this Forum

    Hi, I wanted to clarify the scope of this forum. It is dedicated to questions specifically about the C++ in Visual Studio Orcas (beta) Release. For general C++ questions or general development questions (unrelated to Microsoft implementation issues or features), please use your favorite general C++ or development forums or newsgroups. For questions specifically about Visual C++ 2005, please use the forums at http://forums.microsoft.com/MSDN/default.aspx ForumGroupID=8&SiteID=1 For questions about other parts of Visual Studio 2005, please use the appropriate newsgroup in the list here: http://forums.microsoft.com/msdn/ For questions about Win32 programming, previous releases of Visual C++ and Visual Studio, please use the MSD ...Show All

  • SQL Server Multi value string parameters

    Hi all I have a multi value drop down list and their values are a string data type. Label      Value Blue        BL Pink        PK If I select more than one values the parameter value is sent as 'BL, PK' The stored procedure has a where clause WHERE theColor IN (@SelectedColor) This does'nt return the expected results from the stored procedure. How do we make the reporting services pass 'BL','PK' instead of 'BL, PK' to the stored procedure How do I make this work Thanks heaps!! If you are passing multiple values from a multi-value select to a store procedure from your report, you will need to use an UDF. C ...Show All

  • SQL Server Attempt to fetch logical page in database failed SQLServer2005SP2

    Hi, I am getting the following exception when i try to ran the J2EE application(deployed on WL9 and sqljdbc 1.1 driver). I am using SQL Server 2005 SP2. and the same application ran just fine with SQL server 2000. I am also getting An inconsistency was detected during an internal operation error some times . All these errors are happening intermittently. I am running a set of Junit tests against this J2EE application. Any help in this is greatly appreciated C aused by: com.microsoft.sqlserver.jdbc.SQLServerException: Attempt to fetch logical page (1:2227) in database 6 failed. It belongs to allocation unit 72057594184335360 not to 72057594217037824. at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(Unknown So ...Show All

  • Software Development for Windows Vista Handling Events.

    At many examples of WF i saw that when a logic is implemented handling an event, the syntax is this: child.Closed += ContinueAt; and not: child.Closed += new EventHandler < ActivityExecutionStatusChangedEventArgs >(ContinueAt); My question is: When i use the first approach it ensures that the execution of the ContinueAt method will be scheduled, meaning that it will be created a new work item, added to the Scheduler Work Queue and executed when appropriate (when called the Dispatch method). If its so, the second approach would cause a break of the WF Runtime normal execution, since the ContinueAt method vould be invoked immediatly after the event was raised, without creating a work item at the Scheduler Work Qu ...Show All

  • Windows Live Developer Forums Windows Live Contacts Control beta v0.2 Released

    Hi, Danny! I want to use "Windows Live Contacts" service in my desktop application - birthday reminder, that is written on VB.NET ( http://yurivolkov.com/yvReminder/index_en.html ). So I'm trying to figure out the easiest way to implement this, using your work (Control itself or its source code... by the way, source code is not commented and looks like obfuscated...) What's your advice about how to do this -- Yuri Hi Yuri, It's possible to display the Windows Live Contacts control in a .NET application by putting an HTML control in your app and pointing it to a URL that hosts the control, but I'm not sure how much information exchange can take place between the JavaScript browser environment i ...Show All

  • Windows Forms How can I Update,Delete,Insert a database ? Using Vb 2005

    Hi I am having dataset with 4 tableadapter(4 tables from the database). What is the easy way to update or add new entry to the database Advanc thanks To updata database, try following 2 ways, hope it works for you. this .Validate(); this .customersBindingSource.EndEdit(); this .customersTableAdapter.Update( this .northwindDataSet.Customers); or something like this: CurrencyManager cm =( CurrencyManager ) this .BindingContext[northwindDataSet, "Customers" ]; cm.EndCurrentEdit(); ...Show All

  • Visual Studio Visual C++ Express "Free Download" says I need CD

    I downloaded and began the installation of Visual C++ express and the .net framework (which I apparently need to install). Whilst installing the .NET framework, the setup prompted me to insert CD 1. As visual C++ express is a free download, I have no idea why this is happening. To be honest I have not used the express editions but following through what people have said - I guess installing the .NET Framework is automatic within the express edition installer however there should be a case where it would detect the framework version and install the appropriate version automatically. you would need to install the SDK, the redistributional package is the .NET Framework runtime components itself I believ ...Show All

  • Visual C# How to store long value in byte array

    I am trying to store a long value in a byte array. How to do it One solution would be to use MemoryStream and BinaryWriter classes like this: byte[] GetArray(long value) { using ( MemoryStream stream = new MemoryStream ()) using ( BinaryWriter writer = new BinaryWriter (stream)) { writer.Write(value); return stream.ToArray(); } } ...Show All

  • Software Development for Windows Vista LoaderLock was detected in Vista

    I just got a new pc with Windows Vista loaded VS2003 and have a program that works in Windows XP it uses Reference DirectX AudioVideoPlayback but in Vista the program does not work, it load, but try to play a mp3 cPlayer = New Audio(File) and cPlayer will = nothing so I loaded Visual Basic Express converted the program and the program loads ok but if I try to play the mp3 file I receive the error message. LoaderLock was detected Message: DLL 'C:\Windows\assembly\GAC\Microsoft.DirectX\1.0.2902.0__31bf3856ad364e35\Microsoft.DirectX.dll' is attempting managed execution inside OS Loader lock. Do not attempt to run managed code inside a DllMain or image initialization function since doing so can cause the application to hang. is attempting m ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3D Playing Cards ?

    How would I approach a 3D representation of a playing card(s) If using a model, would 52 different models be required so that each card has it's own texture Can user primitives (i.e. 2 triangles to make a card shape) have different textures on each side What would be the best method for this Is it possible to use one card, and one texture containing all the cards and the back, then possibly make a shader that takes in a card number parameter that can be used to offset the texture accordingly I am just speculating here but I cant see why it wouldnt work :) ...Show All

  • Visual C++ namespace std - problems

    When I'm creating console application, everything is correct, but when CLR: Windows Forms App I cannot use namespace std. For example this... --------------------------------------- // vec3.cpp : main project file. #include <vector> #include <list> #include <stack> /* ... */ #include "stdafx.h" #include "Form1.h" using namespace vec3; [STAThreadAttribute] int main( array <System::String ^> ^args) { std::vector< int > abc (5); // Enabling Windows XP visual effects before any controls are created Application::EnableVisualStyles(); Application::SetCompatibleTextRenderingDefault( false ); // Create the ...Show All

  • Visual Basic click event triggered by pressing enter

    Can anyone tell me how to trigger my click event by pressing enter while button is in focus. in a simple way you can set the forms AcceptButton property to the button you want to be invoked as the enter key is pressed. then when you press the enter key the button click event is automatically fired when you press the enter key. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Need a PDA or Hendheld with hardware support for Mobile Direct3D

    Hi there, i found in the .NET Compact Framework 2.0 the Microsoft.WindowsMobile.DirectX Assembly. A quik review to the sdk i made a simple 3D application for a Windows Mobile 2005 pda. I can test this with the emulator of the Visual Studio .NET 2005 IDE, but on my Windows Mobile 2003 SE with installed .NET 2.0 i get an exception by the DirectX Assembly. Where in hell i can get a Pocket PC, PDA or Smartphone where i can test Mobile DirectX I found the chips NVidia GForce 5500, Gforce 4800 and a Intel 2700G with 3d capabalities. Does thouse chip run with Mobile DirectX And who manufactor produce a device with that chips Thanks, Dodo502b I think that you should read this article: http://www.mperfect.net/cfMDX/ (Mobile Direc ...Show All

  • Windows Forms Combo clear to refresh not allowed

    Dear All, I have a form when upon loading I fill a combo box based on certain values from the database. So upon doing some process I want to clear my combo. I am tryinng to use cb1.Items.Clear method but that doesnt work. It says that it is link to a datasource which infact I link in the begining when I was populating it. I used the datatable and dataadapter to populate my combo. Any help how to clear my combo Thanks. Could you post your code so that we have some idea of what to suggest to you (because there are several ways of populating the Combo, there will likely be several ways of clearing it as well). ...Show All

©2008 Software Development Network