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

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

Closer

Member List

leclerc9
millertime408
MaseYo
Michael Vanhoutte
Leon Mayne
enric vives
Glenn Ramsey
orent
Arnabmsdn
dickP
MortenBE
Aneel
Rhubarb
twaltz
Wayne.C
sgmuser
Madhur Bhardwaj
tehbagel
andrescasta
Jeff Sholl
Only Title

Closer's Q&A profile

  • SQL Server SQL 2005 passwords, can it be configured to accept case-insensitive passwords???

    Users were able tolog on to our SQL 2000 servers with their passwords being case-insensitive. Now with SQL 2005 some users can't logon because SQL 2005 passwords are case-sensitive. Can SQL 2005 be configured so that passwords are NOT case sensitive Thanks! this solution working http://blogs.geekdojo.net/ryan/archive/2005/02/03/7148.aspx ...Show All

  • Visual Studio DSL - Model Renaming

    Hi, I have been doing some estimation about using a DSL in a project. I build a demo model and it worked fine. Now I wanna start a pilot with that and changed the model Name, the product name, the namespaces, project ... Now I notice that some files have code with the old elements name. resourceName strings in the shapes.cs file the supporteddirectiveName in directiveProcessor.cs file what is the best way to do all the renamings I also wanna chande de language name and extension, so I can see the modifications in the experimental hive (mylanguage.myextension file and mylanguageReport.tt) Do I have to make a new project and redesign all the model Hi, Did you removed the ...Show All

  • Visual Studio Express Editions Ellipse

    I just want to draw an ellipse on to a picture box, read and seen lots of examples that draw it on a form, so what am I not doing Option Explicit On Public Class Form1 Dim myPen As New Pen(Color.Black, 3) Dim startX As Integer Dim startY As Integer Dim Wid As Integer Dim Hght As Integer Private Sub picSource_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles picSource.MouseDown If e.Button = MouseButtons.Left Then startX = e.X startY = e.Y End If End Sub Private Sub picSource_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles picSource.MouseMove If e.Button = MouseButtons.Left Then Wid = e.X Hght = e.Y End I ...Show All

  • Architecture Preventing denial of service attacks in public APIs

    Hi Forum We are building some web services which will be available to our customers. What is the best way to prevent denail of service attacks My worst fear is actually the accidental never ending loop that a programmer might do. How does one prevent a never a ending loop by an external programmer Is it something that should be programmed into the application Max Object Limit on Inserts - Valid option I can see that if would be quite easy to prevent too many inserts. We could decide on a limit of max entries pr. user for each object type and then do a count before each insert. This is by no means a way to prevent denial of service but it could be one of the tools to use Is it a bad idea - It cannot do anyting about reads, ...Show All

  • Visual Studio Team System Problem with ASP unit test & signed assembly.

    Here is the original problem, I have been trying to get code coverage to work on an ASP.NET unit test. Any test that has the [HostType], [UrlToTest], and [AspNetDevelopmentServerHost] attribute do not work. If I don't use the AspDevelopmentServer and just use IIS, the tests run but no code coverage is recorded. Normal tests without these attributes run and record code coverage. After doing extensive research, I found some posts that suggest that I would need to include the web site in the code coverage so that the dll the web site uses can get code coverage results (see solution makeup below). Furthermore, I am understanding that I should use the three attributes above to hook into the web site. The problem that it comes down to i ...Show All

  • Visual C++ No events, virtual functions, etc. for derived class in properties window

    Hallo! I'm trying to build a C++/CLI Windows Forms aplication. I added beside the main project a class library poject and added there a custom control class. After that I change the class code to inherit from System::Windows::Forms::Button so I can build a custom button control to be used in my main projects forms. My problem is now that I don't get any assistance from the IDE to override the Button's virtual functions or events like I was used to in MFC by clicking on the class in the class view and then selecting the needed event in the properites view. All the three tabs (events, messages and virtual functions) are all empty. Am I doing something wrong here Is this not the way you should subclass a control in .net Thanks for an ...Show All

  • Windows Live Developer Forums After I download VEmapControl.exe and install it ,why I only get .chm file and where are the sdk going ?

    After I download VEmapControl.exe and install it ,why I only get .chm file and where are the sdk going How should I include virtual earth control sdk in the vc application Thanks. I have a c# function calling javascript like this: private System.Windows.Forms.WebBrowser virtualEarthMapBrowser; private void executeScript(string scriptName, params object[] parameters) { virtualEarthMapBrowser.Document.InvokeScript(scriptName, parameters); } Can you help me figure out how should i write this function in vc++ If your code is also compatible in both vc6 and vc2005, that will be better. I appreciate your help. ...Show All

  • Software Development for Windows Vista stop printing from a filter

    is it possible to stop the printing from an xps filter would a call to RequestShutdown be the proper way to cancel the printing In WDK 5384, \src\print\SimplePipelineFilter\XPSFilter.cxx,Line no:546. Put a breakpoint and debug so that when you cancel the job,the breakpoint is hit and m_bShutDown flag is set true. ...Show All

  • Visual Studio Express Editions Change visible content

    I need to know how to change the current content so that when I click the Next button the content changes. This would allow me to make more options available. This is just like when you install something and you have to click Next to view all the options and such. This is very important for my project and any help would be GREATLY appreciated. There are several ways to do this. Here's one. Make a UserControl for each page in the dialog. Name them Page1, Page2, Page3, etc. On the form, drop a button named "btnBack" and one named "btnNext". Paste this code: Public Class Form1 Private mPage As Integer ' Current page Private mPages As Integer ' Total number of pages Private Su ...Show All

  • Visual C# translation of a little script from VB to C sharp pls

    I want the script bellow in C# pls: "<SCRIPT LANGUAGE=""JScript"">" & vbCrLf & " function fnAdd(){" & vbCrLf & "document.body.insertAdjacentHTML('BeforeEnd','<P>' +document.getElementById('oText') + '</P>');}" & vbCrLf & "</SCRIPT>" I especially have a problem converting both the quotation marks and the VbCrLf when they re in the same string Thanks a lot VBCrlf is a carriage return I believe which is Environment.NewLine \ is known as an escape character meaning that if you just do a " it will block of the entire line as a string since "" is an indication of a string/text to be included in there. if y ...Show All

  • Windows Forms Full text search from VB

    I'm looking for a VB API call that will replicate the Windows explorer search facility. Check out this post to see if this is the code you are looking for to Recurse Window directories. ...Show All

  • Software Development for Windows Vista Error 0x8004D00E on SQL Server 2000 + Windows 2000 SP4

    We have an ASP.NET application running on Windows Server 2003 whose database backend lives in a different machine which runs SQL Server 2000 and Windows 2000 Server SP4. Whenever we try to use System.Transactions we get errors. We are almost sure that the problem is related to MSDTC refusing network connections. We tried to run the same thing using Windows Server 2003 in the backend server, and we were able to make it work by configuring MSDTC security using the COM+ console. However, we still need to support Windows 2000 for the backend. There is apparently no GUI for MSDTC security on Windows 2000, and the registry settings we have tried so far did not work. We think this should be a very common issue, but we have ...Show All

  • Microsoft ISV Community Center Forums Library Reference issues.

    Hello guys, I am building my Excel macros using Excel11.0 library. I only use the syntax that works on Excel 2000, so that my code runs on Excel 2000. So far, my code is created in Excel 2003 editor and runs on both Excel 2003 and Excel 2000. But if I am referencing another office library like Outlook 11.0 Object in my excel macro, Excel 2000 can't pick up the library. I am creating my macro using Office2003, but there are some computers in my company uses Office2000. And you know upgrading their office is out of my reach. What should I do Thank you. Go to one of the Office 2000 machines and open your project in the VB editor on that machine. Reset the Reference on this machine to the Outlook 2000 ...Show All

  • Visual Studio C# lang service inserting weird spaces...

    Hello, In the last stretch of the road to ViEmu 2.0, I have stumbled into yet another ugly stumbling block. When I want to insert a newline with autoindentation, I just invoke Edit.BreakLine so that the language service will do it's usual stuff. This works very nicely with the C++ language service, and since I'm now using the IVsLinkedUndoTransactionManager, I can wrap all the operations nicely in an undo group (I couldn't before, because Intellisense etc... used an IVsCompoundAction, which is the same thing I was using, and they aren't nestable). But today, when testing with C#, I've found the method doesn't work. The problem is that the C# language service, when the editor is set to 'insert space' instead of hard tabs, and there are hard ...Show All

  • SQL Server How to delete rows in tables...

    I need to delete some rows in some of my tables after tranfering data from my OLTP to SQL database. Im using SQL 2000 I have tried with the following: Delete from fsalesinvoiceline Join dsalesinvoiceheader on Fsalesinvoiceline.salesid= dsalesinvoiceheader.salesid and Fsalesinvoiceline.company= dsalesinvoiceheader.company Where dsalesinvoiceheader.billtocustomerno=’INDTAST DEBITORNUMMER’ Go Delete from dsalesinvoiceheader Where dsalesinvoiceheader.billtocustomerno=’INDTAST DEBITORNUMMER’   I get the following error message: [Microsoft][ODBC SQL Server Driver][SQL Server]Incorrect syntax near the keyword 'JOIN'   What am I doing wrong /Soren D. Jensen ...Show All

©2008 Software Development Network