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

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

Uppy

Member List

vb_n00b
Christopher61
lp75
KavyaKonda
vaughanSkyblue
Leon Mayne
FlashFan
Troy Lundin
tnsgod831
Rafael (Live Butterfly)
SomE matriX stYles
Nagaraj K
Nitin Sharma22
iamdon
sandipan
Balas
hrubesh
DaveV
toplisek
MxR
Only Title

Uppy's Q&A profile

  • 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

  • Smart Device Development C#: IR Communication between PPC6700 and TV/DVD/HT Receiver

    Hi. I read the two articles: http://www.codeproject.com/netcf/PocketBeamer.asp (C#/Audio Port) http://www.codeproject.com/ce/TVRemote.asp (C++/IR) and I wanted to use IR, programmed via C#, to send IR codes to TV, DVD, etc. and I know the basics of IR, so I wanted to try to program an application for sending IR codes like when I press channel up/down, etc, which I'll have to learn the IR codes which I'll do a research once I get to know how to do it. Please note: I don't want to use audio port, but with IR and so I've never done this before. Any help will be appreciated. Thanks. It's never too late to learn. Here’s the best book on C ever (IMHO): http://cm.bell-labs.com/cm/cs/cbook/ C++ is just ...Show All

  • Visual Studio Express Editions DHTML controls

    how do i get the copy, cut and paste controls to work with the DHTML box Information on addition commands may be found here: http://msdn.microsoft.com/library/default.asp url=/workshop/author/dhtml/reference/methods/execcommand.asp Re-do and undo are reported to be unsupported which brings up and untinteresting question..... Does this mean it's there and just not supported ...Show All

  • Visual Studio "Get Latest Version (recursive)" gives list of files for each project

    Hi All, We are trying to implement MS-SCC API functions (v1.3) for a SCM. When a solution is opened in VS2003/VS2005 with multiple projects and choose option "Get Latest Version (recursive)" for a solution, SccGet() function is called with list of file for each project. I want to show list of all files in a dialog box. While if "Get Latest Version (recursive)" is selected for a project, it shows all files (including files from directory). Can't distinguish whether SccGet() function is get called from solution node or project node or file node. Any pointers Thanks, Abhay You're implementing a MSSCCI provider, which by definition operates with files only, with no distinction between ...Show All

  • Visual C++ Is MFC in VC++ difficult? how long will it take to learn basics?

    dfffd depend on : 1. knowledge of Windows SDK 2. knowledge of c++ 3. knowledge of Windows basics if all 3 are 'yes' it will take you no time , but will drive you mad with limitations. ...Show All

  • Visual Studio 2008 (Pre-release) How to get WPF supported font list?

    .NETters, Is there a programmatic way to get the font list that is supported under WPF I imagine only vector fonts are supported. Regards, Pradeep Can you clarify what you mean by vector fonts WPF supports TrueType and OpenType fonts which give you the device independence, so you can scale characters up or down while still maintaining their shapes. In WPF you can use any system font and you can enumerate those fonts like this: foreach (FontFamily fontFamily in Fonts.SystemFontFamilies) { // do something } ...Show All

  • Visual C++ Bypass printing dialog while printing using ShellExecuteEx

    Hi I use ShellExecuteEx to print a ".gif" file to a specific printer(which I set as default printer, prior to the operation). This printer driver is used to perform a specific task and works with only my application and can't be used for printing outside my application. It works fine on Windows 2000. But on Windows XP/2003, instead of printing the .gif, it opens up the .gif in Windows picture and fax viewer. From here I can give printing command but I want it to happen automatically. Now my application keeps waiting for the "Printing is finished" message from my printer driver. When I give the print command from outside my application to print that .gif, the same print dialog opens up i.e. it is the default ...Show All

  • Visual Studio Express Editions download file from http web page

    i want to download a file from a website does anyone know hoe this can be done in visual basic Try My .Computer.Network.DownloadFile( _ "http://www.freewebs.com/reneecc/index.htm" , _ "c:\test.htm" ) Catch ex As Exception MessageBox.Show( "Reason: " + ex.Message, _ "Could not copy File" , MessageBoxButtons.OK, _ MessageBoxIcon.Exclamation) End Try ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where are the release notes?

    Where are the detailed release notes There's a readme, that doesn't talk a whole lot about what actually changed. There's an "introduction to XNA" and a "FAQ" in the documentation, neither of which talk about what actually changed. I can't find any actual release notes, as traditionally used when releasing a new SDK version. Do they exist Mitch was going to do that, but he's on his way to the UK for the launch there at the moment. Very little changed in terms of functionality or API from beta2 - the differences are pretty much all just bugfixes. ...Show All

  • SQL Server what files do i need to get a database locally on my machine (sql 2000)

    Hi, A gus has a database on his machine and i want him to send me by email the necessary files so I copy his database to my machine. What files will I need to put in my machine to get the exact DB on my local machine so that i can do some tests. Will I use EM or some thiong else. Because he sent me a *.backup file but i am not sure how to use it and if it s enough to replicate the DB locally. Thanks a lot there are many ways... one is as said, get the .MDF and .LDF (data file and log file , extension may differ) and attach those file to your server. Other way is to ask for the backup file and restore that backup in your server. I think Backup - Restore method is better.... Madhu ...Show All

  • SQL Server "where" statement in list

    I have one dataset and two lists with one table in each list. the two tables should get their data from the same dataset. but the tables need different "where" statements. in the dataset I only can define one "where" statment. it is possible to displace the "where" statment into the two lists they should access to the dataset with their own "where" statement. A valid suggestion and definately the easiest to implement. I'll persevery merely to see what the problem is with jori0001's report. Have you created a report parameter called "usernr". If so can you post a screenshot of the definition of this parameter in the parameters pane ...Show All

  • SQL Server Problem with a sql statement

    I have a table with the monthly internet usage in minutes for each account. I wish to create a new table based of the previously mentioned that limits the number of records per account to 9, so only include records based on each account for their past 9 months worth of internet usage. Can anyone help me do this Take a look at the Transact-SQL forum for help in this regard. http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=85&SiteID=1 ...Show All

  • SQL Server JAVA and Stored Procedures

    Hello, I want to call a stored procedure (SQL SErver 2000) from JAVA. The SP contains a temporary Table. At the end of the SP there is a Select like "Select * from #tmp". Now I get no Resultset in my JAVA - Application. When i do a normal Select on an Table I get a Resultset. I need the temp. Table in this SP. How can I get the Result in JAVA. It is urgent for me. Thanks in advance.   You should be able to get the results in the normal way. You might find that you have additional results -- but not result sets -- that preceed the result set. You might also find that by issuing Set NoCount On in the stored procedure, that you will not get the additional results. ...Show All

  • Visual Studio VSS2005 - Binary Checkin speed issues

    When checking in big binary files like pdb and lib with sizes above 6 MB (limit not tested) there is a significant speed reduction. Example: I copy one of two similiar files as tmptest.lib, size is ~12MB . File options in VSS are set to binary, no autodetection of unicode. When checking in with VSS2005 (ss or ssexp), it takes 720 seconds . If I do the same with VSS6.0d , it's 2 seconds . In both cases cpu util is 100% all the time. VSS6 and VSS2005 are installed on the same machine. VSS2005 checkin was tested also direct on server with local database path - no difference. Richard, there is a bug in VSS2005 which manifests exactly as C. Hoffman described. We have the fix for it (I think it was checked in ...Show All

  • Visual Basic Windows API calls from VB

    I'm looking for examples of Visual Basic code to create and use named pipes for inter-process communication. (Working examples, that is; I can create ones that fail..) More generally, I'm looking for examples of VB calls to Windows APIs where no .NET method exists; most of the examples I've found use either C++ or VB 6. I'm also interested in a description of when ByRef should be used in a Declare statement and when ByVal is appropriate; the rules seem to have changed from VB 6 so I can't just translate the examples by rote. I'm presently running VB 2005 on Windows XP with SP 2; have written an app that uses anonymous pipes and would like to convert it to using named pipes. I use the IpcChannel class - wor ...Show All

©2008 Software Development Network