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

Software Development Network >> Mürşit Hakan ÇİL's Q&A profile

Mürşit Hakan ÇİL

Member List

pnp
angelina
Yifei Wu
Ray Fernandez379013
Corres
NickGetz
MrBillFromOverTheHill
impish
Nyasha
MDesigner
Fahad349
Maurice Pelchat
Sanjukta
Derek at Potters Clay
Ivan-san
piell
dennist685
Salric
Meng CHew
Steve Hempen
Only Title

Mürşit Hakan ÇİL's Q&A profile

  • Visual C++ programming message switch

    Does anyone know of a tutorial/website that explains how to program the message switch into the message loop It won't let me handle some messages inside the loop. I believe you have misunderstood the concept that is message loops and delivery. Normally, you will issue a GetMessage call, which will wait for a new message to arrive. This message is sent through TranslateMessage, to translate virtual keys into characters and post them back to the queue. Finally, you call DispatchMessage, which ships the message off to the Window Procedure of the window (HWND) in question. The Window Procedure should handle the messages you want to consider, and return the values indicated by their documentation. If you ...Show All

  • Visual Basic Problems joining a String and Variant

    I'm fairly new to this, and can't get past a simple task to create a new string from a Variant and a number. I'm trying to generate a list of (string) names which consist of a 2 or 3 letter club name joined to a digit such as 1,2 or 3. Sub Generate_team_list() Dim num_of_teams As Integer Dim row_counter As Integer Dim MyStr1 As String Dim MyStr2 As String row_counter = 1 For club_counter = 1 To number_of_clubs current_club = Range("Club_Names").Offset(club_counter - 1, 0).Value For team_counter = 1 To 3 MyStr1 = Application.WorksheetFunction.Text(team_counter, 0) MyStr2 = current_club Range("Starting_Cell").Offset(row_counter, 0).Value = MyStr1 & MyStr2 row_counter = row_c ...Show All

  • .NET Development .Net Framework 2.0

    Hello all, When I started to program a service using a ftp to upload files to I noticed that my Visual Studio .NET (or at least the C++ part) is still using .net 1.1. This creates a problem (for I would like to use the FtpWebrequest class that is integrated in .Net Framework 2.0) Thanks in Advance, Dexter Then why doesn't Visual Studio 2005 include templates for C++.Net features like Studio 2003 does. Can I possibly import them or should I keep starting projects at the 2003 studio and import them to 2005 in order to make them work correctly. What is this for an inconvenient manner Dexter ...Show All

  • Visual C++ Where is this said "fulfillment site"?

    "The last SDK that will work with VC 6.0 is the February 2003 Edition, you can order a CD on the fulfillment site. Side by side installations are not supported." OK, sounds good ... how about a link to it, Bill!! Can someone please post a link to this "order a CD of February 2003 Edition of the Platform SDK for Visual C++ 6.0 fulfillment site" Many Thanks in Advance! Robert Thank you very much, Sahir! I was hoping to actually order the CD as I have serveral PCs to install this update on. I have searched the Microsoft and the MSDN sites looking for this "fulfullment site" with no luck. Maybe it's no longer actually available, since the message was posted ...Show All

  • SQL Server How to connect to Analysis Services with Excel 2007 Data Mining Add In?

    I downloaded a trial version of office 2007 and the data mining addin. I do not have an automatic connection to Analysis Services, so most functionality does not work. Is it possible to configure a connection with a trial version If so, does anyone know what the server name is and how to configure it the server name is typically the name of the computer that is running Analysis Services 2005 (the machine where SQL Server 2005 is installed). If this is installed on the same computer as Office 2007, then you can use "localhost" instead of the computer name. In case you need a trial version of Analysis Services 2005, you can download it from here http://www.microsoft.com/sql/downloads/trial-soft ...Show All

  • .NET Development Where to place the connection string

    Hi, I'm creating a Windows app and was wondering where to put the connection string for all five of my methods In my web apps I've always put the connection string in the web.config file but am not sure where to put it on a Windows app, and also how to reference it from its location. Can anyone please help Many thanks, Jimmy, For this you'll have to add a reference to System.Configuration. U can do this by right clicking the your project, and select add reference. Now in the using section, add - using System.Configuration; Now in the code or in th method, just write ConfigurationManager, u will get this in the intellisense. There is separate connectionString property thats there when u hit a ...Show All

  • Visual Studio 2008 (Pre-release) Hiding minimize,maximize and close buttons in Mediacenter

    Is this possible to hide minimize,maximize and close buttons in Mediacenter......If yes...Please provide me the code or the tool to do that. Actually i am working on a application with runs in the windows mediacenter and i want to control the minimize, maximize and the close buttons of media center in my applicatio Yes,if you built a Media Center yourself but controlling the MediaCenter thats built into the into the O/S. Well thats not possible unless Media Center has that option to hide those buttons. Which i'v never seen cause i have XP Pro with Media Center 2005,so sorry to say i dont think its possible. ...Show All

  • SQL Server Error: System.Runtime.InteropServices.COMException ...

    Error: System.Runtime.InteropServices.COMException (0x80040428): Exception from HRESULT: 0x80040428 at DTS.PackageClass.Execute() at Microsoft.SqlServer.Dts.Tasks.Exec80PackageTask.Exec80PackageTask.ExecuteThread() Can anyone tell what caused this error when I tried to run the DTS package from my SSIS package Thanks. Steve I have rewrote the DTS package into a stored procedure that 1) Truncates the target tables 2) Copy the data from the source on another database to the target tables 3) Backs up the target database. Now the account that would not run the DTS package runs a stored procedure successfully! ...Show All

  • Visual Studio 2008 (Pre-release) Custom IServiceBehavior attribute not invoked when hosting under ASP.NET?

    I have a custom IServiceBehavior attribute implementation that works great when hosting under ServiceHost. However when hosting under ASP.NET it doesn't seem to even be instantiated let alone invoked. What's even weirder is that if I turn on ASP.NET compatibility mode it doesn't even load the assembly that my IServiceBehavior attribute is defined in. Any thoughts/experiences are appreciated. Cheers, Drew Nevermind. Developer error, they were just instantiating the service class and calling it instead of invoking the actual service through WCF. Cheers, Drew ...Show All

  • Visual C++ warning LNK4248: unresolved typeref token (01000017) for '_TREEITEM'; image may not run

    When compiling my program which is a windows app and not a DLL, I get this error message under Release mode but not in Debug. Furthermore I can get rid of the warning if I don't use managed extensions (remove \clr) in the project properties. Is there not some releases source code from Microsoft to allow the _TREEITEM and _IMAGELIST object to run in managed extensions I thought the goal from MS was to have us use the managed extensions and therefore I would think that this situation would have been resolved a long time ago. I've read the link where this exact same error is generated with a DLL but this is a standard windows app and therefore doesn't have a DLLMain code. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=7750 ...Show All

  • SQL Server Report Manager Print does not respect page orientation or margins.

    I have been experiencing a problem when viewing reports in IE (versions 6 and 7) in that the page orientation and margins set in the RDL are not passed to the print layout. I am using the one-time download print program for RS, not IE's print dialog. As an example, I have a Landscape report with .25 margins all around. When I go to print, it is defaulted to Portrait with 1 inch margins all around. Any help would be greatly appreciated. -Nick ...Show All

  • Visual C++ DataSet Creation Visual C++ 2005 Express Edition

    Hello All, I am trying to create my own dataset like this: using namespace System; using namespace System::Data; ..... .... int main( array <System::String ^> ^args) { DataSet TT = gcnew DataSet(); } When I am trying to build this it gives me the following error: ..\DbCheck.cpp(29) : error C2664: 'System::Data::DataSet::DataSet(System::String ^)' : cannot convert parameter 1 from 'System::Data::DataSet *' to 'System::String ^' I don't know why Can somebody help me out and explain to me why this doesn't work' Many Thanks !! Just taking a quick look at the code... gcnew returns a handle to the newly created instance of the object, not the object i ...Show All

  • Visual Studio How to refresh Crystal Report With Parameters Based Stored Procedure ASP.NET???????

    Hi All, How to pass parameter values to the Crystal Report on ASP.NET I write following code to refresh the report but I can't get the report as per my parameter value Please review my code below, and help me where i do mistake                           void test() {           string strRepType = Request.QueryString[ "RepType" ];           string strCode = Request.QueryString[ "Code" ];           string strYearMonth = Request.QueryString[ "YearMont ...Show All

  • Windows Forms Populating a datagrid

    I am pretty new to C# and programming for the most part. I currently have an Access database created with data already in it. What I am trying to do is to have a user select from a combo box what he or she wants to look at. After selecting from the combo box I have a button that needs to be pushed so that it can populate the datagrid. private void bGo_Click( object sender, EventArgs e) { if (cbBCBS.Text == "CTA" ) { this .cTA_DIAGTableAdapter.Fill( this .bcbscheckerDataSet.CTA_DIAG); } if (cbBCBS.Text == "MR Breast" ) { this .mRI_BRST_DIAGTableAdapter.Fill( this .bcbscheckerDataSet.MRI_BRST_DIAG); } if (cbBCBS.Text == "MRA" ) { this .mRA_DIAGTa ...Show All

  • SQL Server SQL Server Migration Assistant for Access: Where is it set up? How to use it?

    Hi all, I have Microsoft Access 2003 and SQL Server 2005 Express/SQL Server 2005 Management Studio Express in my Windows XP Pro PC. I just downloaded and installed the Microsoft SQL Server Migration Assistant for Access (ssma-foraccess_1.0.389.msi, 7/31/2006, 5.3 MB). But I do not know where the SQL Server Migration Assistant for Access is set up now and how to use it to upsize to the .mdb files of my Access 2003 databases to the SQL Server 2005 Management Studio Express as the .mdf for the SQLDataSource. Please help and give me the detailed instructions/procedures to use the SQL Server Migration Assistant to perform the upsizing task. Thanks in advance, Scott Chang ...Show All

©2008 Software Development Network