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

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

Hiral

Member List

DonRajah
dmb13
Jamie Thomson
heartly4u
kingtaj
Noam309
Pon t3h pony
Michael Ruck
TheGeoff
PublicError
adajos
Carlos Sanchez
KnobCreek
R0nda
snowmt
nbn
hrubesh
sticksnap
Muricy
Sooraj Kesav
Only Title

Hiral's Q&A profile

  • SQL Server rdl or rdlc for custom reports

    Are custom reports going to carry on using the rdlc extension. If so is the rdlc extension going to be associated with the reporting project designer. Currently rdlc files only show up the designer and not the data or preview tabs in BIDS. Paul's documentation blog post refers to rdl rather than rdlc files. If you don't want to rename your report files to .RDLC for the November CTP, you can type "*.RDL" into the custom reports dialog and hit enter. The report will load just fine... however, any subsequent drilldown actions to other reports will probably default to a .RDLC extension instead of .RDL. Paul A. Mestemaker II Program Manager Microsoft SQL Server Manageability http://blogs.msdn.com/sqlrem/ ...Show All

  • Customer Care Framework Error while opening Admin Console through MMC.

    I get the foll. error when I try to connect to the CCF IIS server in MMC to configure Admin Console. I get the same error while debugging Agent Desktop. I verified that 'Microsoft.Ccf.Common dll is present in GAC. Please help/advice on this issue. System.TypeInitializationException: The type initializer for 'Microsoft.Ccf.Common.Logging.Logging' threw an exception. ---> System.TypeInitializationException: The type initializer for 'Microsoft.Ccf.Common.Listeners.Configuration.ListenerConfiguration' threw an exception. ---> System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Ccf.Common, Version=2.6.0.0, Culture=neutral, PublicKeyToken=4f00c1aa5320a4d9' or one of its dependencies. The system cannot find the f ...Show All

  • SQL Server Calling XML web service from a reporting services report (RDL)

    Hi, I wanted to display data returned by xml webservice in a sql reporting service report(RDL). How I can implement the same, Please let me know the steps. Thanks, Anees Check this: http://msdn.microsoft.com/library/en-us/dnsql90/html/RepServXMLDS.asp ...Show All

  • Visual Studio Success! Setup.exe Error in VS 2005

    I'm having problems installing Visual Studio 2005 on a system that already has VS .NET 2003 on it. I have read a number of posts here but nothing I've tried has resolved the problem. Any help would be appreciated. I've tried this install from both the MSDN CD's (2 disc set) and an ISO image on DVD. Installs from both media failed. The setup.exe installs all of the components including the Framework 2.0 and the Document Explorer successfully, but when it attempts to install the actual Visual Studio 2005 component it fails. I have performed a clean boot (XP SP2), cleaned out the users temp directory, ran "installer" and removed any reference to Visual Studio 2005, and ran the "uninstall tool" for beta's (did not find a ...Show All

  • Windows Forms Eating MouseWheel Events

    I have a PixtureBox placed in a panel with AutoScroll enabled. I use the mouse wheel to zoom in and out of the image. I was able to add the mousewheel event code and this is working just fine but the image not only zooms, it scrolls with the mouse wheel as well. I would rather not have the image scoll due to the mouse wheel. I have seen examples for C# to use WndProc() to capture the WM_MOUSEWHEEL msg, but I can't seem to get these to port to C++. I have tried the following (Based on the only C++ example I could find)... void WndProc(Message* m) { const int WM_MOUSEWHEEL = 0x020A; switch (m->Msg) { case WM_MOUSEWHEEL: //TODO: Image Zoom Code Goes here... break ; } Form::WndProc(m); } This giv ...Show All

  • Visual C++ Counting CPUs

    Hello. It seems to me I found a bug in kernel32.lib. I wrote a program that prints the number of CPUs in the system. It uses windows.h and its appropriate methods ( GetSystemInfo function, SYSTEM_INFO struct and its dwNumberOfProcessors field ). I have dual-core AMD64 processor (3800+) and this program works fine (prints "2") in win32 and x64 releases. But then I decided to get rid of windows.h include. I declared all needed functions, structs, typedefs and defines in my source code to link properly with kernel32.lib. This idea came to me because I wanted my source code to be compiled with all editions of Visual Studio 2005, even VC++ Express that don't have windows.h by default. In this particular test I used Visual St ...Show All

  • .NET Development Connecting vb.net to Access form

    I want to be able to connect vb.net to an access db I have variables with values from vb.net that I need to use I created a form in access of textboxes, all individually labeled. is there a way I can connect to Access and be able to fill this form's fields and "hit" the submit button to populate this DB Thanks in advance!! Not sure exactly what you're trying to do. Do you just want to open up the database in Microsoft Access from Visual Basic.NET and then enter all the data through the Access Form Or are you expecting the Visual Basic app to enter all the information in the Microsoft Access Form and then save the data ...Show All

  • Software Development for Windows Vista CARDSPACE ISSUE WITH JULY CTP & IE 7.0 Beta 3

    I have hosted web application supporing "cardspace" locally on machine having july ctp & ie 7.0 beta 3 (IE: 7.0 v7.0.5450.4 ). on WIN 2003 & iis 6.0. The problem I am facing here is that during Login Process my web application does not popup the CARDSPACE selection window(Code for popup and displaying CARDSPACE is correct). I am able to access http://sandbox.netfx3.com/ and able to sign in using CARDSPACE.( here windows CARDSPACE is automatically popup). I am guessing the problem here is with my installation ....... or Configuration. for hosting web application having "CARD SPACE" facility required anything other than july ctp, ie 7.0 beta 3 or any configuration should be changed for IIS gu ...Show All

  • Visual C++ i am using a queue..i can push the values into the queue but while retriving the values,they are empty

    i am using a queue..i can push the values into the queue but while retriving the values,they are empty the code i am using is placed below struct SRace { int n; int j; }; void CQueeDlg::test() { typedef queue<SRace*> SQueue; SQueue sque;//This is the queue SRace *oRace=new SRace;//This is a structure for(int i=0;i<2;i++) { oRace->j=i; oRace->n=i+1; sque.push(oRace); } oRace->j=0; oRace->n=0; oRace=sque.front(); delete oRace; } plz help me The problem is with your code. You are just keeping a pointer inside the queue. And what all modifications you have done at the location of the pointer, it will reflect in the items added with the same memory Here ...Show All

  • SQL Server return the last 10 dates from a table

    Hi all, I am trying to create to a store procedure that manages to return the last 10 dates from a table i know there is a TOP keyword that return the first rows but is there a keyword that returns the last rows instead Matt Hi Matt, You use TOP for this as well, but you order DESCending: select top 10 crdate from sysobjects order by crdate DESC Cheers, Rob ...Show All

  • Windows Forms Really stupid question from frustrated VB4 programmer

    I've been using VB4 for 10 years. My new PC won't run VB4 - too much RAM - so I'm trying to rewrite a VB4 program that pulls data off an Access database. In VB4 I could pull a single piece of data off my database with "string = Data1.Recordset(column number)". I could navigate with "Data1.Recordset.MoveNext" and similar. In VBS I have built a dataset and populated it. 'Me.ArchetypesTableAdapter.Fill(Me.Npc3DataSet.Archetypes)' I can navigate with "Archetypes.BindingSource.MoveNext", but when I try to pull data off the dataset I get a variety of errors. The information on VBS tells me a lot about how to bind data to appear on the form - but I don't want that. I just want to read the contents of a cell into a s ...Show All

  • Visual Basic "*" Question

    Hi again everyone, I am back once again working on a new project. For some reason I cant seem to find the info I need so, I am back here. :) Anyways, my project... I made a text file parser... it basically opens a text file of your choice, then it searches the document for any word you specify, afterwards, it places that info in a new textbox that you can save as a new file. What I really need this app for is to parse emails. Since the emails arent the same... just the same domain... I need to be able to use the * as a wildcard. Any info on how to do this would be much appreciated. Thank you in advance, I think the following code will end the project Dim strEmailList As String = "x@a.com,m@b.com,test1@aol.com, ...Show All

  • Visual Studio Team System TF30177: Team Project Creation Failed - Windows Sharepoint Services 2.0 SP2

    I am getting the following error when trying to create a new Team Project. The problem appears to be related to setting up the SharePoint Portal site for the new Team Project. I was able to successfully set up several Team Projects previously. I have searched the message boards and have done the following based on guidence found there: Given NETWORKSERVICE Account permission to access STS_Config_TFS in SQL Server 2005 Run 'stsadm -o upgrade -forceupgrade' Repaired .NET 2.0 Nothing has seemed to work. I have not seen the specific error code (0x81070550) referenced anywhere. Any help would be appreciated. 2007-02-20 12:45:01Z | Module: WssSiteCreator | Thread: 9 | TF30267: Exception: System.Web.Services.Protocols.SoapException: Excepti ...Show All

  • Visual Basic Replace COM xyz.dll with .NET CCW xyz.tlb

    Hi, We need to upgrade an VB 6.0 class library to VB .NET. We have one enterprise COM application which has custom exit through which we can make enterprise application call our class library. As of now when we register the VB6.0 class library our Ent App is able to instantiate VB6 library and working fine. But when I unregister it and then create .NET assembly and register the .NET assembly for COM using REGASM, enterprise app is not able to instantiate this CCW. My question here is how can i exactly replace an COM "abc.dll" with CCW abc.dll so that existing applications which worked fine with COM abc.dll also should work fine with CCW abc.dll. We are completely stuck here. Any help would be greatly appreciated. Upd ...Show All

  • Visual Studio 2008 (Pre-release) Binding XPath=namespace:name

    Hello. I need to databind to an attribute that has a namespace, for example <tagname abc:att="123"/> I tried everything, including XPath="@abc:att" but it doesn't work. how can I do that Thanks! lee d wrote: you should add XmlNamespaceManager from the sdk <XmlNamespaceMappingCollection x:Key="mapping"> <XmlNamespaceMapping Uri="http://purl.org/dc/elements/1.1/" Prefix="dc" /> </XmlNamespaceMappingCollection> <XmlDataProvider Source="http://msdn.microsoft.com/subscriptions/rss.xml" XmlNamespaceManager="{StaticResource mapping}" XPath="rss/channel" x:Key="provider"/&g ...Show All

©2008 Software Development Network