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

Software Development Network >> Bahadır KONU's Q&A profile

Bahadır KONU

Member List

jtleach
soorya_j
BlackPepper
Docpro777
Charley Lou
Sam Jost
Ninerh
Al33327
Nicolas Iacovides
BradyGuy
lezi
Diego81
Jon Watte
PatrickBrynhowel
mark12345678
Abdul Muheed
Christian Frießnegg
mpco
Grimal
Sanjib
Only Title

Bahadır KONU's Q&A profile

  • Visual Studio Team System FxCop deployment in Team Foundation Server

    Hi all, We have develop a custom rule and now we want to deploy it in the Team Foundation Server. How do we do it What I want to know is "Do we need to put the dll in the server machine and do some other configuration or  the dll should be on the client machine itself and do some configuration on the Team Foundation Server The other thing we want to ensure is that the developers should not be able to change the check in policy and the check in policy should be configurable by the project admin only. If anyone has any idea of implementing this, please share it. Kindly help anybody. Thanks, ThunderRock     Hi ThunderRock, The Code Analysis policy does not suppo ...Show All

  • Windows Forms Datagridview: SHIFT+SPACE problem

    Hi all, I'm experiencing a annoying problem with VB 2005 DataGridView. Every time that I'm writing on a row an uppercase text (shift key pressed), DataGridView does not recognize spacebar key press. For example: when I try to write on my DataGridView the following text THIS IS ONLY A SAMPLE TEXT (mantaining Shift key pressed), DataGridView shows te following: THISISONLYASAMPLETEXT Pressing shift key + space key, DataGridView seems to select the current row. How could I solve this strange problem Thanks in advance to you all! I solved reading the following: http://msdn2.microsoft.com/en-us/library/tb9t9a2t.aspx If the MultiSelect property is set to false and the SelectionMode property is set to CellSe ...Show All

  • Visual Studio New commer getting started with sandcastle

    I am new to the developer environment. I have a few questions about using sandcastle. I worked through the example provided at the sandcastle website. To use sandcastle with other files, is the only thing i have to change is the file.cs name What i am trying to say is do i always use comments.xml, relfection.org, etc. for each source code i want to document Won't that make me loose the previous documents I don't know i might be all confused. Could someone just explain how the step by step process goes in documenting a c# file. I have read thru the sandcastle documents but any other info would be greatly appreciated. Thanks in advance Rhonda If you want to do the build manually, you can rep ...Show All

  • 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 SQL compataiblity for *= join syntax

    I'm looking at upgrading to SQL2005 and have found the following issue with some old t-sql we have. We have some views that are created using the old outer join syntax of *=. If I run the SQL in query analyzer, it runs fine...but if I create a view with the SQL, when I query the view I get the error: Msg 0, Level 11, State 0, Line 0 A severe error occurred on the current command. The results, if any, should be discarded. Msg 0, Level 20, State 0, Line 0 A severe error occurred on the current command. The results, if any, should be discarded. I tried changing the database compatibility level all the way back to 7.0, and recreating the view (still using *=), but still had the same error. Is it possible to have a ...Show All

  • Internet Explorer Development Caching Cookies

    Hi there, I hope this is the right group to submit this :) I have an object that I am caching. This object has a property which is of type CookieContainer. It seems after a certain amount of time, the value for the cookie inside the container changes without me updating the cache. Is this normal behavour for cookies. I've looked at the Expires property for the cookie and it is false. Thanks. ...Show All

  • Visual Studio ReportViewer stuck in Landscape printing mode.

    How can I get the report to print in portrait mode When I first created a report using the viewer it printed to pdf in portrait but then I changed it to landscape and now it will not go back to generating the pdf in portrait mode. I'm doing this in both webforms and winforms. Is this something I'll have to hard-code Thanks in advance! I figured it out. If you have a report that is 8.5x11, you cannot have margins. Set the margins to 0. This also goes for headers/footers. The additional margin space makes the report print in landscape. If your report is less that 11 in width, then make sure the margin space, when added to the width, does not exceed 11. In the case of headers/footers, what happens is you get expanded headers/footers, ...Show All

  • SQL Server Transmission queue ?

    Hi There I have sent messages and they are all sitting in the transmission queue with a blank status, why is service broker not trying to send them They are no errors in the sql log. BOL says this is blank when it has not tried to send the message Service broker is definately activated in the database. How do i force sql server to send anything in the transmission que I have no idea what is wrong or where to check Thanx Try to follow the guide steps from https://blogs.msdn.com/remusrusanu/archive/2005/12/20/506221.aspx HTH, ~ Remus ...Show All

  • SQL Server Undo Changes in Table Help!!

    I accidentally executed this query Update Table Set Field = 1 Where Date < dt I need to undo this, is there i way to do so Havent touch sqlserver since the execution of that query. The server makes a backup daily of the whole sqlserver folder under program files. Is there a way to locate just the table pages to overwrite the ones I just messed up. Is the tables data inside this folder (program files- Microsoft SqlServer). If it is so should I replace the entire SQLServer Folder from my backup Thanks for helping ...Show All

  • Windows Forms Dynamice ActiveX

    Hi there, I'm doing this in c# but will gladly accept any .net language if anyone knows how to do this. Basically I want to Load an ActiveX control (e.g. Windows Froms 2.0 TextBox etc etc) I can already load the control by using the System.Windows.Froms.AxHost class. I can get the underlying ocx object. But as I have no RCW runtime Callable Wrapper, I would like to call the method on the fly, I'm thinking I'll have to do something like use the underlying IDispatch or something but I'm hitting brick walls trying to figure it out. Has anyone ever done this or have an idea on how to do it Take a simple senario as the Windows Forms 2.0 Textbox, 1) I load the control and display it 2) I get the ocx System.Object ob ...Show All

  • Software Development for Windows Vista Suspend the execution of an Activity

    Hi All, I have a couple of custom activities that perform long running tasks. I have used the well defined pattern (i.e. delegate the task to an external service which after completion would enque to the WF queue on which the activity is listening on) The reqt is that it should be possible to suspend these running activities by the user and then resume them at a later point in time. I want to know if WWF provides support for this. If the Activity can get notified of the fact that it is getting suspended, it in turn can inform the same to the External service . This in turn can serialize its state and de-serialize them when the activities are resumed. Rgds Giri It sounds like what ...Show All

  • Smart Device Development Select Image?

    on a smartphone running .NET CF 2.0 SP1 (WM5), is it possible for an image control (Picturebox) to have it selected/focused As I navigate, I am unable to get its focus, however on PPC I can. If it is not possible on the smartphones, what other alternative is there so that the user can click on an image and I can handle the click event Create a UserControl that has a PictureBox anchored top/left/bottom/right one pixel from the bounds of the UserControl. When the PB receives focus, set the focus to your UserControl. When your UserControl gets/loses focus, invalidate. In your OnPaint override, draw a rectangle using the 1 pixel border left. Here is some code; you may need to fill in some holes: using System; usi ...Show All

  • Visual Studio Tools for Office Serious problem with permission/security while creating setup/installer file

    Hi All, Actually I have created one VSTO project at my local. For BusinessLogic & DataAccess Layer I have used some external Dlls into this project. Now I have to create setup/installer file of this project & deploy it to client machine. I have done following things to make it possible: 1. Firstly I have added strong name to all the external dlls that I am using here. 2. After that I have followed all the steps as shown into the link provided for deployment. 3. At the end, I been able to create setop/installer file successfully by compiling the setup project with all other necesssary requirements needed. Now I wanted to check is the installer working or not. So I have instaled the setup file created & followe ...Show All

  • Windows Forms center the Form's caption text

    how can i center the form's caption text in C# 2005 Lousy but easy(Edited: Not easy if you want all the functionality of the windows) solution: Create a base form and change the FormBorderStyle to None, then you have to create the Form caption Area, Control Box  and border yourself, then you can do whatever you want. Remember if you want a fully functional form then you will need to write Minimize, Maximize and Move the form yourself. ...Show All

  • Visual Studio Adding SQL files to Empty Database Projects (Oracle/My SQL) using DTE

    Hi All, I was able to add SQL files SQL Server Database Projects once the project was created in the runtime but I could not add SQL files to a Empty Database Project (for Oracle/My SQL) in the runtime using the Application Object Model. I think Empty Database Projects does not have project properties and when I try to add files to it using AddFromFile() it causes an exception. Can anybody give me a clue on this, can we do this in another way Best regards, Imesh ...Show All

©2008 Software Development Network