Goose1212's Q&A profile
Visual Studio Tools for Office URGENT! Outlook Addin runs from development only. Who are the usual suspects?
Okay, I cannot run any add-in outside of the VS2005 development environment. If I simply start outlook no add-ins start. None are "Hard Blocked". How would a security issue manifest I have a .NET polocy for the app directory, but still no-go. All, After much head scratching, etc, along with help from Mads' project to document and simplify VSTO apps (see http://weblogs.asp.net/mnissen/articles/427490.aspx ) I've got my project running consistantly!! Yee Haw! The issues: CAS security: See the link above for an elegant solution to this process; Registry settings: One issue was that my app ...Show All
Visual C++ CreateEvent Method
Hello Everyone, If I want to CreateEvent under .NET......how should I do that... In WIn 32 I can do something along these lines... events[READ_EVENT] = CreateEvent(NULL, false , false , NULL); Any suggestions how can I do this in .NET..... ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Question about managed DirectX DLL versions (and compatibility with future versions)
I'm a little unclear about the versions of the managed DirectX DLLs released in the past, compared with the ones released though Windows update, and the ones that will be released in the future. When I use "Add reference..." it finds a bunch of versions of DLLs. How do I know which ones to use If I use the ones that came with Windows Update, do I still need to distribute these DLLs with my application If I tell my customers to download .NET 2.0 and DirectX 9.0c, am I covered if I don't distribute any DLLs If the next version of managed DirectX doesn't have these DLLs (or the next version of the ...Show All
.NET Development Non-Blocking Sockets
I've been looking for information in regards to non-blocking sockets and I have had minimal luck. Basically what I'm trying to accomplish is create a server where I'll allow multiple connections and just echo what was recieved to the Server Console and the Client Screen. I have the basic stuff needed Socket s = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); IPEndPoint ipLocal = new IPEndPoint(IPAddress.Any, 8221); //bind to local IP Address... s.Bind(ipLocal); //start listening... s.Listen(4); I was recently taught how to do this using blocked sockets but was then ...Show All
Visual Studio Team System Problem about program when i run file.exe in another computer
I'm sending my Debug Folder of my Project to my friend It are include 3 files 1. filename.exe 2. filename.PDB 3. filename.ILK then my friend run this application it got error like this Picture can someone help me . and help me make a install program of my application please thank you. Hi! Send release builds (it also shorter than debug). To create setup - create setup project using wizard (enough in most cases). ...Show All
Windows Forms listbox issues
this is driving me up the wall. when i modify a listbox's item collection, and this happens to change to selected index, the selectedIndexChanged state does not fire! so, if i do a listBox.clear() or a listBox.remove(), selectedIndexChanged doesn't do a thing. how can i listen for changes to the listBox items collection or get the listBox to tell me about any change to its selection state, regardless of whether or not it come from win32 events or programatically thanks in advance! it doesn't seem to, as that looks like its for binding to datasources and for binding controls. good idea, though. and maybe there is ...Show All
Visual Studio Team System How do I do a build ?
I installed VSTS on the weekend, and moved my project over to it. It is all good, but now I am in the office, and I can't connect to my server. I can open my project disconnected from source control, but the build menu is all changed - I can't see how to set a release build, and the build option just crashes ( I assume because it's supposed to run the build task, which is not set up yet ). How can I do a build before I go home, I need to deliver a version today. Thanks It's OK, I found it all. Forget you even heard the name... FWIW - you need to go into the project properties at the bottom of the Project menu and set the co ...Show All
Windows Forms Help me to disable allow addnew in my dataGrid
Help me to disable allow addnew dataGrid in C# Thanks! Do you mean that the datagrid should not allowd to add records Bind the datagrid to a dataview and set the alowAddNew property on the dataview to False Remco ...Show All
Game Technologies: DirectX, XNA, XACT, etc. RTW release?
There was a newsgroup post in the beta group for XACT claiming the final version would be released on the 2nd. I can't find it anywhere though; I'd assumed it would be part of the Feb DirectX SDK rather than a separate package. Is that the case Has that been held up this month There's nothing on the DX page, and no further posts were made to the beta newsgroup. There wasn't even an e-mail sent out to the beta members. Any further info ...Show All
Visual Studio Team System New Project Wizard Error - Work Item Tracking (TF30170)
After a successful (no setup errors) single-server deployment of Team Foundation Server Beta 3 Refresh (running inside a Virtual Server VM - Host: Win2K3 Server Standard, SP1, Guest: Win2K3 Server Standard, SP1), we recieved the following error within Team Explorer when trying to create a new project: Error TF30170: The plugin Microsoft.ProjectCreationWizard.WorkItemTracking failed during task WITs from group WorkItemTracking. Explanation Plugin error text: "Value cannot be null. ---> Value cannot be null." The TF server participates in a workgroup, not AD. Does not appear to be a connectivity issue. Other posts have suggested problems ...Show All
Microsoft ISV Community Center Forums amjad
whay the massenger is net eccept sgin in with to emails it's just only one emial it sign in This Independent Software Vendor (ISV) forum isn't the best choice for your question. You might try posting your question to the Messenger newsgroup: www.microsoft.com/windowsxp/expertzone/communities/messenger.mspx -brenda (ISV Buddy Team) ...Show All
Windows Forms [C#] Only the visible Rows of my DataGrid
Hi, I have a little question. I have a DataGrid with a DataTable as DataSource for it. Now I do some Row Filtering in my application and at some points I need a DataRow[] Array which contains only the Rows that were actual in my DataGrid. For example: My DataTable shows some customer information from a database. Now I filter all persons who starts with a "s". And after that I need a DataRow Array which elements are only the rows with the persons who starts with a "s", like my filter. How can I construct this ! This is my simple start: DataView dv = dataGrid1 . DataSource as DataView ; ... and how can I go on ... sorry for my bad ...Show All
Visual Basic PropertyGrid refresh and expanding.
I have a property grid. After using the collection editor I call refresh so that any new objects appear in my grid. It works just fine except for any previously expanded properties are now collapsed. IF I call propertygrid1.expand it expands all of the properties. Is there a way to restore it to it's state before the refresh Any Idea's at all or a direction to start It seems that i can't find a decent way to expose each of the properties either. I thought of doing it by setting each sub to expanded and recording clicks when they happen to track the state. ...Show All
Visual Studio Package Load Failure Again
When i run a perfectly compiling project, i get a package load failure error following which the sample.xxx file that gets created has no items in the toolbox. When i open a new .xxx file from My Templates there is only a cursor blinking. it does not take me to a designer page as expected. When i open the file manually i dont see any xml code at all. I cant understand why this happens. Does this happen when you try and create a new DSL project You may need to run the “Reset the Visual Studio 2005 Experimental hive” tool and try again. Failing that, try reinstalling the DSL Toolkit. Howie Hilliker ...Show All
SQL Server Query the Full-Text Words List?
Hi Guys. I’m doing searches in a DB and am using the Full-Text Indexing. CONTAINS() will only process strings (words!) three letters or more in length. Even though it can do substring searching, it will only do this if it recognises the parameter as a word . So take this code for example: Dim mySQLStatement As String = "SELECT TOP 100 Description, Price, Stock FROM Products WHERE " x = Split (strString, " ") For i = 0 To x.GetUpperBound(0) & ...Show All
