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

Software Development Network >> IBRAHIM ERSOY's Q&A profile

IBRAHIM ERSOY

Member List

hellomahesh
myGreenBird
dandrievsky
Faraz_Ahmed
LasseJ
PCSQL66
Chidu
EnigMa_AnGeL
GeorgesZ
Learning VB
saurabh1531
eye_v_eye
Amit V
Bill_Henning
Blast
John Gallagher
Bodylojohn
Markus_77
maglor_elf
Bill Reiss
Only Title

IBRAHIM ERSOY's Q&A profile

  • .NET Development opc automation

    I am trying to develop an opc - da client using .net. Have gone through the documents on opc and opc client and all, but am still not sure how to implement it, can someone give me a direction on how to start with it I don't know what opc - da is. However maybe these related threads can help you out: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=444488&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=324609&SiteID=1 ...Show All

  • Visual C++ Finding currently visible desktop

    Hi there, how can I find the currently visible desktop By calling EnumWindowStations and EnumDesktops I get a list of all available desktops. But is there a way to figure out which one of them is currently visible I've tried to find the visible desktop by comparing the desktop handle, returned by the OpenDesktop function, to the desktop handle received by calling OpenInputDesktop. The result is that the default desktop is always the one currently receiving user input. But by using the default desktop my window always shows up at the desktop of the first user logged on to the system after reboot. No matter if this desktop is currently visible or not! What am I doing wrong Or what is the right way to search for the currently vi ...Show All

  • SQL Server SQL and Internet

    Hello, I'm having problems with SQL SERVER 2000 and internet. I've a network with WINSERVER2000 and SQL SERVER 2000, and 5 Computer with WINXPPRO. They are connected to a swith witch is connected to router with internet by cable. The problem is that every time the internet fails, I can't connect to the SQLSERVER , when internet cames again it will work normally. I've a similar situation with another network with but instead SQLSERVER is MSDE. My program is based in VB.NET and my string connection is provided by the dataform wizard of VB.NET. What can I do to avoid this situation Thanks in advance, Luis Mendes Thanks very much for your reply, Currently I'm in ...Show All

  • .NET Development passing objects with webServices

    i'm trying to write a web service that will store objects that are created on the clients. clients will send the objects to the server and the server will save them then, when one client calls the server will pass the object to the client again. How can i do that yes, that is exactly what i did. and also i made the class definitns available both to the web service and the application. but when i try to use it in my application, i get an error message similar to this,cannot convert from MyClass to localhost.MyClass.what is the problem here ...Show All

  • .NET Development .NET Socket implementation

    Hi, I'm new to asp.net web application and also socket programming. I need help on socket programming. I want to create a asp.net web application page that can connect to the server using socket and for the data access part I need to use xml for communication between the server and the client applcation. The server connect to three databases and it acts as a middle man between the client and the database. The server is a program written in java. How am I suppose to do the socket programming inside my web application. Can anyone help me with that I really need help... As I can't find any good example on socket programming. Please help... Snow Hi everyone, I have a requirements that needs to ...Show All

  • Visual Basic Generating a Unique String

    I have a source text file in the following format (irrelevant fields removed) CODE,DESC,COLOR,SIZE 1234,FRED,BLACK,8 1234,FRED,BLACK,10 1234,FRED,BLACK/WHITE,8 1234,FRED,BLACK/WHITE,10 1234,FRED,BLACK/BLACK,8 1234,FRED,BLACK/BLACK,10 1234,FRED,BLACK/BROWN,8 1234,FRED,BLACK/BROWN,10 1234,FRED,BLACK/BLUE,8 1234,FRED,BLACK/BLUE,10 I need to create a unique 3 character code, for each of the BLACK, BLACK/WHITE, BLACK/BROWN, BLACK/BLUE etc So my result would look something like this CODE,DESC,SHORTCOLOR,COLOR,SIZE 1234,FRED,BLK,BLACK,8 1234,FRED,BLK,BLACK,10 1234,FRED,B/W,BLACK/WHITE,8 1234,FRED,B/W,BLACK/WHITE,10 1234,FRED,B/B,BLACK/BLACK,8 1234,FRED,B/B,BLACK/BLACK,10 1234,FRED,BBW,BLACK/BROWN,8 1234,FRED,BBW,BLACK/BROWN,10 1234,FR ...Show All

  • .NET Development Registy entries

    I have a VB.Net application ('05) that is useful on the OpenWith list. While I know it's possible to write code that will 'officially' associate my application with particular extensions, I have avoided that because I always found it annoying to have a new application presume to take over my file associations. All I really want to do is have my application show up on the list, so the user can select it as desired. The problem I am having currently is that my application shows up on the list and correctly opens the file when selected; however, the OpenWith list does not display either my icon, or, more importantly, the name of my program. I can manually correct the latter by going into the Registry and adding Data to the appropriate prog ...Show All

  • Internet Explorer Development Native XMLHttpRequest permission problem accessing local files

    There's a permission problem when access local files by the native XMLHttpRequest introduced in IE7. Here's a testcase. Just set up a 1.html with whatever in it, then run it. It fails on IE7 but works fine on other browsers such as Gecko-based Firefox, WebKit-based Safari. Anyway, this works fine too by using the ActiveX XMLHttpRequest. <script> var url = "1.html"; // local file http = new XMLHttpRequest(); http.open("GET", url, false); alert((http.status==200 || http.status==0) http.responseText : "HttpGet Error Status: " + http.status); </script> ...Show All

  • Visual Studio Express Editions reflection - createInstance on an object which doesn't have parameterless constructor.

    Hi, I am using reflection to all the class in a dll and their methods. While invoking some of the methods, my call to Activator.CreatorInstance fails since the class didn't have a parameterless constructor. Is it possible to find the constructors (with the parameters) and then create the object with those parameters Ignatius From the sounds of it you’ve already got an instance of the Type... if that is the case you can simply call GetConstructors() on that type to receive a list of the public constructors. After you’ve got that list you can then call GetParameters() on each one to get a list of their respective parameters so that you can more easily determine which one you want to ...Show All

  • Visual Studio Team System Granular Security on Public WIQ

      Yet another security granularity post. It seems that via the project security options that if the privilege of "edit project information" is turned off that this prevents the members of that group from creating public WIQ. That seems to make sense. That is project level information. Is there any security mechanism to granularly turn the ability of a specific group with "edit project information" set to false to allow them to have privilege to provide public WIQ I can't imagine what the action id would be other than a generic_write but is there an object other than the PROJECT objectClass I have poked and can't seem to find what object I might could even register or is registered in the authentication repository for that f ...Show All

  • Visual Studio Self-contained Embedding

    Is it possible to make a self-contained embedding as AClass->BClass->AClass At present there are quite severe restrictions on the domain models that we support.  Every class can only be embedded once; and every class that can have a shape on the toolbox must be embedded in the root class.  The consequence of this is that the shape you propose is not supported.  These restrictions will be relaxed in our V1 release. Steve Cook [MSFT] ...Show All

  • Visual Basic Checking MS-office service pack levels

    I have a vb.net app which does a number of checks on a user computer and reports these back to the help desk. I would like to determine the best way of finding the service pack level for the installed version of Microsoft Office. Using vb.net. Any pointers would be most appreciated. Each Office application also has a COM/Interop library that comes with the application(ie you must have the office app installed for your application to work on the clients machine). You must first reference this library at the project level(Project - Add Reference - COM - Microsoft Excel 11.0....) and then inside your class use an imports statement like: Imports Excel = Microsoft.Office.Interop.Excel ...Show All

  • Smart Device Development Question on COM

    Hi All, I am trying to write a COM component that inherits from another class. Essentially, my COM component is a plug-in that enables another application to control a device. I am in a bit of a dilemma now. My component will expose a particular interface to all other applications including the main device-controller application. I would like CoCreateInstance(...) to create an instance of the device when it is called. However, this instance should also inherit the functionality of a GenericDevice object. The implementation of some of the Generic Device functions is in the main controlling application. Hence, when I am writing my component I am also making a link to the lib file of the controlling application. My problem i ...Show All

  • Visual Studio Express Editions Regex trouble

    I am trying to list directories at a specific location and the location must be changeable, i need to remove all but the bottom-level directory name e.g. C:\Something\Somefile to change to Somefile, I tried to use a regex to replace C:\Something\ with nothing but i get an error telling me thai i have an invalid escape character. Because the location is not a string literal i cannot prefix it with @, what can i do to get the Regex.replace() method to work ...Show All

  • Visual Studio Team System Add reference to a separate team project

    We're building several libraries that we're going to use in many of our upcoming projects. One of them needs to use a library that is in a separate team project. What's the best way of doing this What I'd like is to be able to add a reference from the team foundation server's copy (because that'll be the checked-in release copy), and any time someone checks in a new version and builds a release DLL, it'll update that project. Is that possible Any other ideas Thanks, Johann MacDonagh We ended up solving this by standardizing the location of our local copies of team projects and adding references to DLLs built in the Release folder of projects. So although the "Path" to external reference DLLs i ...Show All

©2008 Software Development Network