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

Software Development Network >> Pooja Katiyar's Q&A profile

Pooja Katiyar

Member List

Xythe
Ramesh Jha
Tallone
sourvil
Delphieur
hrubesh
Denvas
Manolis
RNilesh
timheuer
Chris4578
da Vinci
Bartosz Kowalski
Shirvo
Anonomuys
Mitch84095
hammerstein06
Sransom_au
djmIV
Steven Rosenthal
Only Title

Pooja Katiyar's Q&A profile

  • SQL Server why won't this work? select stmt

    select uid, OrderID, Count(OrderID)As DupCnt from OrdDetails group by uid, OrderID having count(OrderID) > 1 this returns no rows, can't I show another column to identify which uid goes with the dups, I did it before and now it doesn't work, probably something silly I'm missing. thx, Kat i thought the UId was the owner of the orders. hehehe. sounds like user id to me. well you should change the name into something meaningful like record_no, indentity_num or something meaningful ...Show All

  • SQL Server Installation problem - can't find startup program

    I installed SQL Server 2005. In the add/remove programs are all the programs visible. But when I use "Start -> All programs -> Microsoft SQL Server 2005", there are only 5 configuration tools, no management studio. What is going wrong Where can I find the executable that start up SQL Server 2005 Hi, you either installed SQL Server Express which does not come with a graphical administration surface (but you can either install the SQL Server Management Express Studio as an add-on or install the SQL Server Express Adavnced Edition from scratch which includes everything) or you deselected the Client tools option for any non-Express edition. The tools for Express can be download from: ...Show All

  • .NET Development Trusted_Connection Problem with VS2005

    I'm sure this is a known problem, but I can't seem to find the fix. My VS2005 app connects to the SQL Server database through web services. If I connect with a connection string that uses userid and password, no problem. But, if I change that to use a Trusted_Connection instead, it won't work. This worked fine when the app was compiled under VS2003, but has not since migrating it to VS2005. Is there some setting I need to tweak somewhere In IIS maybe TIA, Yes, everything is on the same machine. I have two apps running on the same machine, using the same IIS, using the same SQL Server. One is using a 1.1 Web Service, the other is using a 2.0 Web Service. Why does one work while the other does not Same IIS, same SQL Serv ...Show All

  • Visual Studio 2008 (Pre-release) XAML - its purpose

    I'm not sure if I understand what XAML is. Is it supposed to be used for creating UI, like Windows Forms If so, is its purpose to replace Windows Forms altogether What else can XAML be used for XAML is an XML-based declarative markup language suitable for representing nested object hierarchies, such as those of CLR objects. This makes it a good choice for building user interfaces (which are inherently nested and hierachical). This is how Windows Presentation Foundation employs XAML. Windows Workflow on the other hand employs XAML to orchestrate workflows. Windows Forms was built as a managed wrapper over Win32, and is as such limited by what Win32 can do. XAML when used in WPF works to achieve the same goal: building user interfac ...Show All

  • Visual Studio Express Editions Making Webrowser

    Hello everyone,i have a few questions about making an WebBrowser in Visual Basic 2005 Express. Question 1 : I'd like to make an progress bar,but wich codes do i need to add to let it work,and let it only be visible when the page is loading. Question 2: Wich Code is Required to open a new window by clicking on : New Window( in the ToolStrip Menu) I just want it to open a new window of my own browser.(see code) And wich one is needed to let ip open an File( See code 2) Private Sub NewWindowToolStripMenuItem_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NewWindowToolStripMenuItem.Click End Sub Code 2: Private Sub OpenToolStripMenuItem_Click( ByVal sender As System.O ...Show All

  • Smart Device Development Disabling backlight turning on automatically with internet connection

    I am developing an application for windows mobile which synchronizes with a server. If no internet connection is enabled, Windows Mobile connects via GPRS automatically. Unfortunatly there is always a popup message and the backlight is turned on when this happens on Windows PocketPC 2003. How can I avoid this ...Show All

  • SQL Server What tables have extents in FILE X

    Hi How can I find out what tables have extents that are occupieing a certain file I added a file by mistake and want to delete it from a file group but a table has already thrown extents in to it. I would like to identify the tables, back them up, delete them, delete the file and then import them back in Thanks for your help I have already looked at both of those and they do not tell me what files a table resides on. i.e Physical file A, C in FILEGROUP XYZ I want to see an actual map of where a tables extents reside. I was also using backup in the general sense "Taking a backup" not actually using SQL Server backup utility as this doesn't backup individual tables. ...Show All

  • Audio and Video Development Do we have WMVCORE.DLL for x64 applications?

    I'm using WM SDK in my application to generate WMV files. Just now I have got a task to port my application to x64 platform. I wonder if I need a new 64bit version of WMVCORE.DLL (or .lib) If so, where can I get it Thanks. http://www.microsoft.com/downloads/details.aspx FamilyID=d9c6f6e0-dd2b-427e-9787-73312bb62532&displaylang=en You should read this page before installing: http://msdn.microsoft.com/library/en-us/WMFORM11/htm/windowsmediaformat95sdkx64edition.asp It describes some limitations of the x64 version. ---------------------------------------------------------------------------- Mike Wasson, DirectShow SDK Documentation This posting is provided "AS IS" with n ...Show All

  • Visual C++ Building trouble : error LNK1104: cannot open file

    Hi every body, I'am in serious trouble cause i can't find the solution of my problem. I'am trying to convert an .exe into .dll file after i downloaded the source file of the .exe . I inserted the source code into a "MFC AppWizard(dll)" project and compiled it (was ok) and when generating the .dll file (after i mentioned the "Object/library Module" under the "Project/Settings/Link" Menu ) i got this error : Linking... LINK : fatal error LNK1104: cannot open file "C:\dll3\VisioneerDll\twaintest\Debug\twaintest.lib" Error executing link.exe. Creating browse info file... twaintest.dll - 1 error(s), 0 warning(s) with out mentionong this library ( which is not correct cause the librar ...Show All

  • Smart Device Development MouseDown like event in Windows Mobile 5.0 for Poket PC

    Dear All, My application should consists of 1 Button that akts as follows: if user holds the Button pressed during 2 seconds then method pressed() should be executed if user clicks this button then method clicked() should be executed My Problem: If I create a Windows Mobile 5.0 Poket PC then Button object does not have the MouseDown event. I can register and use MouseDown event for the Form object: myForm.MouseDown += new System.Windows.Forms.MouseEventHandler(myForm.Form1_MouseDown); How can I achieve the same for Button public class TimerButton : Control { private bool bPushed; private bool longPress = false ; private int cnt = 0; private ...Show All

  • Visual Studio Team System Every thing is not as pretty when product is put to test in real world.

    I have looked at many posts/Blogs for VSTS and have found some help ful videos etc.. but when it comes to resolving real issues there is'nt much support for the users of VSTS and one thing Mercury excells in doing when they bring some thing to the market they support their product with in the community of users (which is pretty small when it comes to automated testing) and that community in turn spreads that product to every place they go and work. I know MS has deep pockets and dont really mind if VSTS makes money or not because its not their bread and butter but if there is any MS brass reading this post put some resources in product support, developers have done a marvellous job is putting it together and the ...Show All

  • .NET Development Function and argument matching with regular expressions.

    I have strings like: MyFunctionCall(a.b(c.d.f, a).c,a.b.c.d) I would like to have a regular expression that can return if it is a function call, the name of the function and a list of the arguments to the function. I have started with: Regex regex = new Regex ( @"( <function>[A-Za-z]+)\(" + "\r\n" + @" ( >" + "\r\n" + @" [^()]+ " + "\r\n" + @" " + @"| \( ( <arguments>)" + "\r\n" + @" | \) ( <-arguments>)" + "\r\n" + @" " + @" )*" + "\r\n" + @" ( (arguments)( !))" + "\r\n" + @"\) | ( <function>[A-Za-z]+)" + ...Show All

  • .NET Development adding Window Media Player into IE Toolbar

    Hello: I am facing a problem in adding a Window Media Player Control into IE ToolBar. I found a project written in C# on Code Project site that can add a text into IE toolBar. But I can't add the window Media Player into IE. The Project I found constitutes of 2 projects BandOjLib and SampleBars window Application C sharp where the development is happening in it. So what you do in SampleBars project will be embedded into BandObj Project after compilation and start without debugging both BandObj and SampleBars respectively. When I am adding the Window Media Player into TOOLBOX, then to drag it into window Form => it gives me this error: Assembly generation failed -- Referenced assembly 'AxInterop.WMPLib' does not hav ...Show All

  • .NET Development System.OutOfMemoryException when creating a new Thread

    I have got a exception: Exception of type System.OutOfMemoryException was thrown. ---------- The program was thrown the same exception at the same time when i am creating a thread process. Howevert the process is call one time only, why it will thrown the same exception so many times at the one call HI, I experienced this same problem... My steps to resolve: I created a new application pool and put the application in that pool. It didn't fix the problem, but limited the site being unavailable to only those in the same application pool. I also used the virtual file size fix suggested here: http://msdn.microsoft.com/library/default.asp url=/library/en-us/memory/base/4gt_ram_tunin ...Show All

  • .NET Development E-Mail Program

    I am making an e-mail program with 3 forms. One is the "Main" form, another is a fullscreen window called "webView" that shows the e-mail in full view, and the last one is called "AccountInfo" which I hoped to use for the users account information such as the server, username, and password, and if the users account requires an SSL connection. I just don't know how to incorporate it with the main form. I don't know if I should save all of that data into a text file as soon as the user clicks the OK button. I need help please. I appreciate your reply however the softartisans version is not longer available and I'm not interested in a console email program which is what the c-sharpcorner ...Show All

©2008 Software Development Network