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

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

XPolter

Member List

tcalbrecht
Prashweenet
Mireno
Guk
Marco Foco
Shawnk
Greg Thomas
LuckyStarfo
Shailendra Naomi
Derek Ju
Ed Lorenz
David M Schulze
jaz
CJW99
supervlad
Chace
Jerry D
khanhnguyen99
Magic Hat 9
Buzzy teh Cicada
Only Title

XPolter's Q&A profile

  • Windows Forms Using Win32 API to get mouse click

    Hi, I'm developing a small "colour picker" app in VB.Net to get the colour at a particular pixel anywhere on the screen (ie: not in the form).   I understand I have to call the Win32 API to do this, perhaps trapping the WM_LBUTTONDOWN event but I'm really confused as to how I am meant to do this from a VB.Net program.   I  ...Show All

  • Visual Basic Visual Basic and graphics - for the novice/beginner

    Hi there I have no training in programming, but would like to start writing my own little programmes. In my work (civil engineer), I am increasingly frustrated by the lack of simple, time saving programmes to make my life easier, and hence the urge to write my own programmes. Of course, the start will be no more than programmes for one-off formulas, but having said that, I would like to (in many year's time) be able to write more complicated programmes. And of course what I have in mind involves graphics, specifically being able to draw (for instance) pipelines (with coordinates) and then be able to generate a longitudinal section from th ...Show All

  • Windows Forms Error when modifying clickonce manifest

    Hi! Help is needed. I'm trying to create a ClickOnce deployment with VS2005 b2. I have to add a few additional dll-files. I use MageUI to add the files and re-sign the manifest files. However, this failes all the time. This is what I do: 1. Use "Publish solution" from VS2005 (this initial deployment works as expected) 2. Open [program].exe.manifest and add one managed dll'file 3. Click Save 4. Select the same certificate that VS generates for signing 5. Open [program].application 6. Select the manifest from 2 7. Click Save 8. Select the same certificate that VS generates for signing What step am I missing in this process Please, any id ...Show All

  • Windows Forms Setting AppSettings programmatically

    I know how I can read AppSettings via a AppSettingsReader. I use that to populate a Options form. If the user now changes a vaule, I want to change the corresponding value in the App.config file. How do I do that Thanks, Rainer. ...Show All

  • Visual Studio Team System Getting sharepoint back after Beta 3R migration

    OK, I've got Beta 3 Refresh up and running, but the sharepoint sites didn't take kindly to the database migration (apparently). When I try to open a project site, I get an error message: The virtual server that is referenced here is not in the config database. So, presumably something is amiss in the shareport configuration.  So far though, I'm having a hard time finding my way through the Sharepoint configuration site. So - Which virtual server is referenced here   Exactly which options in the WSS config screens would I use to find it/configure it In the WSS config screens, I see the following virtual servers: Default Web Site&nb ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Error ding when all is well

    Hi all, I've built an application on top of the EmptyProject sample in the SDK. The application exits cleanly, but for some reason it raises and error sound. If I close the app with the close button on the window, the sample framework gives me a messagebox indicating that "The device has a non-zero reference count, meaning that some objects were not released," yet when I exit using the the GUI I've developed (which simply calls a function that raises a PostQuitMessage) I only recieve the error noise. I suspect that the problem stems from the timing of the call application's cleanup function. I call it from the WinProc when a WM_DES ...Show All

  • SQL Server SqlDeveloper/SqlExpress Conflict.

    Hi, Background: I'm on a Pentium 2.4 with 1024 mb Memory and 160 Gb harddrive, running XPPro with SP2. I started a project in VS2005Beta2 with Sql2005Beta. When the RTM versions came along I ungraded to VS2005Pro, and tried to upgrade the SqlDeveloper. This ran amuck, but I could still access my database, so after three attempts I gave up temporarily. When it looked as if I was actually going to finish my project, I decided to sort out my Sql. Still had the same problems, but found the Cleanup Utility, which did a great job of cleaning up the residual stuff in the registry. I downloaded SqlDeveloper, and ended up with file reference ...Show All

  • Visual Studio Express Editions Ascii through com-port

    Hi, I'm (very) new to VB Express but have some experience with VB. (Learning edition) I'm working on a project in which I'm communicating with a Serial device (an electronic payment system with a key). In VB I'm using the manufacturer's dll files to communicate with the key reader but it is also possible to send ascii codes. Is this possible in VB Express For example : To read out how much money is still on the electronic key (in the RS232 reader) I need to send out the following code {1,2}63 this is in hexcode 7b 31 32 7d 36 33 (the 36 33 is the checksum of 31 and 32. As an answer I get the value of the key (being 42.50 Euro) : 0 0 0 0 4 ...Show All

  • Windows Forms ClickOnce application download error

    When trying to download my ClickOnce application, on part of the machines I'm getting the following error: PLATFORM VERSION INFO  Windows    : 5.2.3790.65536 (Win32NT)  Common Language Runtime  : 2.0.50727.26  System.Deployment.dll   : 2.0.50727.26 (RTM.050727-2600)  mscorwks.dll    : 2.0.50727.26 (RTM.050727-2600)  dfdll.dll    : 2.0.50727.26 (RTM.050727-2600)  dfshim.dll    : 2.0.50727.26 (RTM.050727-2600) SOURCES  Deployment url   : http://yaniv-serv2003/panorama/jsharp/NetComponents.application   & ...Show All

  • Visual Studio crystal reports and dynamic images from disk

     Can someone tell me if there is a way to insert dynamic  images in a  crystal reports page with details from the  images folder. The exact requirement is to display a company's logo at the top of every crystal report page as and when they change. i.e when you have a new logo , you only change the image(.jpg) in the images folder and the corresponding image in all the reports should change. how do we achieve this, in c# I require something like this for C#.NET i tried but its only for VB i guess , so the solution that i read is Image Tables,I am talking about CR Version9, so if anyone knows a simple way to set pa ...Show All

  • Windows Forms Setup and deployment project + Environment variable

    Sorry for the not-so-helpful subject line. I have a c# application for which I am trying to create an installer. I am using the 'Setup Project' template under 'Setup and Deployment' for achieving this. I have added two files a.exe and b.xml under Application Folder. I want to set the default location of the Application Folder as some environment variable say 'DEF_DIR'. How do I achieve this I tried all these options: $DEF_DIR %DEF_DIR% ENV(DEF_DIR) $ENV(DEF_DIR) No luck so far. Can someone please help Hi J Andrews, Go to the following link... http://support.microsoft.com/Default.aspx scid=kb;en-us;8 ...Show All

  • SQL Server RS 2005: Excessively Long String error when printing

    I have a VB.NET 2003 WinForms application that contains a browser control to render reports within. I have a SQL Server 2005 Reporting Services instance - and through the RS site, the reports come up great, and print just fine. However, when pulling in the reports through the WinForms application, when trying to print - I receive an error. A message box pops up that says "An error occured trying to get the current window." The next message is: Line: 26; Char:4; Error: Marshaler restriction: Excessively long string. Code: 0; URL: http://svr-sqlreport1/ReportServer$QA/Reserved.ReportViewerWebControl.axd   ...Show All

  • Visual Studio Team System GUI Change requires checkout of licenses.licx

    We are using a couple of 3rd party components that have information stored in the licenses.licx file. We have noticed that anytime you edit a GUI that has one of these 3rd party components, the IDE requires us to check out the licenses.licx file. The problem is that there is one licenses.licx file per project.  If I want to edit GUI-A, I have to check GUI-A and the licenses.licx file out.  If another develper wants to work on GUI-B in the same project they are unable to do so, because the IDE requires them to check out the licenses.licx file -- which I have previously checked out for my changes. Is this a problem with VS2005/Team o ...Show All

  • Windows Forms Displaying Formated XML in a WinForm

    What is the best way to display HTML data in a winForm Thanks, Trey Delarou, enourmous thanks for that link - truly incredible - firefox in my winform!! wait till everyone hears about this one - of course I'm the one truly in the dark usually -  If only my project could be that solid (and useful) -.... someday :)  ...Show All

  • Software Development for Windows Vista Vista backward compatibility

    Hi, is MS Vista supposed to be backward compatible with the other MS win32 operating systems I mean, if I have an application running on MS Windows XP, can it run on Vista as well thanks. My ADS Tech PTV341 DVB-S works only with XP, not Vista nor W98SE, something to do with BDA. ADS Tech has been promising a fix the last year or so. Thus Vista is NOT "backward compatible" Couldn't MS provide a 'switch' in Vista to enable the appropriate functions Regards, Roger ...Show All

©2008 Software Development Network