Fritz Klein's Q&A profile
Visual Studio Team System Using TFC....
I am trying to understand how I can use the team foundation client to allow non-developer access to items under source control. So for example in source safe it was exceedingly easy to install the source safe client and allow managers to check-in / out word docs, excel files etc.... I have installed the team foundation client on a machine, I think I have set all the permissions properly but they still seem to only have read only access to source control items. Do I have to purchase full blown versions of VS 2005 for managers TIA Permissions are all based on the server. There's nothing the full VS 2005's Source Control Explorer can do that the plain 'TFC' client cannot. What error message do you ge ...Show All
.NET Development How can I convert picture to another format?
I want to change the format of a picture to another format (ex: *.jpg to *. gif, *.bmp to *.gif . . .) with C# language but I don't know how can I do. Please, show me. thanks!!! check this hope it helps you... http://www.codeproject.com/csharp/imageconverter.asp ...Show All
Visual Studio Express Editions about count?
hi there how do we use or execute a command in label which you can count the number of output.... for example "Select count(*) from user" (number in query in a datagrid) and the output must be seen in textbox or label... thx in advance one option is to put 'Rizal', 'Batangas', 'Cainta', 'Manila' ,etc. into an array...then make a loop to save you from typing those commands 50 times.... for i=0 to 49 dim sqlcommand as new oledb.oledbcommand("select count(*) from table1 where Area = ' " & array[ i ] & " '", connectionstring) 'the rest of your code in here next i know there are other options you can do.... this is just one of them.... ...Show All
Visual Basic Drawaing a line on an Image
Hi guys, hope you can help me out on this one :) I'm developing a small application that contains a distance measurement tool. The idea is to make it a bit like map24.com (you clik once to select a starting point, and again to select an ending point). This works fine and I can use the graphics.drawline method to draw the line. But I would like the user to see the line already after the first click (like drawing in paint). Then when you move the mouse the ending point of the line moves. If I try to do this it draws a new line every time I move the mouse because I'm creating a new instanes og the graphics on mousemove. I have trying to make one instance and use the clear method before I draw a new line, but this method requires a color an ...Show All
Visual J# language pack download location?
Hi; The url http://msdn2.microsoft.com/en-us/library/aa480243.aspx lists several language packs for J# - but I can't find where to download them. Any ideas thanks - dave Hi, Please go to http://www.microsoft.com/downloads/details.aspx FamilyID=4866634a-e94a-4a1b-96ba-2c6c5ff20546&displaylang=en and select the desired language from the drop down. Thanks. ...Show All
Smart Device Development how to get a form object through the form name
Hi, I need to get a form instance, by supplying the form name i.e, i need some thing similar to Class.forName() in Java. I tried it using System.Type.GetType() method passing the form name as object. But the prob here is i'm getting an exception saying "System.Type can not be casted to a System.Windows.Form". How can i get the form object based on the form name. Any one plz suggest. Thanks, Hari u can do this like that Let's suppose u want to get form1 object on form2 while calling calling form2 call in this way form2 f2 =new form2(this)-->this will send current form1 object ...Show All
Windows Forms Event Handling
I am creating an app that will allow the user to select tables from a SQL database for export. So I decided to create a Query Builder. I created a form with a dataset that contains two datatables,"SQL_TABLES" and "SQL_COLUMNS". Each table is associated with a table adapter. The command text for the "SQL_Tables" adapter is "sp_tables", and the command text for the "SQL_Columns" adapter is "sp_columns " with a parameter table_name. I supply the table_name parameter from the selected row from the "SQL TABLES" data table. On the form I have added two binding sources for the data tables. Along with this, I have added a binding navigator for the "SQL_Tables" binding ...Show All
Visual Basic interpret variable
Hi I create a string Dim value As string = "Email.ID" in fact Email.Id is an object equal to 2. My question is what is the function to get 2 from the variable value. Thanks ...Show All
SQL Server Creating a Package of dtsx packages
Hi I am trying to build a package that is comprised of 100+ dtsx packages but cannot seem to get it to work. I have created a new connection where the connectionmanagertype = file and the file path is equal to the folder in which my dtsx files are located. I (location = fileSystem). No matter what I do I get an access denied error that shows the folder location but no package. I manually typed the name of the package in the PackageName property and have pasted in the PackageID in the appropriate property as well but I don't see anything in the PackageNameReadOnly. I have read the MSDN information but I don't see a step by step way to build a package of packages against which I can compare. Can anyone set me straight Thanks. ...Show All
.NET Development Number of Rows
Sorry for asking perhaps a silly question but the semantics of this property is so unclear that I am beginning to have doubts. I am talking about the Length property as highlighted below: DataRow[] rows = Globals.dtSets.Tables[indexTable].Select ( "date >= #" + DateTime.Now.AddMinutes ( -minutesToLookBack ) + "#" ); if ( rows.Length > 20 ) // <=== { ............. What is it exactly The number of rows If not, how can I get the number of rows unequivocally Thanks. Ross Dargan wrote: ...Show All
Smart Device Development deploy windows mobile 5 app
I am trying to set up a web deploy for wm5 on a pocketpc. How would you set up the link to install 4 cabs (exe, sql mobile, sql client and .net2) plus install the shortcut in the start menu use NSIS. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=511799&SiteID=1 ...Show All
SQL Server Selecting from a tables
Hello I have two tables: Package PakageID Destination Source 1 xyz abc And PendingPackages ClientID PackageID Status 1 1 0 How would I create a select statement to select all rows from Package (PackageID, Destination, Source) where the CleintID=1 and the PackageID exists in pending packages with a status of 0 Can this be done using a select statement or would I have to create a view I'm not too sure! Thanks :) I suspect you're looking for something like this: SELECT a.PackageID, a.Destination, a.Source FROM Package AS a INNER JOIN PendingPackages AS b ON a.PackageID = b.PackageID WHERE b.ClientID = 1 a ...Show All
Visual C# Project Idea
Hello every one, I have just recently started coding away with C# and decided that this would be a suitable language to produce third year project for my degree course for various different reasons. I am still researching couple of ideas, was wondering if any of you bright people would kindly give me some ideas which will not only be a fun project to work on but something i can learn from. p.s. I have a good understanding of OOP Thanks in advance Strongly advise going the web route rather than winforms... everyone seems to want it. The trick here is to decide what industry you fancy i.e. banking and specifically code something to match that. Will help greatly with your career. ...Show All
Windows Forms Change Margin / Padding during runtime.
Thanks in advance for any answer (.Net Windows Forms 2.0) I was developing using Smart Client [P&P] and happened to use those Tabbed Workspaces (much like the Tab Control). I am adding my tabs during runtime so my control is emply at design. My question is, when I had added a tab control, it shows a margin (padding) on all sides which is not good looking (the default padding/margin I think). I tried to loop through the existing tabs I created and tried to change the margin but .Net says that I cannot do that since "Margin" is not a variable. this is the code I used: _rightWorkspace.TabPages[x].Margin.All = 0; I tried it with an ordinary tab (not the tabbed workspace) but it does not work too. Thanks for any hel ...Show All
Visual Basic HELP! vb transparency?
Hmm... vb... ... is there a way to make an image transparent instead of having a lil gray box around it... cause i need to have transparency... Thank you all for lookin, moveit124 Hi How are you rendering the image onto your canvas Are you painting to the form direct or are you using picture boxes etc If you can post your rendering code that would be a big help. Richard ...Show All
