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

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

panaconsultas

Member List

Jubin
Melampus
satya chappidi
tr00per
Bardur
Sandeep Bhatia
Chad Michel
madda
Fil Mackay
rayman2
Hoop
JimPan
Talwalkar
csi_hugh
Modian
Bosikov
Algis Kuliukas
Armoghan
Gus Jones
Suresh B
Only Title

panaconsultas's Q&A profile

  • SQL Server Remote Connections with SQL Developers Edition

    Hi, I want to allow someone to update the data in a database being developed in SQL Developers Edition. The idea is while I'm developing the database the person who's database it is can do the data entry. The data monkey lives no where near me so I cannot keep keep updating a local copy there... I've tried to set up and connect but the server keeps refusing the connection. So question is... can SQL Developers Edition allow remote connections... and if so, which I hope it can, whats the way to go about setting it up. Far as I can tell I'm ok in regards to specifying the location of the server, the SQL user account is set up and has a ...Show All

  • Windows Forms how to write my own Winforms control and use it in IE

    I want to write a Winforms control and use it inside IE. I'm searching  for a tutorial/documentation The Newsgroup is about " Discuss the ClickOnce deployment technology as well as using Windows Forms controls from inside Internet Explorer" so i hope you can help me. Regards Stefan Click Once and Hosting Winform contorls inside of IE are 2 different things. For a tutorial on Hosting .NET windows form contorls inside of IE please see here ...Show All

  • Visual Basic Making a picturebox have a transparent background

    I have a picture of a panda with a pink background (panda_down.bmp) and I was wondering: how do I get that pink background to be transparent Never say never, my friend! I ran into the same program you're having. The EXACT same problem.... Well.... I didn't have a pink panda.... But still.... The SHORT answer to your question is that you can't have transparency in a picturebox control without doing some pretty complex coding. If you want the contents of a picturebox to be transferred into an image object, you can just go: Dim I as new Image I = Picturebox1.image or something... But, when I had your problem, I learned ...Show All

  • Visual Studio Different behavior between .sln and .sln.proj file

    Hi I just discovered an interresting issue. I have created my own targets file that are called from my project file called Testproject.proj. I have changed the import line in the proj to look like this  <Import Project="$(SolutionDir)..\MyCustomTask.targets" /> The interresting thing is that when I run my Msbuild command on the solution(Testsolution.sln) that contain the proj file it does not resolve SolutionDir correctly. But when I run MSBuild on the generated  Testsolution.sln.proj SolutionDir does resolve correctly. Here is the output with the command: MSBuild Testsolution.sln Microsoft (R) Build Engine Version 2.0.5 ...Show All

  • Smart Device Development Take an incomming call on a smartphone

    Hi, I'm trying to make a program in VB using SmartPhone functions. For instance, I succed to dial a call with PhoneMakeCall function : http://msdn.microsoft.com/library/default.asp url=/library/en-us/APISP/html/sp_phone_phonemakecall.asp I'd like to know if it's possible to take an incomming call, I can't find anything about that on MSDN.. Does someone could say me if it's posible, and how do that. thanks Sorry, i forgot the import.. Here is the good one : <DllImport("coredll.dll", CharSet:=CharSet. Unicode )> _ Public Shared Sub keybd_event( ByVal bVk As Byte , ByVal bSca ...Show All

  • Windows Forms I unchecked "Automatically generate deployment webpage" now...

    So I unchecked "Automatically generate deployment webpage" under the Options button so ClickOnce would publish. (original post here ) Now, how do I create a deployment page to test out the app Regards! =) You don't really need a test page...just open a browser and type the URL in directly. For instance: http://localhost/MyApp/MyApp.application or http://localhost/MyApp/setup.exe That will launch the app for testing purposes. Or you can create a test page by hand...it wouldn't be very hard. Just add references to the above URLs in a standard HTML page. ...Show All

  • Smart Device Development Error Signature

    Hi, I'm getting the following error when I try to run my C++ program.  "program.exe has encountered a problem and needs to close. We are sorry for the inconvenience."   When I clicked on further details it was labeled "Error Signature".  What does this mean and how can I fix it.  I am using Visual C++ 6.0 on Windows XP. Thanks Sue Dickerson Hi Sue, Is the program you're talking about running on a device This forum is focused on Smart Device (Windows Mobile, Windows CE) programming. Beyond that, I'm guessing that you should attempt to step into your program from within VC6.0 using the debugger, and see if yo ...Show All

  • Visual Studio 2008 (Pre-release) Replacing the +/- in a TreeView

    Is there a good way to replace the +/- buttons on a TreeView HierarchicalDataTemplate doesn't seem to be the right choice, and I don't know how to use a ControlTemplate with a TreeView. Thanks I guess you put an image control in the treeview that loads from a resource: <!-- SimpleStyles: TreeViewItem --> <Style x:Key="ExpandCollapseToggleStyle" TargetType="{x:Type ToggleButton}"> <Setter Property="Focusable" Value="False"/> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type ToggleButton}"> ...Show All

  • Visual C# Interop and Struct

    Hello all, I try to call another dll from C# but so far it's not returning the result that I want. And I think the problems are reside on the way I declare the unmanaged code. So If I have following class in C++. How should I declare the unmanaged code in C# typedef void * MQISDPCH; /* Connection Handle */ /* Information required for MQIsdp server connection */ typedef struct struct_SVRS { long portNumber; char ipAddress[MQISDP_INET_ADDR_LENGTH]; } MQISDP_SVR; /* Connect parameters - fixed length portion*/ typedef struct struct_CP { long version; long strucLength; /* Fixed length plus variable portion length ...Show All

  • Visual C# Compiler Warning CS0465: Introducing a 'Finalize' method...

    Compiler Warning (level 1) CS0465: "Introducing a 'Finalize' method can interfere with destructor invocation. Did you intend to declare a destructor " According to the MSDN online docs, this warning is supposed to happen when a public virtual Finalize() method is declared, but in my case it is a private non-virtual method and it seems that the warning is invalid... am I missing something Is that new for the VS 2005   We've used that method of disposing custom resources in many of our existing VS 2003 classes without issue.  Adding a Finalize method for custom resource reclamation ...Show All

  • Visual Studio Tools for Office How to start and stop Excel from WinForm app?

    I have a WinForm app. I use Excel to print a report. Different from within a VSTO project, I do not have access to an Excel process. I have to start Excel explicitly. Now I am using the following code to start and stop Excel. public class ExcelInterface { private static Microsoft.Office.Interop.Excel.ApplicationClass excelApp = null; public void StartExcel() { if( this.excelApp == null ) { this.excelApp = new Microsoft.Office.Interop.Excel.ApplicationClass(); } } public void StopExcel() { if( this.excelApp != null ) { Process[] pProcess; pProcess = System.Diagnostics.Process.GetProcessesByNa ...Show All

  • Smart Device Development How to build Visual Studio 2005 Smart Device CAB files?

    Most of my apps are written in VB.NET. I have been convert all my apps over to VS 2005 from VS 2003. I have a lot of Smart Device Programs I have also converted over. Now this is my issue in VS 2003 under the build menu you had Build CAB Files. This would very fast and easy create all your CAB files. In VS 2005 I no longer see that option so how do I do this in this new version I've been using 4.0 for a while.  Not really tried it with Windows Mobile 5.0, but no problems with it.  Devices I'm using are XdaIIs Get it from here -> http://download.microsoft.com/download/c/4/5/c45f8f83-6383-43d7-840b-cb9638484e4d/setup.exe ...Show All

  • .NET Development 'System.TypeLoadException' -- PLEASE HELP

    Hello everybody, I am new to this forum, this is my first post. I recently compiled a large project using vc++ express, but I get this error as soon as the programs starts: " An unhandled exception of type 'System.TypeLoadException' occurred in Unknown Module. Additional information: Type '<Module>' from assembly 'VectorArt, Version=1.0.2297.41533, Culture=neutral, PublicKeyToken=null' contains more methods than the current implementation allows. " Any suggestion Any idea how to solve the problem I did a google search and found nothing. Any help would be greatly appreciated. I'm experiencing the sam ...Show All

  • .NET Development .NET XML Serialization Question

    Hi Folks I'm running .NET 1.1. I've a quick question regarding xml serialization: Is it possible to flag properties with an attribute to specify "Always Serialize". Especially read only properties. Explanation: I am using xml serialization to produce xml from objects for consumption by my frontend, which is displayed via javascript and xslt. I obviously would like all my public properties to pull through in the xml. They don't seem to unless they are declared read-write and have actually been modified in the object. I don't want to have to write a custom implementation of IXMLSerializable to do the work as that d ...Show All

  • Visual C++ Problem when i compile a simple program

    I type the following code: #include <stdio.h> #include <conio.h> void main() { printf( "hello" ); getch(); } and this is the error message after i compile it: ------ Build started: Project: c++, Configuration: Debug Win32 ------ Compiling... Inthu.c d:\documents and settings\bui huy hoang\my documents\visual studio 2005\projects\c++\c++\inthu.c(7) : warning C4996: 'getch' was declared deprecated d:\program files\microsoft visual studio 8\vc\include\conio.h(146) : see declaration of 'getch' Build log was saved at "file://d:\Documents and Settings\Bui Huy Hoang\My Documents\Visual Studio 2005\Projects\c++\c++ ...Show All

©2008 Software Development Network