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

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

SupurbSoftEng

Member List

JAIPAL
galsheefone
Nick Kramer
AlexTre
orangina
MrShenanigan
TroyMac
dlj2007
Sikander
Bronco Billy
archdeacon
hsiceo
mukundb
thdwlgP
lalit_2007
peeCbee
Amish Bandekar
HJOak
Aussie_Bluey
jphoekstra
Only Title

SupurbSoftEng's Q&A profile

  • Visual C++ C++ Runtime library error driving me nuts

    I keep getting an error that Visual C++ Runtime Library ....runtime error! program: c:\windows\system32\htigasvc.exe this application has requested the runtime to terminate it in an unusual way.... any help please... I can't seem to find anything even on this file...... Thanks Vicki vicster wrote: I keep getting an error that Visual C++ Runtime Library ....runtime error! program: c:\windows\system32\htigasvc.exe this application has requested the runtime to terminate it in an unusual way.... any help please... I can't seem to find anything even on this file...... ...Show All

  • Windows Forms How do I simultaneously display a container and its child controls?

    How do I simultaneously display a container and its child controls I have seen similar posts as this throughout the web and the community, but cannot seem to locate an answer. It seems the regions where controls are laid out are not invalidated by the container and show the window beneath. I see this with switching between forms, but in my case I also see it when switching between tab pages. I have tried setting double-buffering through SetStyle and overriding OnPaintBackground for the controls, the parent container, the tab page... but nothing works. It doesn't matter how many controls are on the form, its just that its a little mo ...Show All

  • Visual Studio 2008 (Pre-release) How install LINQ Preview May 2006?

    How install LINQ Preview May 2006 Hi All, I have Visual Studio 2005 Professional, Visual Basic 2005 Express Edition, Visual C# 2005 Express Edition and Visual Web Developer 2005 Express Edition installed on my system. My operative system is a Windows XP with SP2. Language of my OS: Spanish Language of all developer tools installed: Spanish When I start the installation of "LINQ Preview (May 2006).msi", I get the next error message: "Cannot find a valid Product to install LINQ with". I click in the Accept button and get a second message: "You must have either Visual Studio 2005, Visual Basic 2005, Visua ...Show All

  • SQL Server Transient ORA-03113 error in data flow task

    Hi, I have been getting a reoccuring ORA-03113 - end of communication file error whilst returning data from an Oracle ref cursor to a data reader using a custom script in the data flow task. Initially I tried getting Oracle on the case but all of their suggestions have come back with no results - no underling Oracle errors and no apparent problems on the database after all of their diagnostic and detective work failed to turn anything up. Next I tried the hardware and had out IT department monitor the connection between the Oracle server and the one housing our SQL Server installation. Again no problems were encountered. Now I ha ...Show All

  • SQL Server SSIS CAL licensing

    Hello, How does licensing of SSIS work on a CAL basis As far as I'm concerned there are no users of it per se cos its a back-end process. Therefore, do you only need one CAL Thanks Jamie   My understanding of SQL licensing is that a SQL Server CAL License allows you to connect to any and all services included with you version of SQL (RS, AS, DB, etc). Therefore, you only need one CAL if only one user/device is accessing the SQL Server. You may want to reference the following whitepaper on licensing. The breakdown of the different licensing models is on the very first page. http://www.microsoft.com/sql/ho ...Show All

  • Visual Studio MsBuild & VCBuild task setting /useenv

    I'm replacing our Nant scripts with MSBuild for building all our projects. We rely on LIB & INCLUDE being set in the environment when building VC projects. When building these projects via the MsBuild task (i.e. building the solution), vcbuild gets invoked without the /useenv parameter, so the environment gets ignored. The VCBuild task doesn't include a Useenv property either. Is there a sneaky way to do this For now I can work around it by using the Exec task to invoke VCBuild directly, but it would be nice to write: < Project DefaultTargets = " build " xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " > & ...Show All

  • Smart Device Development Getting the Location of phone

    Hi Developers, I need to get the present location of the Phone . (i.e) the country code , area code. Can u tell me the API how can i get that Regards, Parag MapPoint SDK can be used to write location based applications. This article might help you - http://www.codeproject.com/cs/webservices/MapPointSmartphone1.asp Aarthi ...Show All

  • Visual C++ Increasing /STACK value does not get rid of 'stack overflow'

    Hi, I have a program that, with the default value for /STACK, results in a 'stack overflow' error. So I continually increased that value (up to 1,000,000,000) but to no avail. It errors out in the same place even though the stack is maybe 200 levels deep. Memory usage (including allocation by called routines) does not seem to be anywhere that value. Any ideas Thanks, Nick. The /STACK option can not protect you against an stack overflow. This options says only how large the initial size of the stack should be. It seams that you just have an infinite recursion in you code. Let the application cras ...Show All

  • Visual Studio 2008 (Pre-release) DependencyProperty.AddOwner - what's the point?

    Say I have two classes derived from UserControl: MyFirstControl and MySecondControl. Thus, there is no inheritance relationship (in a C# / CLR sense) between the two classes. Further, say I want to have a DependencyProperty named (e.g.) IsCircular in both classes, where this property is to serve a similar role in each class. I have two choices here: I can either DependencyProperty.Register the property in each class, or I can DependencyProperty.Register it in, say, MyFirstControl, and then do MyFirstControl.IsCircularProperty.AddOwner in MySecondControl. My question is: why would I ever want to use the latter (AddOwner) approach ...Show All

  • SQL Server Javascript Error When trying url access

    Hi, i have a problem with the rs 2005, using url access to call a report: --------------------------- Error --------------------------- Error: 'RSClientController' is undefined Calling a report from the reportmanager works. The rs2005 runs on a machine with a parallel installed rs2000. I configured the virtual directory to machinename/reports2005 & machinename/reportserver2005. When i debug the clientscript i see that he requests a "/ReportServer2005/Reserved.ReportViewerWebControl.axd OpType=Resource&Version=9.00.1399.00&Name=Scripts.ReportViewer.js" and it seems that he doesn't get the jscript file. ...Show All

  • Windows Forms Performance Problem with TableLayoutPanel (.NET 2.0)

    I have a TableLayoutPanel with 7 columns and 41 rows. The panel is anchored Top, Left, Right. Each cell contains an identical user control; the user control is anchored Top, Left, Right within the cell. The user control also contains a TableLayoutPanel with 7 columns and 1 row. When the form is resized there is a lot of flickering and it takes a long time (3-4 seconds) to repaint the form. The problem is especially bad when maximizing or restoring the form. Is there any way to improve the updating of the form Note; I have tried double buffering and SuspendLayout/ResumeLayout without success. Here is a link to a sample VB.NET project which ...Show All

  • Visual Studio Express Editions Need help with for and pictureboxes

    I'm making a map editor to make maps Every tile is a picurebox. In the menu there is a command "New" wich will load all the default pics into the picturebozes, so you can make a new map i created this for statement dim i as integer For i = 0 To 391 PictureBox(i).image = My.Resources.Image_default Next i But this doesn't work. There is something wrong with the PictureBox(i).image Please help me. I'm using vb2005 Thanks in advance, Radexxion "There is something wrong with the PictureBox(i).image" doesn't really give much idea of the problem you are having. Have you created an Array called ...Show All

  • Smart Device Development Visual Studio 2005 Beta 2 - Emulator problem

    Hi! I've got a problem and wonder if anyone else has it (and has resolved it ) My problem is as follows .. I create a new device application and try to run in in emulator.. the emulator starts just fine, but it won't connect to it! At all! The error is "Connection failed. The system cannot find the path specified." Thanks in advance, Tadej I had the same problem so from a previous tip for vs.net 2005 beta 1 I added the service Virtual Machine Network Services to my network connection. I still got the same error so then I saw this tip and deleted the CoreCon directory and it worked fine. (I tried removing ...Show All

  • Visual Basic Disable close button

    Can we disable the close button on a form I can remove the minimize/maximize, but cant find anyway to disable the close button. Hello, I have this working fine. I put the close_button.enable( Me ) method in my load event. However, when I minimized the form, then maximized it, my close button went back to enabled. Is there a workaround for this Thanks. ...Show All

  • Visual C# Query DataBase Pt. 2

    Ok. I've gotten a lil farther but I am still having problems. In my database, I have a column named "SongName", and in the records, I have a song named "Ashanti - Baby". When I put this query command: SELECT * FROM TableName WHERE SongName = 'Ashanti - Baby'; It queries just fine. But when I put the following code: SELECT * FROM TableName WHERE SongName LIKE 'A*'; The query doesnt pull up anything. Can someone tell me what the problem is I believe the actual syntax is with a percentage symbol: SELECT * FROM TableName WHERE SongName LIKE 'A%'; ...Show All

©2008 Software Development Network