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

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

yanivpinhas

Member List

R.Nargang
ashk1860
AdeptBlue
Cute_Celina
Tom v E
Binco
john_paul
MoniDD
EwenTweedie
Wouter Veugelen
DusanMihajlovic
JennyG
Al33327
Rabbi Joseph Gordon
StarSS
Alvin Kuiper
AkerMan
Lo&#239&#59;c Baumann
Edentheguy
just enough
Only Title

yanivpinhas's Q&A profile

  • Visual C# IDE Navigator Problem

    My IDE Navigator opens normally when I press ctrl+tab, but it doesn't go away when I release the buttons. I have to ESC to cancel or press enter (or click) to choose an option and dismiss the navigator. I understand that this is normal behavior if sticky keys are turned on - but they aren't. This had always worked normally until yesterday, and I don't know what might have changed. The cat sat on the keyboard - maybe it was her fault... I'm using VS Professional 8.0.50727.859 on Windows Vista. Jim I had this problem after I leaned on the Shift key a bit long and the Accessibility Settings window popped up. I cancelled it and had the same problem with VS. To fix it I turned on the accessibility options, clicked Apply, then ...Show All

  • SQL Server is_member behavior

    Hi All - I am running sql2005 on windows 2003 all with uptodate SPs Im sure this has been discussed somewhere, but I just dont understand why its behaving this way. my issue is that if a 'db_owner' is a member of another db role then the is_member('some_other_role') always returns 0 example: dbrole: testrole ntuser: joeuser ntgroup: testgroup ntgroup: grpsysadmins joeuser is a domain login. testgroup and grpsysadmins are both nt groups. joeuser is a member of both testgroup and grpsysadmins grpsysadmins is a member of administrators grp on the sql server machine testrole is a sql role testgroup is a login into sql testgroup is a member of testrole 1) when I do select is_member('db_owner') I get 1 2) when I do select i ...Show All

  • Visual Studio Getting exception error while loading add-in with non-admin user

    Hi All, I have created a visual studio 2005 add-in to add some user defined menu under File menu. For this I am referring Microsoft.VisualStudio.CommandBars.dll assembly file. I am also exposing some functions from my add-in dll by creating an Interface to be used in unmanged code. I have created msi installer by using windows deployment project to install this add-in. I haven't included EnvDTE.dll and Microsoft.VisualStudio.CommandBars.dll in my installer. When I installed my add-in with admin user, it works very well. But failing for the following case. 1. Create a non-admin user on the machine. 2. Login with admin user and install the add-in. 3. Login with the non-admin user and try to open VS2005 IDE. ...Show All

  • Visual Studio Team System Notification Services - Schemas (XSD) and XSL files

    Hi All, I found that for few events, the schema definition files (XSD) and XSL files missing in the directory "....\Services\Transforms..." . I am doing some customization in notification services which you can subscribe for all the available events....for this because the schemas are missing, i couldn't call the event to subscribe... Is anybody already created Schemas for the following events and XSL file also, then please share with me or point me how to proceed BranchMovedEvent  NodeCreatedEvent  NodePropertiesChangedEvent  NodeRenamedEvent  NodesDeletedEvent  ProjectCreatedEvent  ProjectDeletedEvent Thanks, Kathir As pointed out in http://forums.microso ...Show All

  • Windows Forms Import a CSV into a MSQL table

    Ok Using Visual Studio 2005, (and C# if that matters) I have a MySQL Table, which I am going to export into a CSV (Comma Seperated Value) Sheet I know in MySQL you can insert a CSV to add the rows to the table How do I do this in MSQL, using Visual Studio 2005 Muchas Gracias What I done, was Export the MySQL table, using full INSERT code then done find and replace (as the fieldnames were different) and changed Double quotes for Single Quotes " ' Then just ran the query in the Visual Studio DB Section ...Show All

  • .NET Development Windbg - "Failed to request ThreadStore"

    Hi, I'm debugging a C# app (that sits on top of an unmanaged c++ app). I've loaded my .dmp file in windbg, and loaded the sos extension. Running the !threads command gives the above error, searching around I can't find any information about what can be causing this I can use the ~ command to see all native threads running. Running the !dumpheap command gives the following: The garbage collector data structures are not in a valid state for traversal. It is either in the "plan phase," where objects are being moved around, or we are at the initialization or shutdown of the gc heap. Commands related to displaying, finding or traversing objects as well as gc heap segments may not work properly. !dumpheap and !verifyheap ...Show All

  • Visual Studio Team System Team Explorer connecting to the wrong hostname?

    Hi Guys, I've installed VSTS to a rack server we are renting from a hosting company. The computer name was assigned to us with some internal name used by the hosting company. We have configured DNS etc. etc. on the box such that for all intents and purposes it appears on the web as a normally resolving internet hostname. However, when I attempt to add a New Team Project through Visual Studio to the VSTF Server, it seems to be putting this onto an incorrect web address. So instead of the site being http://www.something.com/sites/ProjectName it is being added as http://servername/sites/ProjectName , where servername is the name assigned by the hosting company, and as such does not resolve over the web. It fails stating that it cannot connect ...Show All

  • .NET Development SqlBulkCopy: the locale id '0' of the source column '<column name> ' and the locale id '1033' of the destination column '<colum

    Hi, I am using the sqlbulkcopy object to transfer large amount of data from one SQL server to Other. The code look like this.. SqlDataReader readerSrc = null ; SqlBulkCopy bulkCopy = new SqlBulkCopy (connDest); //Prepare Destination Table. SqlCommand cmdDelete = new SqlCommand ( "DELETE FROM " + destTableName, connDest); //Set the sqlcommand text SqlCommand cmdGet = new SqlCommand ( "SELECT * FROM " + srcTableName, connSrc); //Open source connection. connSrc.Open(); //Open destination connection. connDest.Open(); int delete = cmdDelete.ExecuteNonQuery(); //Get the data. readerSrc = cmdGet.ExecuteReader(); //begin transfering data to destination bulkCopy.DestinationTableName = destTableName; bulkCop ...Show All

  • Visual Studio Express Editions window.h not found ?

    Hi: I've now been programming for almost a year with CodeBlocks and decided to switch to VisualC++ as I joined a team that is using it. So I install it and try to create a blank project: everything ok. The I add this line: #include <windows.h> Compiler says that the file does not exist so I copy window.h to the VC++ include folder along with all the other headers i had in the CodeBlocks include folder. I try to compile again and here's what i get: 1>------ Build started: Project: myOwn, Configuration: Debug Win32 ------ 1>Compiling... 1>myOwn.cpp 1>e:\applications\microsoft visual studio 8\vc\include\winnt.h(3035) : warning C4103: 'e:\applications\microsoft visual studio 8\vc\include\winnt.h' : alignment changed after in ...Show All

  • SQL Server sqlcmd with trusted connection and IP address or fully qualified hostname

    The command sqlcmd seems to fail when using trusted connection and an IP address or a fully qualified hostname. For example: sqlcmd -E -S nnn.nnn.nnn.nnn where nnn.nnn.nnn.nnn is the real IP address of the machine, or sqlcmd -E -S hostname.domain.com where hostname.domain.com is the fully qualified hostname of the machine, gives the error: Msg 18452, Level 14, State 1, Server 380GX280B05, Line 1 Login failed for user ''. The user is not associated with a trusted SQL Server c onnection. On the other hand, sqlcmd -E -S 127.0.0.1 works, and so does sqlcmd -E -S hostname, or sqlcmd -E -S tcp:hostname,1433. This is on a clean machine, with SQL Server 2005 freshly installed as Administrator with mixed authentication, and the ...Show All

  • Visual C++ class designer for Visual c++

    Will there be a class designer for visual C++ hope microsoft will provide one in their next version. why do microsoft push more on .net languages more business and market I guess !!! Svenc : I do like to write the classes in the header files. but when you design classes it is very difficult to visualize things in a broad sense. On the other side of the coin .net comes with a class designer that generate code out of it and if we change anything in the design later on it is reflected in the source as well. Don't you think it would be great to have class designer where you can see things and change your intial design accordingly I do agree on a ATL/CLR standard but the question is, will microsoft ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Dec 2006 SDK - include files no longer work?

    I am working on shifting some shaders to work with the Dec 2006 DX SDK, but am having issues with #include working in the hlsl now. If I throw in the flag to use the old dll, it works great, but it seems that #include no longer works with the new SDK Is there a new option that needs to be implemented or just a bug ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Texture Mapping Using 3ds Max for XNA Studio Express?

    I am using 3ds Max 9.0 64-bit to create models for XNA Studio Express. I use the following process: 1. I create the model and apply texture in 3ds Max. 2. In 3ds Max I "Render to Texture" to creat a .tga texture file. 3. In 3ds Max the .tga file is shown in the Asset Tracking screen under "Maps / Shaders". 4. I "Export" the model to .fbx 5. I add the .fbx file to "Models" in my project and the .tga file to "Textures" After compiling and running the game, the model appears without the texture. I then tried creating an ASCII .fbx file in 3ds Max. I did not find a reference to the .tga file in the .fbx file. Does anyone know how I can generate this reference in 3ds Max ...Show All

  • Visual C# Safe Termination of application when using ThreadPool threads in .NETCF2.0.

    Hi all, I'm successfully (I think ;p) making use of the ThreadPool class to launch short running asynchronous worker threads to process SMS messages on a WM5 device. When the worker method completes (even in event of exception) it calls another method that fires an event. This event calls bound methods on the form class. These methods create delegates and make use of the form.BeginInvoke to asynchronously marshall updates to the UI safely using the UI thread itself. My concern through all of this is application termination. I don't know how or if its possible to check the ThreadPool for running threads. It is very unlikely but I don't want to cause problems. Although I try my best to avoid exceptions from locking up threads I don't ...Show All

  • Community Chat New revolution - Classic ASP/VB6 moving onto ASPX and VB.net, what u think ???????

    Supp Coder , Just wanna know, now that there are new frameworks and managed codes in .NET while we most are used to coding da classic stuff -------------------------------------------------- Who is going to procede wit da new code style -------------------------------------------------- and who feels like sticking to there old coding style -------------------------------------------------- for example who wants to stick to C+ or who to move on to C# --------------------------------------------------- and what could be da conciquences of sticking to unmanaged coding or is it just a microsoft monopoly act (im a microsoft oriented coders, just so u know) ---------------------------------------------- ...Show All

©2008 Software Development Network