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

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

ShadowRayz

Member List

Kendal Walton
Unknown Name
GeneralCody
Sparx
matthew pearson
Guy F
OrpheusTheBard
EvilPenguin
RMB775
fusi0n
GoDaddy
Eugenya
TRACEYMS
i.i
cgillum
xinvar
SmartSpy
Eranw
Drksrvnt
Ekta
Only Title

ShadowRayz's Q&A profile

  • Visual Studio Item rename

    Hi all, I am handling SaveAs operation in VS.Net 2003 editor. I want to retrieve the new name of file in save as dialog before saving it finally.For this I am handling Item rename events,but could not get a proper way to retrieve the renamed name. Kindly suggest me a proper way to do so. Thanks and regards, Ruhina Parveen. Thanks Carlos, I have already tried for this approach. I am trying to retrieve the new name from EnvDTE.ProjectItem 's Name field. But it gives you only name not the full path. What i understand is, it retrieves the value from file name field in saveAs dialog. Please correct me if i am wrong. Regards, Ruhina ...Show All

  • Visual C# Project won't build anymore - strong named problem

    I have a project which uses a dll full of images. I added a lot of images last night and found it will not compile when a dll has 75 MB of jpgs in it, even if they are not loaded into memory without explicit function calls. So, I built a version with a couple of jpgs, import that into my project, and put the 75 MB one in the folder with the release build. So, when the app runs, it uses the 75 MB dll, and when it builds, it links against a 12 MB dll. This is pretty much how it's worked for ages, excepting that the dll has been 12 MB in both places for some time. Today, when I try to build, I get this error: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets(2071,9): error MSB3188: Assembly '..\StockImageLibrary\bin ...Show All

  • Visual C++ (MSVCRT) _iob disappeared?

    What can I do to replace the functionality of _iob Seems to be missing in MSVCR7/8 (using VS2005). Here's the interesting thing -- It's there! dumpbin msvcrtd.lib /all | grep iob <snip> Symbol name : __iob Name : _iob Symbol name : ___p__iob Name : __p__iob Symbol name : ___iob_func Name : __iob_func <snip> ...Show All

  • Visual Basic Centering Form2 inside Form1

    How I have centering Form2 inside Form1. CenterToParent() doesn't work. Oh u know . . . I am so late but I am so thankful to u both. it`s very very great . . . thanks ...Show All

  • Visual Studio Express Editions cannot open winmm.lib or comctl32.lib

    My problem is that when I try to build one of the sample projects that come with the august 2006 directx SDK, it cannot find the files winmm.lib or comctl32.lib (there might be others, there were only two I tried) and I thought it was probably because I didn't include it in my project directories, but when I searched my computer, it couldn't find any of those two files. What can I do These look as if they are part of the Platform SDK - this not part of Visual C++ Express Edition and you need to install it separately - here are the instructions . ...Show All

  • Visual Studio Team System Feature request - Show labels in the history viewer....

    We were trying to determine today when a file was labeled, this was not easy to do in the UI, showing the labels as a line in the history viewer would be very useful. Thanks, Jim It might be better to log this suggestion at Visual Studio and .NET Framework Feedback . ...Show All

  • SQL Server Saving Carriage Return in a nvarchar field (SQL Server 2005)

    Hi, As you can see, I'm totally new at Sql Server. I have a problem, I store text into a nvarchar field (could be a 200 or 20,000 characters long string), inside the text there are several carriage returns which I would like to preserve to later presentation, but when retreiving the data from sql server I got the "cr" as " ", also I opened the database from Sql Managment and all cr's were saved as " ". What can I do to preserve the cr inside each field Thanks in advance. Hi George, Sorry for the delay in responding - I've been off. If you're using vb, they where you would normally insert your VBCRLF (or is it Environment.Newline in vb too now ) you woul ...Show All

  • Visual Studio Visual Studio 2005 Installation of SP1 failes

    Hello, all tries to install the Service Pack 1 for Visual Studio failes on my Windows 2003 Server! I tried all what is proposed in http://support.microsoft.com/kb/925336/de but still get error 1718! What to do Jorg Blizznet's suggestion should work, have you tried that It is described in KB925336 that you mentioned as well but in the second part. ...Show All

  • .NET Development asynchronous call to SerialPort class

    I write to confirm if the System.IO.Ports.SerialPort class supports asynchronous method calls. - Jeremy This worked well: Private callback As New AsyncCallback(AddressOf MyCallback) Private Sub MyCallback(ByVal ar As IAsyncResult) Debug.Print("Done") SerialPort1.BaseStream.EndWrite(ar) End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim buf(1000) As Byte SerialPort1.BaseStream.BeginWrite(buf, 0, buf.Length, callback, Nothing) End Sub I can't test reading, don't have the proper hardware setup... ...Show All

  • SQL Server 64Bit - How to set maximum memory

    I installed SQL2005 x64 as the default instance on a clean install of Windows 2003 64Bit Standard on a machine with dual 64Bit AMD processors and 4GB RAM. When I bring up the server properties in SQL Mgmt Studio, it shows "Microsoft SQL Server Standard Edition (64-bit)", Platform=NT AMD64, 4GB RAM. But the rest of the properties show as if it were 32-bit. It shows 4 processors instead of the actual 2. In the memory page of the instance properties, it shows the AWE box ready for checking and the maximum memory listbox will not allow a value more than 2GB, as if it were SQL2000 standard. Is there something else I need to do to make the SQLServer 2005 instance realize it is really SQL2005 and 64-bit and it can address RAM above t ...Show All

  • SQL Server restoring 2005 backup with 8.0 compatability mode on 2000 - help

    Hi, I have a database that is in the SQL Server 2000 compatability mode on my SQL 2005 server. I am trying to restore a backup of this database on my SQL Server 2000 database on another server and keep getting strange messages. First trying Red-Gate and then plain SQL Server with no luck. It seems as I remember that the 7.0 and 2000 compatibility issue between backups did not arise when the compatibility mode was set to 7.0. Is this "planned" behavior or an "undocumented feature" Anyone else have success doing this Thanks, John Campbell Hi John, If you mean you're trying to restore a MSSQL 2005 database backup (regardless of the compatability mode of the originating ...Show All

  • Windows Forms C# vs2005 .Net 2.0 ListView .HitTest(...) always null for ListViewItem

    Hi, I am having a problem with the ListView controls .HitTest method, to be honest I am not sure if this is a misunderstanding on my part. I am trying to provide edit controls for various fields within a ListView control by overlaying various controls (TextBoxes, ComboBoxes etc) onto the clicked Item/SubItem. I originally thought I would have to invoke HitTest from win32 to obtain details of the SubItem under the click region, however I found that the .Net 2.0 ListView impliments .HitTest() directly. It returns a ListViewHitTestInfo object, amoungst the various members of this object are .SubItem and .Item I perform the HitTest in the ListView controls MouseUp event, and it workd as expected so long as the clicked item is a ListViewSubItem ...Show All

  • Smart Device Development serial port

    Hi, Im trying to make a program to communicate with something that is connected with the serial port. The device i wanna connect to the serial port knows several commands. So basically there needs to be a simple connection with the port so that i can put commands in the console and the device reply's me and sets its output on the console. So far i got this: static SerialPort serialPort; public static void Main() { serialPort = new SerialPort("COM1", 19200, Parity.None, 8, StopBits.One); } I hope someone could help me a bit. Thanks in advance! You need to ask specific question. Please see this, items 7 and 15: http://www.danielmoth.com/Blog/2005/03/please-read-before-posting-to-ng.html ...Show All

  • Visual Studio can't attach to aspnet_wp.exe in vs 2005--could in vs 2003

    After installing vs 2005 I can no longer attach to aspnet_wp.exe for managed code. It will attach for t-sql. I get the following error box: --------------------------- Microsoft Visual Studio --------------------------- Unable to attach to the process. Check for one of the following. 1. The application you are trying to debug uses a version of the Microsoft .NET Framework that is not supported by the debugger. 2. The debugger has made an incorrect assumption about the Microsoft .NET Framework version your application is going to use. 3. The Microsoft .NET Framework version specified by you for debugging is incorrect. Please see the Visual Studio .NET debugger documentation for correctly specifying the Microsof ...Show All

  • Windows Forms Button Selection

    When a System.Windows.Forms.Button is selected, either by mouse or key, a inner square is drawn in the button to show that it has focus, as well as the button turns an off color of its value. What method do I override to gain access to the inner square and color change My overall goal is to just remove the square for my current project, but I would also like to be able to make "custom squares" in the future. Hi, If possible try to post the answer for the post. someone else can also be benefitted by this. thank you, bhanu. ...Show All

©2008 Software Development Network