Software Development Network Logo
  • Windows Vista
  • SQL Server
  • Visual Basic
  • .NET Development
  • VS Team System
  • Visual C#
  • Visual C++
  • VS Express Editions
  • Visual FoxPro
  • Windows Live
  • Visual Studio
  • Microsoft ISV
  • Visual J#
  • Smart Device
  • Architecture

Software Development Network >> Gaurav Jain's Q&A profile

Gaurav Jain

Member List

lan yu
uotmiem
Eric Wanda
Hicham_IT
BrianMitchellTX
Mohamed Raafat
Ryan Ternier
Amar13
Yuri Savinov
JaceMan
rls111
Lars Koewing
Richard2ne1
Chris J. Breisch
radh
gxelha
Nick Davidson
Vizun
Dpowers
Schwantes
Only Title

Gaurav Jain's Q&A profile

  • .NET Development Can I develop s/w with beta 2005 and test it with regular version, and release it later?

    If I develop a software with beta 2005, will I have seemless transfer to Vc++ 2005  (Visual c++ express 2005 version) when Microsoft releases  (I am concerned with Visual studio 2005 professional version, which I plan to purchase)  I hope microsoft plans to release by nov 7, and I would like to release software  by Jan 2006 as I have only a month to tweak it. Thanks, Jil. Hi, I think there would minimal changes from Beta 2 to the RTM. There would be minor tweaks that you need to do to port it to the release version. But I doubt that It would be very difficult. I just hope that microsoft would provide conversion guide ...Show All

  • Visual FoxPro HOW I CAN DO "WIZARD UPSIZING" FROM THE SOURCE CODE??

    Hi! I have to do an upsizing from a foxpro-database to an sql server, but, I don't want to use the wizard--->upsizing from the menu-bar...I want to do the same things, but from the code! Can you help me Thank you. >But now, I have one more question for you...if I studi the Microsoft's upsizing >code, and I'll change something it, can I redistribuite my program I'm not really sure as I haven't looked much into this. Maybe someone else might be able to comment on that. >And, do you know, if someone have done something similar >Or do you know where I can find a code that do the same thing No. Unfortunately I do n ...Show All

  • Windows Forms ** VB.Net & Joined Tables **

    Hey .. ** Hellow , everybody .. I need your help plz as regards "Database Programming" as my bein newbie In SQL Server .. Plz take a look at the Following snippet code & help me abt how to WOrk out with a joined tables ..."jumb to the end of the Code for more Explanation" .. ------------------------------------------------------ CPMOconn.Open() cmSQL = New SqlCommand("select CWO_No,Status,TFR_No from CWO ", CPMOconn) dasearch = New SqlDataAdapter(cmSQL) dasearch.Fill(dsCPMO, "CWO") dvsearch = New DataView(dsCPMO.Tables("CWO")) If (cboKey.Text = "CWO Number") Then dvSearch.RowFilter = "CWO_No like '" + txtKey.Text + "%'" ElseIf ...Show All

  • Visual C# .

    . Rob, This is from a larger project so I've tried to cut and paste the relevant bits.  This took ages of trial and error to get working. Hope you can make sense of it. Cheers Steve The process is started from a class that also has a Windows form (to show progress).  The sendclip method starts the commandline process which returns as soon as the process is started - as then events take over.  The show dialog displays the form and kind of forces a 'wait'.  I use events to close the form when the process finishes and things carry on this.sendclip(clip, clip.Partialcommandline, Qsyst ...Show All

  • Smart Device Development Deleting a file in streight C

    I am trying to delete a file that I create with fopen. There does not seem to be any fdelete You can use DeleteFile() to delete file. Please make sure it's closed prior to that. Moving to appropriate forum... ...Show All

  • Visual Basic DataAdapter Select Statement

    To all I'm VS2003, when I try and create a dataadapter with more than 100 fields (either through drag-n-drop or manually) I received "There were errors configuring the dataadapter". Since the table is in SQL 2000, I tried using: "Select * From inmast" which returns 143 columns and all rows from the table I even tried importing the table in MS Access 2003 with the same results. If I reduce the # of fields to 100 or below the dataadapter will work as normal Help David Davis Hi, Thanks for keeping us posted. So that's a limitation. Haven't even seen it in the documentation... Well, I guess you'll be forced to u ...Show All

  • SQL Server sync_type parameter in subscription

    Hi, I tried to change the subscription property "sync_type" whith a system procedure but I was not able to do it, because sp_changesubscription does not support this property. Is there any chance to change this property by procedure So I decided to drop the subscription and define it new with sp_addsubscription. I chose to set this to "replication support only" as the value "none" is depricated based on the online help. Unfortunately using this value results in an error message "only none or automatic is allowed". How can I set this value now to "replication support onl ...Show All

  • Visual Studio Team System How do file attachments get saved?

    Through the API, If I look at the collection of Attachments associated with a work item and look at an indivdual attachment I see the following: AttachedBy: "" AttachedTime: {5/18/2005 12:15:39 PM} AttachedTimeUtc: {5/18/2005 5:15:39 PM} Comment: "" CreationTime: {5/18/2005 7:10:56 AM} CreationTimeUtc: {5/18/2005 12:10:56 PM} Extension: ".doc" IsSaved: true LastWriteTime: {5/18/2005 12:10:57 PM} LastWriteTimeUtc: {5/18/2005 5:10:57 PM} Length: 245248 Name: "Fax International Dashes.doc" Uri: {http://ewing:8080/Currituck/AttachFileHandler.ashx FileID=256&FileName=Fax International Dashes.doc} I don't see anywhere where it references what ...Show All

  • SQL Server Isql and network path error? (What happens really)

    Hello I`m having a problem with ISQL and net-library. I have running a production server severals years and suddenly its starting to told me: DB-Library: Unable to connect: SQL Server is unavailable or does not exist. Unable to connect: SQL Server does not exist or network access denied. Net-Library error 53: ConnectionOpen (Connect()). I have read that this error is because not found the network path, but I dont sure about what this mean.Is the instance name or path of backup isql -S VSRSQL02\VSRSQL02 -E (.cmd) OR SET @BACKUP = ' \\BKP\' (.sql) I can login into the instance a ...Show All

  • .NET Development How to use separate thread to iterate through file system and display results in a TreeView?

    Hi! A while ago I wrote a tool to analyze the size of folders on the harddrive using .NET FW 1.1. The time has come to port it to .Net FW 2.0 and at the same time implement some improvements. One of the things I would like to do is to let a separate thread iterate throgh the folders of the filesystem so that the user interface does not lock while the iteration, which takes quite some time, is being performed. For this purpose I am using a BackgroundWorker. This is where I get problems. I am letting the worker build up the folder tree in a TreeView. However, I realized that threads are not allowed to call methods of controls which "belon ...Show All

  • Visual C++ dialogs appearing behind the main window

    hey guys, i have a simple problem with my MFC app. the messagebox's and color dialod's r appearing behind the main window. maybe is it because i have directx rendering a static text control in the main window so it always stays in focus or soemthing i dont know here is my code for displaying for displaying a color dialog: CColorDialog cd = CColorDialog(0, CC_ANYCOLOR); cd.DoModal(); when i press the alt button the color dialog appears. is there some special setting of some sort i have to do to get the dialogs to appear infront of the window im quite new to mfc so sorry for my newbie questions. thx in advanced ...Show All

  • SQL Server To Boost Performance

    We are designing the database for a high load web application . We used 4 techniques. 1.No outer joins,No Unions, > only in reports 2.No joins in main forms 3.Choose the smallest dataTypes possible. 4.Used a single instance for all users. Are there any additional MAJOR ones DId you had a look on www.sqlserverperformance.com Additional options would be to define the right indexes, use of index views, etc. You find all this ont his side. HTH; Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual Studio Team System TF86001: Team Foundation was unable to load the Office AddIn

    After dealing with the daunting install process and getting it right, now I'm able to create projects and work with most of the items, however I found a new issue while trying to open any of the Excel sheets included in the default project team solution structure from WSS and I get that error, funny thing is that this only happens with XL files, since I can open Word and Project files with no issues Here's what I'm running on: Server: Windows Server 2003 sp1, SQL 2005 Sep CTP (data, analysis and reporting services), VSTS Server Foundation beta3, WSS sp2 Client: Windows Server 2003 sp1, Office 2003 Pro sp2, VS2005 Release Candidate, VS ...Show All

  • Windows Forms Error in insert to table

    I have the following code: Private Sub btnvoegby_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnvoegby.Click         Dim dateStr As String = lstMonth.SelectedValue & "/" & lstDay.SelectedValue & "/" & lstYear.SelectedValue         Dim dateStr1 As String = lstMonth1.SelectedValue & "/" & lstDay1.SelectedV ...Show All

  • .NET Development How can I deploy to the 'All Users' data directory?

    In my deployment project, I want to place a file in the "All Users" application data directory.  When I use the Add Special Folder option, however, this option is not available.  There are several options for the current user (and then when you build it, you get warnings that you shouldn't place it there because other users won't be able to access it).  Besides that, there are several other folder options, all of which are inappropriate places to place common user data.  I don't want to hardcode a folder path because then it won't work on the various flavors of Windows.  Question:  Is there a way to accomplish ...Show All

©2008 Software Development Network