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

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

TedWagner

Member List

Randy
S Nehra
burning snow
MCMICKS
dnhxx
xiangyap
t nguyen
Aidy12
Sephiroth84
Meluzina
tamc1993
velt
Harsh Vangani
donJulio
PeterPanTech
waikong
Melissa_Janet
DaveScotese
Nick111
JamaSaru
Only Title

TedWagner's Q&A profile

  • Smart Device Development how to generate Setup and deployment project for PPC

    HI , I've developed an application for PPC. It's working fine . Now i want to create a setup project. But i don't have any idea abt that. my application utilizes XML lookup tables.Can i add it into setup how to add icon Kindly suggest me to acheive this!. If u know links related to it kindly post it!. Thank You! Hi Senthil, I'm happy to inform u that i successfully load the pgm by using storege card(Already i deploy SQLCE and Compact framework by running the mobile pgm from desktop and set PPC as a target device) yes.I'm using sqlce DB. I found it! Path of those cab fil ...Show All

  • Visual C++ GDI+ Display JPG

    Hi all, I am new in Visual C++ and GDI+. I am currently using VC++ express to display a jpg file. I basically, copy from PSDK example and paste it on my program as follow: WM_paint: Image myImage(L"Climber.jpg"); myGraphics.DrawImage(&myImage, 10, 10); It didn't even compile. I am sure, I must have done something incorrectly or not doing something else in the first place. All other example I see in the internet gave similar method. Can anyone let me know how to at least display a JPG Regards, Alexon Jong Hi Martin, Here are the error: c:\documents and s ...Show All

  • Visual Studio Team System Move PInvokes to native methods Class

    Hi Guys I'm getting the above warning in FXCop (1.35), any examples on what I need to do to correct. Thanks FX Cop reports the following CriticalWarning, Certainty 95, for MovePInvokesToNativeMethodsClass { Target : GetKeyState(System.Int32):System.Int32 (IntrospectionTargetMethodBase) Resolution : "Because it is a DllImport method, FrmLogin.GetKeyState( Int32):Int32 should be defined in a class named NativeMethods, SafeNativeMethods, or UnsafeNativeMethods. " Help : http://www.gotdotnet.com/team/fxcop/docs/rules.aspx version=1.35&url=/Design/MovePInvokesToNativeMethodsClass.html (String) Category : Microsoft.Desig ...Show All

  • .NET Development Socket crashes on AccessViolationException when the peer side aborts (net2.0 beta2)

    Hi,   I experienced a weird problem with socket on my machine. On my colleague's it works like a charm.  When I have socket, waiting for incomming data (after I called BeginReceive) and the peer side aborts - eg. I kill the telnet.exe who I used as a client, the socket throws AccessViolationException on unknown module. The crash itself is in > imon.dll!20b0cd39()   did anyone experienced something similar, or it's problem on my machine regards   georgem Unfortunately, I can't get this to repro on my side using a current build and the dump file you sent contains only a ...Show All

  • Visual Studio 2008 (Pre-release) Horizontal TreeView

    I have tried templating the treeview control to be Horizontal instead of vertical using the ItemsPanel template <StackPanel Orientation="Horizontal"/> But I can seem to center the TreeViewItems text does anyone have experience with this or can you point me to a blog post about TreeView templates Much appreciated ...Show All

  • Smart Device Development Remote tools for Windows Mobile

    Hello, EVC3 and eVC4 included remote tools such as registry editor, zoomin, process viewer, etc.. However I cannot find such tools on VS2005 or any way to sintall them. Are they still available How can I install them Many thanks for the help. Best, Alessandro Hi Alessandro, The tools should be available from the start menu, they just aren't integrated into the IDE. Check out http://blogs.msdn.com/vsdteam/archive/2005/04/20/410117.aspx . Cheers! Jeff ...Show All

  • SQL Server Problems running SQL Agent Jobs & SSIS Packages

    I'm having some difficulties with the SQL Agent and running my SSIS packages. At present, I have several packages that import data from Oracle, a few that use a JODBC connection and several more that transfer data from other SQL servers (2000) I originally had the SQL Agent log in as a System Account, and although the pacages run fine if I manually right click and execute them, if I add them to a Job they fail with a login error. I then changed the login details to my domain account and the Jobs that run accross the SQL servers run fine. However the others that use Oracle and JODBC still fail with login errors. I've tried creating Credenti ...Show All

  • .NET Development .NET avoiding function within event handler?

    I'm pretty new to .NET i must admit, but i'm stumped by this.  It's on a pocket pc but i dont see how that makes a difference. This is in regard to handling SerialPort DataReceived event.  The event fires ok (well mostly sometimes it hangs up for a few seconds). "void onReceiveData(object sender, EventArgs e)         {             String str;             Regex reg = new Regex("(.*\\r\\n) (^\\$( <String>.*)\\r\\n)*( <Excess>.*) ", RegexOptions.Multiline);          & ...Show All

  • .NET Development WebService inheritance+WSDL

    I got some classes which I use as return types for web methods - works all fine - but the WSDL of the web service reflects too much of the structure in my opinion like inheritance which is visible trough the extension base. Is there a way to "flatten" the structure described by the WSDL So that something like Class A with property PA Class B inherits from class A with addition property PB (where class B is used as a return type for the web method) will be described in the WSDL as complexType B with two properties PA and PB instead of complexType B with property PB and extension base A Thi ...Show All

  • .NET Development C#, Oracle and Blackberry

    Hello Everyone, I want to create a C# Service such that if something is changed at Oracle this service listens for it and passses on to blackberry... Vice-versa if something changes at Blackberry, this service gets it and sends it to oracle. Someone have dealt with this before.... Suggest the best possible way to do it... Thanks, Harsimrat There is a forum dedicated to developping software for "smart devices"; try posting your question there. ...Show All

  • Visual Studio Express Editions VB 2005 Forms Control

    Can some one help me how to make a textbox accept only numeric values. The code "textbox1.numeric=true" gives an error thanks That's because there is no such property. You can use a masked text box, or you can search there forums, where the code to accept only numbers and control chars has been posted may times. ...Show All

  • Visual C++ How can I test if a gcroot<String^> has a String assigned to?

    There must be a way to test if my "gcroot<String^> m_aString" has been a real String assigned to (by executing "m_aString = gcnew String(L"")"), but I cannot find it. The compiler accepts my setting the variable to nilptr (m_aString=nilptr) but wouldn't allow asking "m_aString == nilptr". I tried countless other ways, but to no avail. Can anybody tell me how to do it -- Manfred Thanks, this works fine. But it's not quite clear to me that "!string" is equivalent to "nullptr == static_cast<String^>(string)", can you give me a hint that might enlighten me in this -- Manfred ...Show All

  • Visual Studio Express Editions relate an extension to my application?

    Hi. How can I set windows to open a type of files with my application. like a file.doc will be opened directly by Word. I want that my file.ext will be opened by MyApplication.exe can anybody give me the code to do that... Thanks For knowledge, I will post the solution I found: Public Sub Create( ByVal Extension As String , ByVal ProperName As String , ByVal IconPath As String , ByVal IconIndex As String ) ' remove the extension to avoid incompatibilities [such as DDE links] Try Remove(Extension, ProperName) Catch e As ArgumentException ' the extension doesn't exist End Try ...Show All

  • SQL Server sp_columns in SQL2K5 gives no rows for function that return table

    Some automated tools use sp_columns to find out the columns for a table, view or UDF that returns table. In SQL Server 2000 it gives columns back but in SQL Server 2005 it does not, compat level set at 80 and 90. Does anyone have an idea what id going on here Repro script below. I expect the script to return information about the two columns in the table defined in fnTestColumnsFromFunctions(). if exists ( select 1 from sysobjects where id = object_id ( 'dbo.fnTestColumnsFromFunctions' ) and type in ( 'IF' , 'FN' , 'TF' )) drop function dbo . fnTestColumnsFromFunctions ; go create func ...Show All

  • Windows Forms PreferredSize

    I have a custom control and would like to set the PrefferedSize property to be used in a layout routine. The property only has a 'set' method. Is there any way to 'convince' the base control to return a preferredsize of my controls choosing Will this property be made settable Thanks, Ray GetPreferredSize is the Correct answer.  The Documentation should note that the default implementation of PreferredSize calls GetPreferredSize with a size of 0. - Ray ...Show All

©2008 Software Development Network