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

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

neo1000

Member List

Donaghy
nmahesh567
vkan
MmeBovary
Wee Bubba
JBartz
Part Time Australian
tattoo
Mike V T
pd_tch
walkingboy
yeos_lee
J. Clark
saruna
Jens Sauer
bshive
erikkl2000
Sivaraman
Mr. Howe
Shark_
Only Title

neo1000's Q&A profile

  • Visual Studio Conditional Breakpoints on Managed Object IDs

    During the betas of Whidbey I remember that there was a way to generate an object ID that could then be used in a conditional breakpoint. Dang if I can't find how to generate that object ID now. Was the feature pulled If not, where is it hidden You can generate an object ID by going to Locals or Watch window, selecting the variable and choosing Make Object ID from context menu. The ID (e.g. 1#) can then be specified in breakpoint conditions. Azeem Khan Visual Studio Debugger. ...Show All

  • Visual Studio Team System TFS: Source Code

    HI, I am using TFS/TS 180 days trial version and created a team project on TFS Server. I am unable to create a source code workspace. i logged into my machine as \domainuser and have [Sever] Team Foundation Administrator rights. i also have admin rights on TFS server in the same domain. thanks! Sneh Do you have rights on your local box If you are apart of Team Foundation Admin Group, on the server level, you should have perms. Thanks, John ...Show All

  • Visual Basic need help saving a print image

    In my program I have a print routine that prints one or more graphics pages using the PrintPage event. This works fine with print preview, page setup and all the normal things. Now I want to add the capability to create and save a bitmap of the print image instead of printing to the printer. Clearly, all the code is in place to create the print image, I just need to save it. It does not make sense to me to make a bitmap from the screen. But how do I create a bitmap from the PrintPage event Ryn, According to your description, I will give you’re a piece of code sample and an article which will help you. The following example prints the file that is specified through the command line to the default printer. ...Show All

  • .NET Development How can I convert this c# code into a regular expression?

    I'm trying to create a "path validation method" to check if a string can be used as a valid path in my program. The path must contain an indication character at the beginning of it which can be either minus, tilde or a dot. In case of a minus character than it must be followed by a number. In case of tilde or a dot than it must be followed by any valid step format. A valid step format is either a s tring enclosed by a sharp brackets , a number or a combination of a string enclosed by a sharp brackets followed by a number without white spaces between the brackets and the number. After the initial step we can have a dot separator to indicate that we have additional steps that must follow the normal step format without the starting indicatio ...Show All

  • Visual Studio Express Editions Binary File Encryption

    hello, hi coders... i have been searching the help and msdn site for hours now but could not come up with a complete solution. by the way i am using vbexpress2005 for my coding. i have several binary files (like dbf,idx,etc) that i want to encrypt using vbexpress2005 cbuilt-in lcasses. there are some example for encrypting text files but i could not get a complete code snippet for encrypting/decrypting binary files. could somehow paste these sample codes if they have them thanks. also how to you decrypt a binary file "to memory" it is a bit useless to have a strong encryption if you will just decrypt the binary file to hard drive right anyone could then just locate the decrypted file using simple dir listing ...Show All

  • SQL Server Where to find examples

    Hi! Where can i find examples of T-SQL executed by one instance of SQL Server 2000 to communicate to a 2005 SQL Broker instance (both located on the same server) thanks for your help! There are also a few books in print that you can reference. The Rational Guide to SQL Server 2005 Service Broker is a good choice. It is very concise and very helpful. Gary ...Show All

  • SQL Server Login failed for user 'NT AUTHORITY\NETWORK SERVICE'

    Any help would be very very much appreciated as I am about 15 hours into this :( Background is a development system with ASP.NET 2.0 and SQL express 2005. The server is SQL 2005 standard edition. Any ASPX pages that connect to a database results in errors. I have 2 identical servers with Windows server 2003, one has SQL Express and the other has SQL Server 2005 standard. that is the only difference between these systems. The scripts that work seamlessly when uploaded to the SQL Express server dont work on the SQL Server 2005 My connection string is  <remove name="LocalSqlServer" /> <add name="LocalSqlServer" connectionString="Datasource=servername;Integrated Security=SSPI;initial catalog=C:\INETPUB\WWWROOT\test\ap ...Show All

  • Visual Studio Team System Export contents of Resolve Conflicts

    After running the merge command we need to export the list of conflict files that appear in Resolve Conflict window to excel along with last modified user name for that file. How do we export the contents to Excel Thanks, Srikanth Hello, I think your best choice is to write application that will query for conflicts, than check history of each files in order to get last user that modified it (I'm not sure do you want user who modified source or target) and create csv file (comma separated) that can be read by Excel. Here are some information how to query for the conflicts: http://teamfoundation.blogspot.com/2006/11/merging-and-resolving-conflicts-using.html Hope this helps ...Show All

  • SQL Server Setting the Legend color on a stacked bar chart

    I am trying to develop a report that will show a 100% stacked bar graph for many teachers. Each teacher will have there own graph. The series in the report are the percent of scores given on a test, with each test in a group. Scores are given on a scale of 1-4. Most of the time a teacher will have all fours scores in there data; however it is possible to only have 2 or 3 of the scores. How can I set the legend up so that all scores across all the graphs show the same color for the same data series Right now I get something like this. First Graph 4: Lime 3: Purple 2: Blue 1: Green Second Graph (no values for 1 or 2) 4: Blue 3: Green I need the second graph to ...Show All

  • Smart Device Development Wince 6.0: Problem in Audio Driver..

    Hi, I'm working on WinCE6.0 on Visual Studio 2005. My target board is DM6446 EVM (DaVinci). I'm working on Audio Driver (MDD-PDD model) in WinCE 6.0 After loading the the audio driver in kernel bootup i'm getting following message continuously: " SwMixer: WaitForBuffer failed. Audio driver missed interrupt " Please help me in resolving this Thanks, -Ganesha ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Getting typed text into xna aka getting WM_CHAR in xna?

    if i'm trying to get typed text into xna, what is the best way to do that I thought maybe i could start with a Windows Form and override WndProc() to capture WM_CHAR, but how do i properly do that... is there a #define that represents if i'm building for 360 or windows can i create a form then associate my game object with it somehow if i'm building for windows What do you mean by "get typed text into xna" Do you want the text rendered as it's typed Check the various font rendering projects, such as this one . If you're doing windowed projects (you can XNA render onto a form, there's projects out there that'll show you how) you might be able to use the Key... events of a form to capture the input. I haven't tr ...Show All

  • SQL Server copy row within same table

    Gud day guys...i have this problem of copying records within a table...pls help me I have tried the code below but returned an error....... "violation of PRIMARY or UNIQUE KEY constraint "INTEG_29" on table "SERVICE" " Insert into Service (GroupNo,ServiceCode,ServiceName,SystemNo,Upload,timestampstr) SELECT 6,ServiceCode,ServiceName,SystemNo,Upload,TIMESTAMPSTR FROM Service WHERE GroupNo=1 is this possible pls help me with the sql statement to make this work...... note: timestampstr is the primary key with a not null value ... you can not insert the value in the TimeStamp datatype explicitly, the Server will automatically insert the value into it when you do insert operation. ...Show All

  • SQL Server error while doing mirroring

    I got the following error log from SQL profiler when I tried to start mirroring " 2006-11-10 11:54:47.28 Logon Database Mirroring login attempt by user 'NT AUTHORITY\ANONYMOUS LOGON.' failed with error: 'Connection handshake failed. The login 'NT AUTHORITY\ANONYMOUS LOGON' does not have CONNECT permission on the endpoint. State 84.'. [CLIENT: 10.77.100.86]" Anybody knows the solution for the same please let me know I would suggest delete both endpoints in both servers re-run the Mirror Wizard, give it the AD domain username again, and it'll create the endpoints for you or it probably uses the authentication you're using when you create the mirror or try this /**** ...Show All

  • Visual Basic Non-WinForm wrapper for VB6 OCX

    A while back I successfully built a VB.NET user control as a wrapper for a VB6 OCX. I now have to do the same thing but for a non Win Forms application i.e. a ASP.NET app or a web service. Is it possible to build a .NET assembly that can be called from a formless application (another assembly/ASP.NET/web service) that wraps the VB6 OCX The control itself has no graphical presence only a handful of properties, method and events. Any advice appreciated. (Originally posted in the VB General section yesterday) I've searched all over the net looking for a solution to this - nowhere to be found. I must be stubborn, because I didn't really need to keep trying, but eventually I figured it out - for ...Show All

  • Visual C# Long serial number.

    Dear All, I have problem here with my long serial numbers. My length of serial numbers are in the range of 20 to 30 digits. So what I did i know that the database cant support that long of int so I kept in database as varchar. The problem now is that when I do a select from the database I need to group this serial number base on their number in terms of difference of 1. Ex. I have a list of serial say as below 12345678909999999991 12345678909999999992 12345678909999999993 444444489099999999913 444444489099999999914 So when I run the for loop I will store the first value that is 12345678909999999991 then compare with the next one that is 12345678909999999992 so the difference is 1 then compare the second value of ...Show All

©2008 Software Development Network