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

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

zhargoli

Member List

simon_p
Kjartan_Thor
topmar
TadejK
Jesse990
ohanlonp
Lappu
Parag Kudtarkar
pavankumar.D.V.
Sanguin Developers
Konstantin.Babiy
bishop0859
water4d
kmhawkes
cmhaas19
P. Zweiacker
Hooray_for_Boobies
fhaedo
Danny_40
upstartswwfc
Only Title

zhargoli's Q&A profile

  • Visual Basic How can I change all images in all pictureboxes?

    Hi everyone, I was wondering if there was a way to change all the image properties of a number of pictureboxes on a form in a simple way. I used to use the following code for textboxes: Dim i As Integer For i = 0 To Me .Controls.Count - 1 If Me .Controls(i).GetType Is GetType (TextBox) Then Me .Controls(i).Text = "" End If Next But the same doesn't work for pictureboxes. I did try: it ends up with an error.. Dim i As Integer For i = 0 To Me .Controls.Count - 1 If Me .Controls(i).GetType Is GetType (Picturebox) Then Me .Controls(i).image = nothing E ...Show All

  • Visual Studio Passing multi-select report parameters for direct rendering to PDF

    Greetings, I have written a custom Windows app to gather parameters for and display multiple reports in a conference room setting. Launching multiple viewer windows and passing common parameters works fine, but I am having trouble doing the same for a direct-to-PDF approach. The ReportingService.Render method takes a ParameterValue collection, but you cannot (it seems) define a parameter with multiple values like so... ParameterValue [] _params; _params = new ParameterValue [3]; _params[0] = new ParameterValue (); _params[0].Name = "StartDate" ; _params[0].Value = startDate; _params[1] = new ParameterValue ( ...Show All

  • SQL Server db design question

    This problem comes up over and over in my designs. It must be the way I think. Here is an example: Table proposals is the depository of all data. The other table is only to enforce the constraint. An author can make many proposals with the same topic, language and category. When done, she flags just one within this group of rows as FinalizedProposal. I am keeping the data of the ‘drafts’. They are all proposal rows but just one is labeled finalized. For this topic and this language and this category AND THIS AUTHOR there MUST be just one finalized proposal. The drafts are not really historical data because the finalized may be older than ...Show All

  • Visual Basic Converting SQL 2005 to SQL2000

    I have a client that asked me to write a .Net app for them using VB2005 and SQL2005.  I started the project and now they have learned that their IT shop will not support SQL2005 at this point and we need to move it to SQL2000.  How can I get the database files and stored procs over to 2000   Is it as easy as doing a backup in 2005 and restore under 2000   Thanks... Hi, Yup you could install both on the same machine. That's currently my setup.   cheers, Paul June A. Domag ...Show All

  • Visual C# Unassigned Varibles???

    private void menuItem15_Click( object sender, System.EventArgs e) { MenuItem mnuItem = (MenuItem) sender; mnuItem.Checked = !mnuItem.Checked; FontStyle fsStyle; switch (mnuItem.Text.Replace("&","")) { case "Bold": fsStyle = FontStyle.Bold; break ; case "Italic": fsStyle = FontStyle.Italic; break ; case "UnderLine": fsStyle = FontStyle.Regular; break ; } rtbText.SelectionFont = new Font(rtbText.SelectionFont.FontFamily, rtbText.SelectionFont.Size, rtbText.SelectionFont.Style^fsStyle); I getting the error saying my fsStyle is not assigned Why is that i thought i assigned them to the bold italic, an ...Show All

  • Visual Studio 2008 (Pre-release) How to apply multi Transforms to Canvas.RenderTransform?

    Hi guys, I using Canvas UIelement to draw a rectangle with size (200,200). I want to move the rectangle to point (100,100), rotate with angle 45 degree and scale it with 50%. I can not apply multi transform to Canvas' RenderTransform property one time. Please help me to do it soon... Thanks, You need to group the transforms in a transform group. < Canvas Width = " 200 " Height = " 200 " Background = " AliceBlue " > < Canvas.RenderTransform > < TransformGroup > < RotateTransform Angle = " 45 " /> < Tra ...Show All

  • Visual Studio Team System Load Testing for windows form based application using 2.0 .Net Framework

    Platform: We are using .Net Framework 2.0 for developing our application. We are using remote services to communicate between the client components and the server components. Objective: The objective is to perform load test for 50-70 vUsers. Problem: Loadrunner does not support .Net Framework 2.0 Resolutions considered : We tried using Visual Studio 2005 Tester Edition but it does not have record/playback mechanism for windows/form based application. Also, we have considered writing scripts using QTP 9.0 and using these scripts in Loadrunner 8.1 but it has a limitation of only one user/script per machine. ...Show All

  • Software Development for Windows Vista Problems building samples from Platform SDK

    I have installed the "Microsoft Platform SDK" and followed Brian Johnson's instructions ( http://lab.msdn.microsoft.com/express/visualc/usingpsdk/default.aspx ) to enable it to be used with "Visual C++ 2005 Express Beta 2", successfully (hooray!). I then wanted to build some of the samples in the SDK. I first tried building in the command line for "Microsoft Visual C++ Toolkit 2003" (which I had previously downloaded), and received linker errors mentioning "cannot open file LIBCMTD.lib". I tried building in the command line for the "... Beta 2" and got a dialog box saying that the file Hcrtf could not be found. I then went back to trying to ...Show All

  • Visual Studio Possible permissions issue with IIS. Using VS2005, CR 10 SDK and report located on remote server

    With the following code: Dim serverName As String = "CRSERVER1" reportToView = New ReportDocument CrystalReportViewer.ReportSource = reportToView Dim mySessionMgr As SessionMgr = New SessionMgr() Dim myEnterpriseSession As EnterpriseSession = mySessionMgr.Logon( _ "ACCT" , "password" , serverName, "Enterprise" ) Dim myEnterpriseService As EnterpriseService = _ myEnterpriseSession.GetService( "InfoStore" ) Dim myInfoStore As InfoStore = New InfoStore(myEnterpriseService) Dim queryString As String = "Select SI_CUID F ...Show All

  • .NET Development Querying a DataSet (multiple Tables) - No attached Database.

    I have two tables in a dataset, which are both filled when the user opens a source file. One table contains customer names, the other contains transaction information I want to display a datagrid/datagridview of all customers who have transactions records between a certain date. All the records are in each table and linked via a relationship (customer account code) I can't work out how to generate a query without using a seperate database. At this stage a seperate database is not a viable option. Can anyone help please If I understand correctly what you're asking, I think all you need to do ...Show All

  • Visual Studio Remove Solution from Source Safe

    Dears, I faced a problem of "Unable to load one or more breakpoints" error whenever I load my project/solution. (This happen even I manually remove/add a project in/out of my solution). So now, I want to remove my solution from the source safe (which is not so reliable now) but my VS 2005 hang when I click "File", Source Control, Change Source Control Is it the only way for me to retract my solution from VSS Thanks. Hi Alin, Your suggestion looks promising, but one of my project in the soln is a ASP.NET Web services proj... :( So I can't follow your suggested route. Th ...Show All

  • Visual Studio Express Editions Which one is the best migration for VB 6 Professional Developers?

    I have developed many commercial desktop programs using VB6. Now I want to go my next step. There are many latest MS products available (VB.NET 2003 VC.NET 2003, VB 2005 Express, VC# Express, VC++ Express) Which one is the best for me Dimuthu Suranga - Sri Lanka Well, that depends what you want to do. Any move from VB6 to VB.NET is a major one, the languages are very different. I'd download VB Express or C# Express and see what you think before spending money. Then I'd buy VS2005 Pro or higher. VC++ Express is a C++ tool with no real support for writing windows apps outside of WinF ...Show All

  • .NET Development Is it necessary for me to learn .NET Framework?

    In the .NET World, the language less important as compared the Framework since language just exposes the capabilites of the framework. Knowing the framework is extremely important and the language is just a means to use the framework. Omce you have a good understanding of the framework, the choice of language VB.NET or C# does not make much difference. Regards, Vikram http://dotnetupdate.blogspot.com/ ...Show All

  • SQL Server FTP Task - Delete remote files always fails

    Hello, I have two FTP Tasks configured in my SSIS package. One is for "Receive files" and the other is set for "Delete remote files." Both use variables for the source/destination paths. My remote path variable contains a wild card in the name field such as /usr/this/is/my/path/*.ext and it is working to FTP all the .ext files to my working directory. I then rename the files and want to remove the original files from the FTP server. I use the same variable as the remote path variable in the delete as I do in the receive. Using the same FTP connection manager for both tasks I am always getting a failure on the de ...Show All

  • SQL Server Foreach Loop Container in SSIS

    Could someone send me any links or information on how to loop through an ADO.NET dataset in SSIS I need step by step information please. Thank you, Shiva Here are BOL topics that might help http://msdn2.microsoft.com/en-us/library/ms187670.aspx http://msdn2.microsoft.com/en-us/library/ms141724.aspx http://msdn2.microsoft.com/en-us/library/ms140016.aspx Some other helpful links http://www.whiteknighttechnology.com/cs/blogs/brian_knight/archive/2006/03/03/126.aspx ...Show All

©2008 Software Development Network