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

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

IBRAHIM ERSOY

Member List

Bernaridho
dotHuman
Lawrence 007
Helen Cool Granny
Jehan Badshah
bshive
DavidC#2005
Jamie Thomson
Greg Blotzer
Joe2005
stratos13
sdochert
D W
GunaChinna
vijil
Shady9399
Scott Allison
R.Tutus
Artmark
FSchmid
Only Title

IBRAHIM ERSOY's Q&A profile

  • Visual Studio Team System Will record & playback try to perform in same duration?

    Hi, Since the application depends on the server responses, I have this doubt. What if will happen to the execution of tests, if on recording the server response time is fast and on execution, the server is hanging. Kindly clarify if anything like that Or else do I have to change the ThinkTime after the recording for saferside. Kindly suggest. Thanks - Vijay. If there is a maximum amount of time a request can take that you would consider anything greater than a failure you can use the Max Request Time validation rule for that. Otherwise there shouldn't be a problem. The playback is not timing based, it will issue each of your top level requests one at a time until it completes. It won't start your 2n ...Show All

  • SQL Server having the same definition for 2 indexes

    CREATE NONCLUSTERED INDEX [operation_breakdown_machine_pk] ON [dbo] . [operation_breakdown] ( [machine_pk] ASC ) WITH ( PAD_INDEX = OFF , SORT_IN_TEMPDB = OFF , DROP_EXISTING = OFF , IGNORE_DUP_KEY = OFF , ONLINE = OFF ) ON [PRIMARY] CREATE NONCLUSTERED INDEX [IX_operation_breakdown_machine_pk] ON [dbo] . [operation_breakdown] ( [machine_pk] ASC ) WITH ( PAD_INDEX = OFF , SORT_IN_TEMPDB = OFF , DROP_EXISTING = OFF , IGNORE_DUP_KEY = OFF , ONLINE = OFF ) ON [PRIMARY] aren't they exactly the same what are the possible effects of having the same definition for 2 indexes could it be possible that this has been overlooked by the administrator i would just like to ver ...Show All

  • Visual C++ C and .net

    Hi, I've lots of programs written in C (not C++) and I want to include some .net framework in them. How can I do I've Visual Studio.net 2005. Thanks. SerialH well it is prbly practically impossible to use .NET from a C compiler, but.... since C++ is backwards compatable with C you may be inluck. It is possible to call a pointer to a managed .NET class in native C++. first make a native class in VS, than declare the managed object you wish to use like so: gcroot<ManagedClass^> MyObject; Now copy your old C code into the class in an appropriate place; you can now use C/C++ to do stuff with the .NET MyObject Also don't forget to include vcclr.h, otherwise it won't work. ...Show All

  • Visual Basic O'kay so I now have a working application. How do I port it to other computers?

    I can install VB 8 onto other computers along with my application, but that seems unusual. The other PCs never will be programming in VB. They want to just use my application. Question: Please explain to me in a step-by-step button clicking and dragging fashion how to do this. More Simple To Vb menu click build. Then outside the vb open the folder of Yr app. You'll find there a folder bin and there You have the exe file. Just run it and everything is ok ...Show All

  • SQL Server Extracting Attribute Values from XML Using XQuery

    I am serializing a .NET object as XML and passing it as a parameter to a stored procedure. I am new to XQuery and have tried other places to find the answer to this question but have so far been unsuccessful. How can I get the value of an attribute out of an XML document as a standard SQL Server data type For instance, if my XML document were: <RootNode> <Object ID = "1234"> <AnElement>Some Other Value</AnElement> </Object> </RootNode> What would be the correct XQuery to get the value of the ID attribute in the Object element Thanks in advance. Kevin J Lambert create table #xml_temp ( xml_col xml ) insert into #xml_temp val ...Show All

  • Windows Live Developer Forums Bot Platform SDK

    Hi, Can I made my own SDK How Thanks Erik Hi, I want to made my SDK bot platform, I not want to use the sdk existents in robot contest. Can I do that Thanks ...Show All

  • .NET Development VB.NET and MYSQL

    Hey guys: Where can i get help in order to connect VB.NET to a remote MYSQL database Framework : Net 2.0. Languaje : VB.NET OS : XP Profesional Database : MYSQL Imports : Systen.Data.Oledb String connection : Provider=Microsoft.Jet.OLEDB.4.0;Server= www.domain.com ;Data Source= Mydb ;Uid=xxx;Password=yyy;" Errror : No se pudo encontrar el archivo ISAM instalable Remote server is available. Same error is produced when try to connect to localhost Database is up and running Thanks in advance campo Thanks: I downloaded MySQL .NET Conector from: http://www.mysql.com/products/connector/net/ Program is running ok without ODBC. ...Show All

  • SQL Server Keep package alive forever

    Hi there, Does anyone know how i can keep an ssis package used for real time reporting alive no matter the amount of errors it gets So for instance the server im streaming to is shutdown for maintenance, and the connection dies, its needs to just keep re-trying. In other words the maximum error count is infinite. i dont just want to set max err count high, i want it out of the picture all together. Thanks We currently replicate. but due to performance issues starting to rear their heads, we have changed our structures on our ODS to include only data marts - therefore we need to transform all that gets replicated to our ODS ...Show All

  • .NET Development Xml Woe

    Ok, so I have a function to parse an xml file in my application. Now, the only problem is, I need to know what level I'm at, and I move up a level when I find a Node of type Element, and go down a level when I find ElementEnd. My problem is, when I come across an element where it looks like this: <element /> Instead of: <element> </element> It messes me up, because it's only picked up as an element, and no element end. Here's the code I'm using: langReader is System.Xml.XmlReader fParseLog is just a form with a log on it while ( langReader.Read( ) ) { // This variable stores what each line in the log window is sWindowString = ""; // Use a switch flow-control to determine the type of ...Show All

  • Visual Studio Express Editions Counting Mouse clicks?

    How can I count mouse clicks in VB.net The purpose is to select an entire sentence with triple clicks. ( Windows by default selects a word on double clicking ) There's good news and bad here. The good news is the both controls are rich in events for mouse interaction which means that wndprocs will be too. But here is where I've had difficulty. There are windproc mouse double click messages and perhaps there's information in lpatams that I haven't fully explored, but I've never been able to fully characterize a double click at the wndproc level although both of these control have an event. I have step back for a moment and think. You have a doubleclick event. Why not start a timer after a double cl ...Show All

  • SQL Server SQL Browser Service EXE

    I get an error about every 30 seconds that says SQL Browser Service EXE has encountered a problem and can not continue. Any one have any ideas I've tried searching around a little but haven't been able to find anything useful. Is this something I can reload Susan, I actaully found a solution... it seems it was some strange virus. I found a script some one wrote to clear it out. Problem hasn't come back. I'll see if I can find the file for you and post a link. I probably won't be able to do that till later this evening though. ...Show All

  • Visual C++ Problems using _fseeki64 and _ftelli64

    Hi, I am using VS 2003 and i need to call _ftelli64 and _fseeki64 in my application. However i am getting linker error error LNK2019: unresolved external symbol __ftelli64. Are these functions exported for VS 2003 build applications. Please suggest any solution Thanks MM Ansari In Visual Studio 2005, the _ftelli64 function is defined in stdio.h header file. But in Visual Studio 2003 there is no such definition, therefore I don’t think you can easy access this function using header files and libraries supplied with Visual Studio 2003. In my opinion you either have to switch to Visual Studio 2005, or to use Windows functions like SetFilePointer or SetFilePointerEx , which work with large integers. ...Show All

  • Windows Forms Drag and dropping custom UserControl objects into a panel

    Endgoal: making some sort of graphical math equation editor. Starting point: generating fixed sized blue blocks that are constructed at the mouse's location at the end of a drag and drop from a simple button. Everything works great so far. I've put even handlers in the right places, etc. Except for this: http://s93768914.onlinehome.us/pub/blockcsharp.jpg As you can see, there's a region in the top left which is inaccessible to the viewing of my block objects. I have no idea where it comes from, where it could be defined.  Any ideas I figured a workaround, although I don't understand why I need to do it fully. The objects I create at the end of the dropping are my own class of objects, derived from Us ...Show All

  • Visual C++ Kerberos TimeStamp -- Unhandled Exception 0xC0000005: Access Violation

    Hi All, I've developed a Single Sign On application using Visual C++ 6.0 that uses Kerberos authentication. My application does what it is supposed to do, but I want to be able to view the expiry time of both the credentials (as returned by AcquireCredentialsHandle) and the security context (as returned by InitializeSecurityContext) for debug purposes. The expiry time is of data type TimeStamp, which is a LARGE_INTEGER union structure which is used to represent a 64-bit signed integer value. You can reference the low and high order 32 bits (using LowPart and HighPart) or the full signed 64-bits (using QuadPart). Just for starters I was trying to view either the LowPart or the QuadPart, but everytime I include ExpiryTime.QuadPart (where ...Show All

  • SQL Server IUSER Security Risk??

    We have an old ASP application that authenticates to a SQL Server 2000 database using the IUSER account. We are exploring the possibility of moving it to a DMZ so users can access from home. The IUSER account is being used for all database activity for this application. Is there any reason to be concerned about using IUSER as opposed to sql authentication for this tool, or any other security risks I should be wary of. Mind you there may be some sensitive information contained in the database. Thanks in advance. I would recommend either application roles or some other security method, such as a middle-tier or at least SQL Server security to access the database rather than this user. For one thing, you c ...Show All

©2008 Software Development Network