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

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

eyupcinar

Member List

Neil_FD
DevboyX
hellomahesh
harryengland1994
Mitch Wardrop
shwasasin
Husker
Oscarfh
swatts777
Michael1956
pdns
Rykie
MoniDD
Przemek G.
sean_kirkpatrick
Northern Rob
remedios_
Andre's
polocar
Olavo
Only Title

eyupcinar's Q&A profile

  • Windows Forms MDI child focus issues

    I have a MDI child forms in C# 2.0 with .NET 2. The problem I'm having is that the forms will not get focus if I click in the middle of the contents, only if I click on the header. Any hints on solving this one Hi, I'm not sure whether it will work ok. But give it a shot. Protected Overrides Sub WndProc( ByRef m As Message) If (m.Msg = 33) Then 'WM_MOUSEACTIVATE Me.Activate() End If MyBase.WndProc(m) End Sub ...Show All

  • Visual Studio Express Editions InputBox won't run from a shared Network Location

    I get the following message with the InputBox: System.Resources.MissingManifestResourceException was unhandled Message="Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Microsoft.VisualBasic.CompilerServices.VBInputBox.resources" was correctly embedded or linked into assembly "Microsoft.VisualBasic" at compile time, or that all the satellite assemblies required are loadable and fully signed." Source="mscorlib" StackTrace: at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean cre ...Show All

  • .NET Development confused with VWD C# ASP.Net

    I have some experience with vba, Access, html and have downloaded the VS2005 express software. I've been going through some of the videos, but find it quite confusing. Not clear how the pieces fit together. I would like to create a windows client to send requests/receive responses from an existing web service. I have the wsdl of the web service, and have VWD and VS 2005Express c#. I also have downloaded the net Framework 2.0 SDK. The existing web service is written in java. Materials I've found on the net seem to lead me to ASP.NET and creating webservices. Even the simplest tutorials I have found, seem to introduce extraneous concepts and, in my view, jump over many of the basics. Can someone point to some extremely clear ...Show All

  • Visual Basic Using LIKE inside Stored Procedure.

    I have a 'People' table that has CompleteName, Address, and Phone. I'm trying to look for the Name, and return the Phone number. I would like to use LIKE in the SELECT statement for the name. The code in VB is this: Using Command As New SqlCommand( "SearchPeople" , MyConnection) Command.CommandType = CommandType.StoredProcedure Command.Parameters.Add( "@Competename" , SqlDbType.NVarChar).Value = Textbox1.Text Using DataReader As SqlDataReader = Command.ExecuteReader() While DataReader.Read 'write stuff to a file, DataReader( "Phone" ).ToString End While End Using End Using The stored procedure code is this: CREATE PROCEDURE [dbo].[SearchPeople] @CompleteName ...Show All

  • Visual Studio Team System Compiler Warnings - Can I indicate I want the build to fail?

    Is there a way to indicate that I wish the team build to fail if any compiler warnings are encountered You could go down the route of creating a separate build configuration which treats warnings as errors, enables Code Analysis, etc.... Have your Team Build use that build configuration by default. Your developers can then develop in standard "Debug" configuration, and test their work on the more stringent build configuration before submitting changes. ...Show All

  • Software Development for Windows Vista How to embed binary tiff images into XPS Document with Transparency

    Hi , Can any one please let me know how to embed binary tiff images into xps document with making the text data of the image as transparent to the background. Thanks in advance for earliest reply, Santhosh. The tiff format supports alpha channels (even embedding clipping paths, if I'm not mistaken, not sure how these are being handled in xps - need to read the spec on this). Regarding how to set this: I think this is up to the source of the tiffs, because that device/software should embed this information in the tiff. nixps ...Show All

  • SQL Server FoodMart 2005 AS Project Deploy Fails

    PROBLEM: After opening and connecting the FoodMart 2005.sln file into BIDS, I am able to connect (test connection succeeded), and also noted that DSV refresh "noted no changes", so I believe the connection is fine. However, when attempting to deploy the project to AS 2005 (in order to browse cube, etc.), the deployment fails with the following error notice... " Error 1 The following system error occurred: The trust relationship between the primary domain and the trusted domain failed. . 0 0 " QUESTIONS: A: Does an "SP2 workaround" for FoodMart2005 need to be defined and published B: Is this an issue that is familiar to the authors, and does a known solution exist I'm open to the possibility ...Show All

  • Visual Studio Express Editions Accessing Access through Visual Basic 2005 Express

    Hello everyone. I am trying to make an application using Visual Basic 2005 Express Edition that will open Microsoft Access 2003, open a specified database file, and then execute a specified Macro/Module. Is there a way to do this  Add the Office Primary Interop Assemblies onto you machine. If you dont know what these are do a web search for http://www.google.com/search hl=en&q=Microsoft+%2B+office+%2B+pia Add a reference to Microsoft Office Interop Access and then use something like the following code. Dim Adb As New Microsoft.Office.Interop.Access.Application Adb.OpenCurrentDatabase( "Path To the database" ) Adb.Run( "Macro name to be ran.." ) Adb.CloseCurrentDatabase() Adb. ...Show All

  • SQL Server Destination resets when changing selected databases

    I discovered that everytime I need to add a database to my backup Maintenance Plan, after I select the new database from the drop-down of databases, the Destination automatically resets back to a default location. I'm assuming this is a bug that will be resolved at some point, but in the meantime, I need to see if there is a way I can deal with this permanently. I am not the only one adding databases to the backup routine so I can't verify that this setting is properly changed every time we have a new database (which is about once a week). Thanks in advance. Thank you Kevin!!!  That is great.  I will go make the setting (carefully of course) now and we should be good to go. For what it' ...Show All

  • Visual Studio 2008 (Pre-release) using an image as button content

    Hey guys i'm to display an image on a button using the following code but i get an IO exception. Uri uri = new Uri("pack://application:,,/410voefe.jpg"); BitmapImage bitmap = new BitmapImage(uri); Image img = new Image(); img.Source = bitmap; img.Stretch = Stretch.None; Button btn = new Button(); btn.Content = img; btn.HorizontalAlignment = HorizontalAlignment.Center; btn.VerticalAlignment = VerticalAlignment.Center; Content = btn; I've added the jpg to my project as an existing file and i've changed it's Build Action to "Embedded Resource". Thanks for any help! I've added the jpg as an existing file into the project and ...Show All

  • .NET Development Easy Question. How put scroll following abilities in Asp Menu ?

    I have one Menu in asp . But know i just want menu following if a scroll down or up. I see i can do this with javascript, but how can i put this have someway to use code asp in menu and put follow scroll Thanks See.... I have this code and i need put something to do menu follow scroll. I think in this javascript ... var Hoffset=200 // largura var Voffset=160 //altura var ieHoffset_extra=15 var cross_obj= document.all.staticbuttons function positionit(){ var dsocleft=document.body.scrollLeft var dsoctop=document.body.scrollTop var window_width=document.body.clientWidth+ieHoffset_extra var window_height=document.body.clientHeight cross_obj.style.left=parseInt(dsocleft)+parseInt(window_width)-Hoffs ...Show All

  • Architecture Creating Assembly Plugins via Reflection

    Question I am in the process of creating an application that uses plugins to provide business logic/operations. The application will look for specific named assemblies in the current directory and when found will instantiate a pre-specified interface from the assembly(ies) for stateful processing. My question is, are there any gotchas or anything that I should be aware of while undertaking this task Feedback concerning your experiance with reflection or plugins are helpful. Also debug issues and tricks that you have done. WHY Creating a application which will execute individual code assembly plugins to provide a common footprint of operations for business logic activities. Platform .Net 2 C# advTHANKSance Here's a few pointers b ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Should R16F format work for Texture2D?

    I've created a R16F format DDS, without MIP maps, using the NVIDIA Photoshop plug-in. The Texture importer can import it, and the Texture processor ("mipmapped" plain) can process it. However, when I call Load<Texture2D>("myname") I get an invalid call exception. Which formats are expected to work If I change the format to R32F, it works. Ideally, I'd like to use L16, but I can't get NVIDIA nor the DirectX SDK plugins to actually save that out. I was hoping to use Texture2D as a general raster data loader, without using it on a device. I had been hoping that validation would be lazy -- only get an error if attempting to realize the texture on a device. Apparently, that's not the case. I guess writing your o ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Collision detection - Howto

    Hi all, I'm trying to make two objects collide in GSE, actually in a Pong game - between the bat and the ball. I have motion for both, but no collision, the ball just leaves the stage so to speak. Any help would be appreciated. I have looked in the Help, but to no avail. For collision detection in the game I'm making right now I'm using a simple distance check as opposed to bounding boxes... It's not pixel perfect collision but if all you need is something quick and easy that works pretty good, here's the function. public double distance(int x1, int y1, int x2, int y2) { double dist = Math.Sqrt((x1 - (x2)) * (x1 - (x2)) + (y1 - y2) * (y1 - y2)); return dist; } It returns how far away the coordinates a ...Show All

  • Visual Basic Need to show a Simple Chart

    Hello, I was wondering if anyone had any recommendations for showing a simple chart in a VB application. Basically, I have An X and Y axis and I want to show a line chart. Any recommendations anyone could provide would be helpful. Preferrably it would be something free (if it was a control) as this is a one time deal. Thanks a bunch. There's also: http://www.newfreedownloads.com/Software-Developer/Active-X/Chart-Control.html and http://www.newfreedownloads.com/Software-Developer/Miscellaneous/Chart-component-Net.html is Teechart doesn't work out for you. ...Show All

©2008 Software Development Network