Software Development Network Logo
  • Windows Vista
  • Game Technologies
  • Architecture
  • Windows Forms
  • Windows Live
  • Visual Studio
  • VS Team System
  • Smart Device
  • Visual J#
  • Visual FoxPro
  • .NET Development
  • Visual C++
  • Visual C#
  • Visual Basic
  • SQL Server

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

Gemazz

Member List

BimpnBerry
biffo_reid
Alene
thesmileman
Ram#
Aravindakshan
J. Amend
SteveJB
mx666_!
Stankov
Lifer
BABU_NEO
Mrs. B
Ahsan Ashraf
mganss
Christian Meier
Remeard
tcheck
yelrom
Jacek F
Only Title

Gemazz's Q&A profile

  • SQL Server SQL Server 2005 Reporting Serivces: XML Datasource problem

    Hi, I'm just starting to use SQL Server 2005 Reporting services, and need to use an XMLdocument as the datasource. I will get the xml data from a webservice and then need to bind it to the report. Here is what I am doing: 1. I created a webservice at the following location: http://localhost/myWebDirectory/myService.asmx . this webservice has a method called " GetXMLDocument" that has 1 parameter (sql). This method uses the sql st ...Show All

  • Visual Studio Team System Can a build in VSTS been deleted?

    In VSTS, under Team Explorer, I build some builds. And now I want to delete them. Is there any method to make this happen Thanks a lot! Leon Build types you create in Team Explorer are stored in Source Control folder. Explore the Project-level Source Control folder and you will see subfolder called "TeamBuildTypes", in which you can find the build type which have recently created. If you want to delete the build type, ...Show All

  • Visual Basic Tabpage closing "x" - Is this possible?

    Just wondering if there is a way to make the tabcontrol behave like the one on the new Internet Explore where it has tab pages and you can close them by clicking on the "x" William C Put a little button or picturebox to the right of the tab control with a bitmap that looks like the "x". Then write code like this: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System ...Show All

  • Windows Forms Delegate and ShowDialog

    Why dialog is not modal How I can make it modal (I have to use delegate, otherwise my calling application is blocked.) public delegate void OpenDialogDelegate(); public class MainForm : System.Windows.Forms.Form { private System.ComponentModel.IContainer components = null; private System.Windows.Forms.Button btnShow; private OpenDialogDelegate sDel; public MainForm() { InitializeComponent(); sDel = new OpenDialogDelegate ...Show All

  • Visual Studio 2008 (Pre-release) Several Problems with ListView

    I have some problems when using a ListView. I still have the problem which I posted befor ( http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=379578&SiteID=1 ) and the problem Thomas S. Anderson already mentioned ( http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=384949&SiteID=1 ). In the Code-Behind-File I added some EventHandler to the ListView: ListView.AddHandler( ScrollViewer .ScrollChangedEvent, new ScrollCha ...Show All

  • Visual C# Image size changing during rotation

    I copy pictures from one directory into another. I rotate some of them. Average size of the picture is 0,9MB. When I copy images without rotating file size doesn't change, but when I rotate this image it size is smaller (about 4 times). Did I loose some quality of this image Code: _stream = new FileStream(@"C:\test.jpg", FileMode.Open); Image _photo = Image.FromStream(_stream); _photo.RotateFlip(RotateFlipT ...Show All

  • Windows Forms Custom Performance Counters

    Does anybody know of any issues with creating Custom Performance Counters  I have tried, using the examples in the online help but have problems updating (incrementing) a counter. The category and counter are created ok, I can see then in PerfMon, but wh ...Show All

  • Windows Forms Casting EventArgs object to KeyEventArgs - is it possible?

    Hi all , I am receiving a casting error message when I try to perform the following code... private void txtSnagDetailsActionBy_GotFocus(object sender, System.EventArgs e) { KeyEventArgs ke = (KeyEventArgs)e; } Is this type of casting not possible Tryst Hi, you can't cast it like that because KeyEventArgs derives from EventArgs and since e is not a KeyEventArgs , it says that it can't cast it. If e was of type KeyEventArgs then ...Show All

  • SQL Server Repeat Group Header on new page

    Hi, To explain my question, I need to explain the report a bit, so, pl bear with me. I have a table in the body of my report. The table has one grouping. The group header has been set to repeat on new page and this works fine. Here is my problem.. The group footer has another table embedded in it. (call it the FooterTable) When the FooterTable runs to the next page, the GroupHeader of the MainTable doesn't repeat itself. I am assuming it shou ...Show All

  • Windows Forms Zooming in and out on picture boxes

    I have a picture box on a form that is a satellite photo taken from space. Does anyone know of a way that I can take a section of that photo and zoom in on it and resize that section to the whole picture box Any help would be greatly appreciated, smtraber Hi, First you must have the part of the Image you want to zoom, define variables such as: int zoomFactor = 2; // ZOOM 2x size Rectangle rectangleToZoom = new Rectangle(100,100,40,40); W ...Show All

  • Visual Basic Counting Letters in a string

    Hello,  I am trying to get VB to count how many A's B's C's D's E's etc... that are in a  declared string, can someone tell me how to do this. thanks Ray RFeather[AT][NOSPAM]chstaffing.com Dim aCount As Integer =  0 Dim bCount As Integer =  0 Dim cCount As Integer =  0   Dim myString As String =  "aabbccc" Dim i As Integer For  i = 0 To  m ...Show All

  • SQL Server Help getting mirroring working

    Hello guys and gals, I've having some trouble getting DB mirroring set up in Sql Server 2005. Perhaps someone can help, as I've read everything I can find on the web and Google groups about this but still can't solve it. Here are the steps I have taken: 1. Installed a fresh Windows 2003 on box A (the primary) and a fresh Windows XP on box B (the mirror). 2. Run Windows update on both. 3. Installed Sql Server Enterprise on box A and box B, ...Show All

  • .NET Development Validation problem

    This really isn't an ADO.NET question, Hasan. You might perhaps get a more definitive answer in an ASP.NET forum. Off-hand though, I think you may be able to get the behaviour you want if you set the CausesValidation property of your search button to False. -- Brendan Reynolds (MVP) wrote in message news:68d4e511-2603-4dca-886a-1babd2e9cc45@discussions.microsoft.com... > Hello again: > I put requiredFieldValidator controls o ...Show All

  • SQL Server how to populate foreign key in normalizing import?

    I am copying data from one denormalized table to a COUPLE of normalized ones. I am using multicast, following advices from the forum. The problem I have is that the two destination tables (A and B) are sharing a foreign key relationship.Filling in A is no problem, but when I want to fill in B, I don't know how to populate its foreign key, since the multicast doesn't know the corresponding primary key in table A. ...Show All

  • SQL Server ASP.NET and OLAP offline cube

    Hi, I would like to know the provider for OLAP offline cube, I mean to say that how I would able to connect to offline cube from asp.net, Please help me on this. Jag Use OLEDB. There are many examples on the Internet so search for: asp.net oledb. Here is an overview of the architecture: http://msdn2.microsoft.com/en-us/library/ms174518(SQL.90).aspx You will also need a local cube engine (ms ...Show All

©2008 Software Development Network

powered by phorum