Software Development Network Logo
  • Visual Basic
  • Visual Studio
  • Smart Device
  • Visual FoxPro
  • Visual C++
  • Windows Vista
  • Windows Forms
  • Architecture
  • VS Express Editions
  • Microsoft ISV
  • .NET Development
  • Game Technologies
  • Windows Live
  • Visual J#
  • Visual C#

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

SpokaneDude

Member List

Patrick F. Bristow
Trilobite
DebuggerAu
Alexander Ivanov
Steve_J
walpa
DavidBB
Leandro Mussi
arshad imam
jose rivera
natX
André Arruda
MDX-Newbie
Mochiwala
kieseennaam
Fakhrul Islam
Sam_bham
Jouri
sotto
Pradeep C
Only Title

SpokaneDude's Q&A profile

  • Visual Basic Save a RichTextBox in a memo fields in access

    I presently have somes difficulty to save the information that are in my RichTextBox in a Access memo fields. I use a adodb reccordset and when i'm making the .update i lose all the information in that RichTextBox Dim rs_Appel As ADODB.Recordset Set rs_Appel = New ADODB.Recordset rs_Appel.Open "Select * from tblAppel", ConnectDb, adOpenDynamic, adLockOptimistic rs_Appel.AddNew rs_A ...Show All

  • Visual Studio IDTExtesibilty2 in VS2005 Web Projects

    We currently have a VS2003 wizard project that uses IDTExtensibility2 to integrate with VS. We have vsdir and vsz file to add icons to the select item and select project screens. On migrating the tools to VS2005 we have found that it works as expected in Windows Applications, but there is no way we have been able to get the items to show up for web projects. Web projects only seem to support zip files with a vstemplate xml file. Is there anyway ...Show All

  • Visual Studio Team System Source control "get" troubles

    I'm having a few problems with the Team Foundation Source Control. 1. When someone else has checked in various new files and I do a "get", very often I will still end up without a copy of some of the newly added files. Some will be copied correctly, but others will be missing. The missing files are shown greyed out in Source Control Explorer. If I try to get these particular files through Source Control Explorer, it shows a messa ...Show All

  • Software Development for Windows Vista WebServiceFault

    is there an example of WebServiceFault application and how to use it in context of an error caused by webserviceinput WebServiceFault is essentially a specialized WebServiceOutput. Instead of returning a payload of data to the client, it raises an exception on the client. A simple example would be a scenario where you expect certain inputs or else you fault - essentially modeling this pattern: public User GetUser(int userId) { ...Show All

  • SQL Server How to make tables & stored procedures in MSDE?

    Hello, I am a beginner using MSDE & Visual Basic.NET standard version (not Visual Studio.NET) . MSDE was downloaded from microsoft.com yesterday, which is sql2ksp3.exe. The problem is I don't know where to input data to set up tables or stored procedures after configured the MSDE. The MS Desktop Engine pops me "configuration sucessfully", then I can just open a small window with the title of "SQL Server Service Manag ...Show All

  • SQL Server ServerName/Database Name Parameterization

    I would like to parameterize the server name and database name in a query inside a stored procedure. I would like to avoid using the exec(@SqlCmd) technique if possible. HELP Nope, not in SQL. And it is not really a good idea, even using dynamic SQL. If you could do this, the plan that could get saved would be garbage. By using only fully qualified objects, the procedures can use pre-compiled plans for subseque ...Show All

  • Windows Forms Binding to RichTextBox

    Using VS 2005 Beta 2, VB, SQL Server 2000 I have an existing SQL table with a field 'Comments' of SQL datatype 'text'.  The data stored in the field was created using the RichTextBox under VB6. I use a Data Source/Data Set and set the Comments field to RichTextBox.  When I drag the control onto the form a RichTextBox is created but the control displays the existing RTF as text. I expected a RTF under DataBindings but did find it there. ...Show All

  • Windows Forms DataGridView: column provided does not belong to this DataGridView control

    Hi folks, I just return a DataTable from a Method and get this exception. When I just press next the application works without any problems. I don't know what this mean. dg.DataSource = Method();  <--- here I get it. Hello, I have the same problem and have the same solution as not using AllCells or DisplayedCells for AutoSizeColumnsMode. If anybody has a wise solution to this, please help:) I think th ...Show All

  • Visual FoxPro How to use the tables of a Form

    I am having problem using the tables listed in its data environment, I would like to zap the records, append some data and replace some records but when I used the zap command it says that the table should be used in exclusive mode, what should I do Hi, When you use a temporary cursor, it's created on each person's machine, for the life of the program or until it's closed. Since you were Zapping your table each time you use it I assumed y ...Show All

  • Windows Forms i am wondering...

    I am using vb.NET part of VS.NET, and no matter how many times i check to see if targetanimal is nothing ( targetanimal being animalstate of the current target ) i always seem to get OrganismNotVisibleException, and my creature ends up attacking&nbs ...Show All

  • Software Development for Windows Vista Looking for CleanupSharedWinFXFiles.exe

    Hello Forum, I had a prerelease of WinFX on my machine and I am looking for CleanupSharedWinFXFiles.exe which shall care for cleanup of the gac. I had the reference from a MS Page http://www.microsoft.com/downloads/details.aspx FamilyId=AAE7FC63-D405-4E13-909F-E85AA9E66146&displaylang=en but the regarding Link to this file is broken. Does anybody have this file or a working link to that download Best regards Ralf I ran a ...Show All

  • SQL Server modify datetime parameter

    How do I change the value of a datetime parameter before submitting it to the query   For instance, if the user selects '01/01/2006 00:00:00' in the date-picker, I want to submit '01/01/2006 23:59:59' to the query. I tried =Parameters!EndDate.Value.AddDays(1).AddSeconds(-1) ...Show All

  • SQL Server Server Management Studio, Copy Data/Tables

    In the 2000 export wizzard you could choose to export data only to another (similar) database, or include the table scripts (if any would have changed). In the 2005 wizzard you can include a IF NOT EXISTS but there is no way to 'replace' a table. (Or i havn't foudn it yet). Any suggestions ...Show All

  • Visual C++ Managed Debugging Assistant 'LoaderLock' has detected a problem

    I have a mixed assembly and a mixed exe (managed and unmanaged). I try to start the exe. The result is a message message box with the following text: Managed Debugging Assistant 'LoaderLock' has detected a problem in 'd:\VACNT-32.5\System\debug\ves.exe'. Additional Information: Attempting managed execution inside OS Loader lock. Do not attempt to run managed code inside a DllMain or image initialization function. The msdn2 documentation ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Distorted texture after lost/reset device

    Hi, I'm drawing a textured mesh using DrawIndexedPrimitive, using an effect interface. After a windowed/full screen toggle the texture appears distorted. Interestingly when I draw another mesh in wireframe mode in the same render call the problem doesn't occur. Can somebody help Nico Depending on where you load the textures to, you need to release them and recreate them. Make sure that you are properly handlin ...Show All

©2008 Software Development Network

powered by phorum