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

Software Development Network >> Mehmet Metin Altuntas's Q&A profile

Mehmet Metin Altuntas

Member List

jjakspaw
LynnOoi
Mark Macumber
williamguy
Hossam Abdel Wahab
Sam Jost
Acanthus
Tim Long
Kimball
Idanle
Dan Mikkelsen
a_wuestefeld
pfongkye
Blkbird
jamesIEDOTNET
Matt Lin
Nagaraj K
ADurkin
W.Turgeon
Alexnaldo Santos
Only Title

Mehmet Metin Altuntas's Q&A profile

  • Windows Forms Tool Tip Disappearing

    I have a button for which I set a tooltip using the ToolTip class after finding out that there isn't a ToolTip property for button controls. Here is my code: ToolTip procDescriptor = new ToolTip (); procDescriptor.SetToolTip(newProcessButton, "text" ); procDescriptor.ToolTipTitle = processName; procDescriptor.Active = true ; procDescriptor.ShowAlways = true ; The tool tip works fine until the button is clicked or hovered over for more than 5 seconds. After either of those things, the tooltip never reappears. What's the deal -allen It's in my form class...but actually, I remedied the problem with a custom class that extends the ToolTip class in .net 2.0. It allows tool tips to reshow after " ...Show All

  • SQL Server Replicate or mirror

    Hi, Trying to build an replication and subscription beteween db in SQL 2000. The db holds our business system (Dynamics NAV, earlier Navision) and several of the tables include $, spaces and even : We can take some of this away when creating a new db or make scripts for some actions but I wonder if the mirroring in 2005 could handle this Thanks, Mikael Hi Listam, Mirroring will take care of it. Mirroring is at the database level. The whole database is mirriord and does not allow you to filter individual tables. Unlike transactional replication, the mirror data will not be accessible, unless you create a database snapshot on the mirror database on the mirror instance. The database snapshots with mirroring should b ...Show All

  • Visual Studio Express Editions How to Connect a DataBase like ADODB (Visual Basic 6.0)

    Hi... I'm new on Visual Basic 2005, and I don't know how to connect a DataBase to my Application... In Visual Basic 6.0, I connect a DataBase with this code: Dim Base As New ADODB.Connection Dim Reg As New ADODB.Recordset Dim Sql As String Base.CursorLocation = adUseClient Base.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "/BaseDat/BaseDat.mdb;Persist Security Info=False" Sql = "Select * from Table" Reg.Open Sql, Base, adOpenDynamic, adLockOptimistic Now... my question is: How can I do this on Visual Basic 2005 Express Please help me... Regards... MetalTux, 1. Connect to the Access database by Data Source Configuration wizard. Take an example as Dat ...Show All

  • Visual Studio Tools for Office Menu Bar - Horizontal Divide

    Hey, should be a fairly easy solution, and its not a life saver, but i've got a customer menu bar in outlook, and i just want to divide buttons, like buttons are divided in other menu bars, such as file and edit. Just can't seem to find it! Thanks ...Show All

  • SQL Server The attribute Key Can not be found

    Hi all, I am processing a cube with two fact tables, one fact table processes successfully and the other doesnot because the attribute key can not be found. The command error is as below; <Batch xmlns=" http://schemas.microsoft.com/analysisservices/2003/engine "> <Parallel> <Process xmlns:xsd=" http://www.w3.org/2001/XMLSchema " xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance "> <Object> <DatabaseID>Analysis_Trial</DatabaseID> <CubeID>Patient Care</CubeID> </Object> <Type>ProcessFull</Type> <WriteBackTableCreation>UseExisting</WriteBackTableCreation> </Process> </Parallel> < ...Show All

  • Visual Studio Team System tf checkin not working while tf add does work??

    Hi, I am working on an MSBuild project and i am having the following problem: i have to add files to the Team System Source Control, so i need to perform the following actions: 1- Add files to Source Control. This step works perfectly: <Exec Command='tf add /recursive /noprompt "D:\BRP\System\Wsdl\Generated\*"' WorkingDirectory="C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\" /> 2- Check in my files in source control. Does NOT work. <Exec Command='tf checkin /recursive /noprompt /override:"Overriden from MSBUILD" "D:\BRP\System\Wsdl\Generated\*"' WorkingDirectory="C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\" /> I get the typi ...Show All

  • Visual Studio 2008 (Pre-release) Xaml question

    <ScaleTransform CenterX="RootPanel.ActualHeight / 2" CenterY="RootPanel.ActualHeight / 2" ScaleX="2" ScaleY="2"> How can I do something like this in xaml :) I want to create e geometry from some precalculated values so that it will be as large as a grid cell let's say. you may want to have a look at this thread : http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=890020&SiteID=1 ...Show All

  • Silverlight (formerly WPF/E) how to implement a functionality built in WPF/E on the wpf platform

    hi friends I created a WPF/E based application which is executing a function written in javascript but I want to call that function through my wpf application, Can someone guide me how to integrate a wpf and wpf/e based application and implement functionality of wpf/e in wpf. Hi Abhas, You can use the events for a XAML element and then use the syntax: javascript:[functionName] If you go to the WPF/E SDK, there is an example in the "Loaded" event. If this answers your quesiton, please select "Mark as Answer" otherwise, please post a followup question. ...Show All

  • Visual Studio 2008 (Pre-release) arbitrary column ordering when invoking Sproc

    hi, i'm using SqlMetal and binding a gridview to the return value of one of the sproc generated methods. it works fine, showing a bunch of records. However the column ordering in the gridview appears to be arbitrary, and is very different to how i have them defined in the sproc. i know i could run a linq query on top of the results selecting them into a new dynamically created class, but that isn't really an option because i'm reflecting the name of the sproc method and wouldn't be able to figure out the correct ordering. am i doing something wrong or is this behaviour normal for completeness sake, i'll include all the relevant bits of code: here is the code to bind the gridview (using autogenerate columns): this.GridView1.DataSource = ...Show All

  • Software Development for Windows Vista DVDR-DL fails on write from data, but not from image

    Using the imapi2sample, I get an E_FAIL from IDiscFormat2Data::Write() when trying to burn some files to a DVD+R DL (e.g. imapi2sample.exe -write c:\users\raptor2lavbb8\AppData\Roaming\temp\burn ) It works ok with other media types and works ok to DL on other drives. So, how can I further diagnose what the problem is (beyond E_FAIL) Writing a stream to the disc only closes the disc if the property above has been properly set. We wanted to allow people the flexibility to leave the disc open if they wanted... Please let me know if you have any further questions! thanks, Garrett Jacobson SDE, Optical Platform Group ...Show All

  • Visual Studio Express Editions close the first program after the command shell?

    Hi, I wrote a program that calls to another program with the command "shell". But I want that the program that run\call another program will close(the first program) automatically after the shell command. Any ideas Regards, Yaniv ...Show All

  • Smart Device Development Convert to MScomm32 to System.IO.Ports

    Hi everyone   I have vb6 code is used MScomm32. I've trying to change to VB.Net for month. but It's hard and difficult. Because, I 'm not a programmer I want to use this program in the PDA(Windows ce) It's the GPS program It changes GPS date to NMEA I want to change MSComm32 to System.IO.Ports Please~ can you help me   Thanks.     Please see this, items 7 and 15: http://www.danielmoth.com/Blog/2005/03/please-read-before-posting-to-ng.html ...Show All

  • Visual Basic Passing Pointer to an Array in VB

    I have an array i have to pass the array as a pointer. WIllfin Arrays are reference types which are marshalled differently between managed and unmanaged code. (see ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.VisualStudio.v80.en/dv_fxinterop/html/049b1c1b-228f-4445-88ec-91bc7fd4b1e8.htm) Since you specify you are doing this in VB, it shouldn't be a problem but could get tricky if dealing with interfacing with API's. To pass a parameter to a method, you can either pass it ByVal or ByRef. The other trick is being aware of what you are passing. In the case of a simple Integer, passing it ByVal means passing a copy of it where-as passing it ByRef means passing a pointer to the memory containing the integer. Thu ...Show All

  • Visual Studio 2008 (Pre-release) svcutil errors on wsdl name attribute

    Hello, I am trying to generate WCF client and service code from a WSDL file provided by a third party. The wsdl file passes validation in several verification tools. However, svcutil generates an error when run as such: svcutil importedfile.xsd thirdparty.wsdl The error is this: Error: Cannot import wsdl:binding Detail: The WSDL binding named ReferApplicationSOAP is not valid because no match for operation ReferApplication was found in the corresponding portType definition. XPath to Error Source: //wsdl:definitions[@targetNamespace='http://www.fake.org/schemas/referApplication_1_3_1.wsdl']/wsdl:binding[@name='ReferApplicationSOAP'] If I remove the "name" attributes from the wsdl:input and wsdl:output elements under the wsdl ...Show All

  • SharePoint Products and Technologies Upgrade issue: Could not find stored procedure 'dbo.proc_MIP_GetObject'

    Hi, We are trying to upgrade from SPS2003 to MOSS2007 and keep running into the error Provisioning failed: Could not find stored procedure 'dbo.proc_MIP_GetObject' . Has anybody else experienced this or something similar. And does a work-around exist Tried it on two servers with the same results. One was attached to a SQL2000 cluster and the other had a standalone sql2005 on it. The user has full rights on the sql box obviously as it is an upgrade and sps2003 has been installed & working fine for 1+ years. Thanks & regards Jon ...Show All

©2008 Software Development Network