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

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

mertkan65

Member List

chandrika3
Satyanand
riti
Steve1999
Antoine Galland
blixt174963
Infro
MSP.Saami
shafiqm
PeterK123
DmitryMS
jbearfoot
michaelsmith18
jiggs
Saad Kanawati
Andres Aguiar
AntonioMaia1
Vijay Chegu
Sudheer Kandali
jjjjjjj
Only Title

mertkan65's Q&A profile

  • SQL Server SQL Server 2005 JDBC Driver v1.1 and SSL

    Hi folks, I'm trying to figure out if the SQL Server 2005 JDBC driver supports SSL at all. I've downloaded the driver documentation, looked at more web pages than I care to count, and even went as far as to take a stab at guessing at different driver property names in the hopes I might discover some undocumented feature. Each time I try, I come up dry. The following exception shows up in my JBoss log: 2007-01-03 12:13:36,812 WARN [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] Throwable while attempting to get a new connection: null org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: (com.microsoft.sqlserver.jdbc.SQLServerException: The SQL Server login requires an SSL connection.) ...Show All

  • Windows Forms different form height shown in the screen of notebook and desktop?

    I set the form height 730 in the screen of desktop, but shown 780 in the screen of notebook. How should I got the same height in both screen ...Show All

  • Software Development for Windows Vista Brightness control on 32bit Windows XP Embedded

    The IOCTL support for video devices introduced with XP SP1 dont seem to perform as intended and described in MSDN documents. In specific my interest is in the Brightness control of monitor through these IOCTL calls e.g. IOCTL_VIDEO_SET_DISPLAY_BRIGHTNESS Are these features of WDDM available for windows XP Embedded/Professional 32 bit version ...Show All

  • Visual Studio Express Editions Select...Case

    I need some understanding of changing If/ElseIf statments to select case EX: If (gross <= 51) Then Return 0 I think I should use Select Case gross Case Is <= 51 Return 0 Is this correct wrote: I need some understanding of changing If/ElseIf statments to select case EX: If (gross <= 51) Then Return 0 I think I should use Select Case gross Case Is <= 51 Return 0 End Select Is this correct Regards, S_DS ...Show All

  • Smart Device Development WM 5.0 + VS2005 + SQL Mobile Problem.

    Good morning. A few people in here have helped me out with various noob questions I've popped out while developing my first Mobile app. Now I seem to have hit a major stumbling block. I've been scouring the net for several days trying to find an answer but I can't seem to make sense of the wealth of information. (The abbreviated gist of my post is - "Why can't I run SqlCe classes under Windows Mobile 5.0 and Visual Studio 2005 ") The story is this: * I developed the app using VS2003 and CF 1.0, succesfully deploying it to a Windows Mobile 2003 SE device. The app used SQL CE 2.0 as part of its operation. * The device we have been given now (Symbol MC70) which will be the production model has just been catastrophically diagnosed as ...Show All

  • Visual Studio Team System Problems with extracting hidden form fields

    1) Problems with extracting hidden fields After parameterising the requests, that were meant to extract the form hidden fields, the scripts threw errors. The test server wasn’t being picked up by the script. The following were displayed in the Web browser section of the results: Request failed: context parameter’ $HIDDEN2.BasketID’ not found in test context. 2) Has the service pack for fixing issues related to hidden fields been released Tester The beta for the service pack has been release at http://connect.microsoft.com/visualstudio Please try this out and see if it helps with your problems. ...Show All

  • Windows Forms Handling NoNullAllowedException

    Hi, I get the above exception when the user clicks Save, on the code: Try Me .PropertyTableBindingSource.EndEdit() Catch ex As Exception MsgBox(ex.Message) End Try ex.Message displays "Column 'OrgName' does not allow nulls." I want to leave focus on the text box bound to column OrgName. How should I do this Or am I going about this completely the wrong way Thanks, Keith. PS I don't think this is an unreasonable thing to expect VB.NET to support, I have done similar things in other languages in the past. Keith. ...Show All

  • Windows Forms Display Pictures from an SQL2K Database in Windows Forms

    Hello, I am using Visual Studio 2005 VB.NET I am trying to call up a binary field in an SQL 2000 DB which contains a picture and display that picture in a Picture Box. A search brought up the Microsoft Article: 321900 on their support site. The pertinent code looks like so: Dim cn As New SqlConnection(strCn) Dim cmd As New SqlCommand("SELECT BLOBID, " & _ "BLOBData FROM BLOBTest ORDER BY BLOBID", cn) Dim dr As SqlDataReader cn.Open() dr = cmd.ExecuteReader(CommandBehavior.CloseConnection) If dr.Read Then Dim bytBLOBData(dr.GetBytes(1, 0, Nothing, 0, Integer.MaxValue) - 1) As Byte dr.GetBytes(1, 0, bytBLOBData, 0, bytBLOBData.Length) ...Show All

  • Windows Live Developer Forums Can you turn off Birds Eye View Support?

    Is it possible to turn the function off ...Show All

  • Visual Studio Express Editions How would I?

    I have created 2 forms on menu click the original form hides and the other appears I can make the original form hide, but how can I make the other appear Thanks how do you mean "disappear" do you mean closing it or do you mean hiding it you would need to of course have a reference to that form you wish to "disappear" then call the Close() method or Hide() method. ...Show All

  • Software Development for Windows Vista WCS .NET 3 June CTP and IE7

    I've installed the last .NET 3.0 June CTP . My installation seems ok and I can create some personal cards using the selector (with its new GUI :)   Then I've tried to login to Kim Cameron's website and Microsoft Live Labs STS web site (the former one uses the HTML Object tag and the latter one the XHTML tag) Both trigger the selector... but only during 1 second and then it's closed. That's all :(   Did somebody succeed in authenticating to these websites using WCS .NET 3 June CTP   PS: This scenario runs well with the previous WCS version Beta 2.   [updated] Here my configuration: - XP SP2 - Not fresh install of winfx (previous one was Beta 2) - IE7 b ...Show All

  • Visual Basic How to get context menu for webBrowser control

    I am using the webBrowser control to do ftp and this works great... When i right click on a folder in the browser window i am presented with the standard menu items.. I have alredy worked with the ShellAPI and have project that wraps a treeview so that i can get the shellFolder that is assoisated with the treeNode...The code below is what i use to get the context menu for a shellFolder. I would like to get be able to capture the context menu and add items, then handle the commands with the system.windows.forms.webBrowser.. how do i capture the context menu so that i can add items.. thanks erik public static bool GetIContextMenu( IShellFolder parent, IntPtr [] pidls, out IntPtr iContextMenuPtr, ...Show All

  • SQL Server Conversion failed when converting datetime from character string

    Hi, I receive an Error Message: Conversion failed when converting datetime from character string when I try to run this. Can someone point out what I'm doing wrong SELECT Principal, SUM(CASE WHEN Recdate BETWEEN '=@LYbegin' AND '=@LYend' THEN Amount ELSE 0 END) AS LY, SUM(CASE WHEN Recdate BETWEEN '=@TYbegin' AND '=@TYend' THEN Amount ELSE 0 END) AS TY FROM dbo.Checks GROUP BY Principal If I execute the query with the dates it works fine: SELECT Principal , SUM ( Case When RecDate BETWEEN '1-1-2005 00:00:00.000' AND '1-30-2005 00:00:00.000' THEN Amount else 0 end ) AS LY , SUM ( Case When RecDate BETWEEN '2-1-2005 00:00:00.000' ...Show All

  • Visual Studio Visual Studio 2003 Prerequisites requires reboot before setup

    I'm trying to install Visual Studio .NET 2003 in a machine where is already installed Visual Studio .NET 2005. Every time I get a "another program requires reboot" message when I try to install the VS2003 prerequisites althought I have reboot several times. How can I prevent this Or which are these prerequisites to install them separately Thanks, Jose-san There are workarounds for this issue listed in the knowledge base article at http://support.microsoft.com/kb/891402 . Thanks! Aaron ...Show All

  • SQL Server Server: the operation has been cancelled. - when processing cube

    When I highlight a few partitions and start processing, the process occasionally stops with a message that operation has been canceled, like this: Response 3 Server: the operation has been cancelled. Response 4 Server: the operation has been cancelled. Response 5 Server: the operation has been cancelled. ..etc... (no further error message details are provided) SQL profiler shows that batch was completed (but rowcount shown in process progress log is too small). Analysis Services profiler shows no messages at that time at all. It just shows messages when it started, and when I restarted the processing. The Analysis trace appears to be stopped when processing stops with " Server: the operation has been cancelled.&quo ...Show All

©2008 Software Development Network