Software Development Network Logo
  • Windows Forms
  • SQL Server
  • VS Express Editions
  • Visual C#
  • Windows Vista
  • Visual C++
  • Microsoft ISV
  • Architecture
  • Smart Device
  • Game Technologies
  • Visual Basic
  • Visual J#
  • Windows Live
  • Visual FoxPro
  • VS Team System

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

GeyikBaba

Member List

CurtisL
collide
chuckstr
Deasun
XE Paul
JunHong
Ciprian Gerea MSFT
A Govind
bazmcl
Mr.Smith
hippychic43
kerber
septembereleven
Ian Ringrose
Matthew Crockett
KZoli
E_l_i
Marek Istvanek
GLS_1985
C_w
Only Title

GeyikBaba's Q&A profile

  • Software Development for Windows Vista Vista Install 5342 problems

    I have downloaded vista 5342. I start installing it and it manages to rech phase 2 of the install. Now after the first restart during phase 2 of the install my screen eventually goes Black. It has an underscore "_" flashing at me in the top left corner of the screen. This also happens to me on build 5308. I heard that this black screen is where the hardware is checked. I have left it on this black screen for 1hour and still no look. I think it will be hardware related. My system is: AMD Athlon 64 4000 1gb geil dual channel PC3200 HIS Ati radeon x1800xt MSI K8N SLI Platinum 200GB Maxtor Diamond Max 10 ...Show All

  • SQL Server Overflow error that doesn't make sense....

    I'm troubleshooting a stored procedure that suddenly decided to stop working. I narrowed down the problem to the last part of the stored procedure where it selects data from a temp table and inserts it into a physical table in the SQL2000 database. I keep receiving the following error: Server: Msg 8115, Level 16, State 8, Line 140 Arithmetic overflow error converting numeric to data type numeric. The data values all appear to be correct with none of them seeming to be out of precision, but I keep getting the error. I've tried casting all the values and it didn't work. It executes w/o error when I comment out that particular insert. I just d ...Show All

  • Visual C# Fixed Pitched fonts

    How can I detect if a font is Fixed Pitched Yes, I see. I checked MSDN and WinGDI.h - there is no way to get LOGFONT from HFONT, it's input structure only. So the only way I found (but not tried yet) is to use GetTextMetrics() from Win32 API - there is same pitching information that in LOGFONT. May be this can help. ...Show All

  • Visual Basic Execute a stored procedure

    Hi I've added few stored procedures to my SQL Server 2005 database. Few of them were a procedures containing SELECT statements and one of them contains INSERT statement. While executing the procedures with select statements are as easy as displying tables, the procedure with INSERT statement is not so easy [for me]. At first, i've tried to add the procedure to the dataset and execute it as others, by filling the table adapter. But... there is now way to access the tableadapter within the code... VB does not recognise it! Just like it wasn't there! It's not even listed on with the other tableadapters below my project. It's viible only in the ...Show All

  • Software Development for Windows Vista Beta 2.2 hosted State Machine Workflow - runtime keeps disappearing

    I have a state machine workflow hosted in ASP.NET 2.0. I start the runtime in global.asax, as follows: string trackingConnectionString = ConfigurationManager .ConnectionStrings[ "TrackingConnectionString" ].ConnectionString; System.Workflow.Runtime. WorkflowRuntime workflowRuntime = new System.Workflow.Runtime. WorkflowRuntime (); workflowRuntime.AddService( new System.Workflow.Runtime.Tracking. SqlTrackingService (trackingConnectionString)); workflowRuntime.AddService( new System.Workflow.Runtime.Hosting. SqlWorkflowPersistenceService (trackingConnectionString, true , new TimeSpan (0, 0, 0, 10, 0), new ...Show All

  • .NET Development Populate TreeView with XML "On-Demend"

    Hi, I'm using a sample code from MSDN in order to populate a TreeView control with some XML data using XmlDocument and a recursive method: // SECTION 1. Create a DOM Document and load the XML data into it. XmlDocument dom = new XmlDocument(); dom.Load(textBox1.Text); // SECTION 2. Initialize the TreeView control. treeView1.Nodes.Clear(); treeView1.Nodes.Add(new TreeNode(dom.DocumentElement.Name)); TreeNode tNode = new TreeNode(); tNode = treeView1.Nodes[0]; // SECTION 3. Populate the TreeView with the DOM nodes. AddNode(dom.DocumentElement, tNode); treeView1.ExpandAll(); private void AddNode(XmlNode inXmlNo ...Show All

  • Visual C# Visual C# Express Edition Beta 2 and SQL Server Express Beta 2

    I tried to connect the SQL server express from C# Express beta 2 and got some error. In the "Add Connection" Dialog the options I gave are: Data source: SQL server Database Database file name: C:\Program Files\Microsoft Sql Server\MSSQL.1\MSSQL\Data\tempdb.mdf  Is it right else What to give here Used Windows Authentication and Data Source  .\SQLEXPRESS. Got the Error Message as: Unable to open the physical file "C:\....tempdb.mdf".Operating System error 32:"The Process cannot access the file because it is being used by another process". Thanks, Maria Hi, Looks ...Show All

  • Windows Forms MainMenu BackColor

    I've noticed that the MainMenu control does not have a backcolor property, nor does it take the colour of the form. For instance, change your forms backcolor property to green. Then add MainMenu1 to your form, and run the app. The menu doesn't get the colour cascaded down like other controls do. Either give the menu a backcolor property (ie: MainMenu1.BackColor) ...Show All

  • Visual Studio Team System Error during setup

    It seems I'm getting one error after another... my newest is the error 29112. -- Dialog -- Error 29112.Team Foundation Report Server Configuration: Report Server is not properly configured or the Reporting Services Web site could not be reached. Use the Report Server Configuration tool to confirm that Report Server is configured properly and that the Reporting Service Web site can be found before running the installation again. For more information see the Team Foundation Installation Guide. -- Part of MSI-log file -- 02/23/06 14:11:09 DDSet_Status: Commandline: "c:\Program Files\Microsoft Visual Studio 2005 Team Foundation Server\Tools ...Show All

  • Software Development for Windows Vista How to provide paths to Runtime for CreateWorkflow from XOML?

    My XOML contains custom activities. How do I provide the paths to the custom activities assembly so it can resolve them I know one way is to put all the assemblies together with the host. But sometimes the assembly are located with the "client" app, not the "runtime host". With WorkflowCompiler class you have librarypaths property, however the runtime compiles directly from XOML, and I can't see librarypaths for the runtime. In http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=208634&SiteID=1 Vihang seems to use TypeProvider as a runtime service. But that still doesn't solve the problem of paths. you can wri ...Show All

  • Visual Studio 2008 (Pre-release) saving inkcanvas as image

    Hello I am trying to create an image file from the inkcanvas. I have got the following code from some blog but the error comes that BitmapVisualManager is inaccessible due to its protection level. I dont know how the same code works in others people. RenderTargetBitmap rtb = new RenderTargetBitmap((int)inkCanvas1.Width, (int)inkCanvas1.Height, 96d, 96d,PixelFormats.Default); BitmapVisualManager bvm = new BitmapVisualManager(rtb); // draw the ink strokes onto the bitmap DrawingVisual dvInk = new DrawingVisual(); DrawingContext dcInk = dvInk.RenderOpen(); dcInk.DrawRectangle(inkCanvas1.Background, null, ne ...Show All

  • Visual Studio Crystal Reports connection string

    I am brand new at Crystal Reports... I am using VS2005 Professional, writing a VB.net Windows app with 3 Crystal reports. While developing I connected to our development SQL server, with the server name and db name specified in the app.config file. When I added a Crystal report (a last-minute user request), I found I had to parse the contents of the connection string from the app.config file in order to isolate and assign the server name and db name for Crystal. Q1: Was there a better way Q2: Even though I changed the SQL server name to our production SQL server when I published the app, Crystal is still trying to access the deve ...Show All

  • SQL Server FTP Delete task in SQL agent

    I have a FTP task created using SSIS that need to delete lot of files in a directory. This task is working fine if I'm Executing the SSIS package manualy but not working if I'm scheduling the SSIS package in SQL agent job. Anybody have faced this kind if situation is there any solution for this . I actually found the answer for my problem here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=356558&SiteID=1 I just made the protection level to "DontSaveSensitive" and when the SQL Server agent ran the package it ran properly. Hope it helps :) ...Show All

  • Visual Basic How to write smart application VB 2005/.NET

    Hi, I am a new programmer in VB basically I want to write a database programm in visual basic 2005/.Net managed by a central server(the user will be login from remote locations) means user does not need to install a whole programm on its PC only some runtime files, is it possible in VB 2005/.NET. waiting for reply. Khawar Hi, I am a new programmer in VB 2005/.NET, I want to write a database programe in 2005/.NET like Oracle Forms 9i (which runs in browser and doesn't require installation on user's PC except Java Initiator or runtime) is it possible to write a programm in VB 2005/.NET which doesn't require full installation on user's PC ...Show All

  • Windows Forms Toolbar buttons

    I understand there is a collection of graphics (suitable as toolbar buttons - Save, Open, Close, Print, etc.) that were included in the purchase of Visual Studio .NET. As a purchaser of Visual BASIC .NET, these graphics were not included. Does anyone know if they are freely available Many Thanks. there are many free graphics , on the web  ...Show All

©2008 Software Development Network