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

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

SmartTrac

Member List

Rahul_It
venkata ramana
Bizsoft
jherbst
Alexei Bocharov
Kzeto Ng
Piero Silvestri
Prasad Honrao
Help_is_forever
Windows Genuine Advantage Notifi
abhig
Marcel Haans
seepicture
Eric Promislow
Stevey
Johan Andersson
Cogz
OFord
pixielightning
AkoSam
Only Title

SmartTrac's Q&A profile

  • Visual C++ a lock system problem

    Hi, I'm working on a program using a .ocx control purchased recently (whose function is calendar and calculator). However, whenever I lock the system by pressing Ctrl+Alt+Del or the screen saver with password is about to run, my program crashes. I know it's due to that control, so I asked the company for the source code. But it is too complicated to make myself clear on those codes in a short time. If sb. has the experiences of dealing with such problem, pls do me a favour,just show me where should be focused on. Thank you very mcuh. If you have the source code create a debug build. Launch the sample program that causes the crash. ...Show All

  • Software Development for Windows Vista Workflow won’t start...

    again, hi everybody: my problem: my workflow wont start. what i did, is the following: calling the workflow from a class: WorkflowRuntime workflowRuntime = new WorkflowRuntime(); workflowRuntime.StartRuntime(); updateStatus("WorkflowRuntime started..."); workflowRuntime.WorkflowCompleted += OnWorkflowCompleted; Type type = typeof(AdminToolWF.CustomerFlow_A); --> workflowRuntime.StartWorkflow(type); updateStatus("Workflow " + type.ToString() + " started..."); waitHandle.WaitOne(); workflowRuntime.StopRuntime(); updateStatus("WorkflowRuntime stopped..."); at --> t ...Show All

  • Windows Forms Rolling out security settings to corp. network

    I have a ClickOnce app that requires elevated permissions. We've deployed it to a network share for our internal use. For users to run this, my understanding is that the network share must be added to the list of trusted sites in IE. Is there any way I can do this for all machines in our network, without having to sit down at each of&nbs ...Show All

  • Visual Studio 2008 (Pre-release) How to minimized the application to system tray

    In WinFX, how do we minimized the application to the system tray You would have to use the NotifyIcon class to show the icon in the tray. In addition you might want to use ShowInTaskbar=false ...Show All

  • Windows Forms Rotating but not rotating text

    In a school project to design a custom meter control, I wanted to come up with something resembling a speedometer. I rotated the tic marks, and needle around the center of the control. I also rotated the text around the center point, but this wasn't exactly what I was looking for. How would I get the text to stay 'upright' while rotating it's ...Show All

  • Visual Studio Tools for Office Proxy Remote Object?

    Dears, I have a class file containing the following code: Excel.Worksheet wsActive = (Excel.Worksheet)Globals.ThisWorkbook.ActiveSheet; ((Excel.Range)wsActive.Cells[1, 1]).Value2 = "Test"; I can retrieve the ActiveSheet object successfully (because I can get the ActiveCell location from the ActiveSheet object), however, I can't assign a value to the worksheet. ERROR : ((Excel.Range)wsActive.Cells[1, 1]) Cannot obtain fields or call methods on the instance of type 'Microsoft.Office.Interop.Excel._Worksheet' because it is a proxy to a remote object. Microsoft.Office.Interop.Excel.Range Is there anything missed Thanks, ...Show All

  • Smart Device Development ActiveSync4.0 VS2005 beta2, PPC2003 failed!

    Got the error message: "No address is detected for the deployment target by the current connectivity bootstrap. If the target is an emulator, verify whether the network DHCP server is running." Environment: Device: O2 Xda II/PocetPC 2003/Traditional Chinese Connection: over  bluetooth connection. (can synchrozie) OS: Windows XP Professional English SP2                        (Language for non-Unicode Program: Chinese(Taiwan)) -- The error that you are seeing is usually caused by trying to use th ...Show All

  • Visual C++ Can anyone explain why this code line right or wrong?

    Can anyone explain why this code line right or wrong in C++ char c [0]; In standard C++, declaring arrays with zero elements is illegal: int n[0]; //illegal However, certain compilers do support arrays of zero size as non-standard extension. In contrast, dynamic allocation of zero sized arrays is valid C++: int n = new int[0]; The standard requires that in this case, new allocate an array with no elements. The pointer returned by new is non-null and it is distinct from a pointer to any other object. Similarly, deleting such a pointer is a legal operation. While zero-sized dynamic ...Show All

  • SQL Server Using UDL insde SSIS package

    Anyone knows how to use UDL file inside SSIS packages like the way UDL is used inside DTS packages Or does SSIS supoorts using UDL in the same way as DTS Thanks. Unfortunately the udl file is not supported by SSIS connection managers, you may try the DTExec work around to see whether that's feasible in your scenario: DTExec /Connection "ConMgr":"<Conn String>" .... HTH wenyang ...Show All

  • Visual C# Deleting a file

    Hi, I'm trying to delete a file and the following File.Delete( "C:\\mytext.txt" ); causes an error saying "The name 'file' does not exist in the current context" How can I fix this error Thanks, Bruce   Is this a compilation error or a runtime error If it literally says 'file' and this is a compilation error then you have not properly capitalized the name of the class.  You have entered file.Delete("c:\\mytext.txt"); Change it to File.Delete("c:\\mytext.txt"); C# is case sensitive. If this is a runtime error then something else must be going on.  If th ...Show All

  • Visual Basic VB2005 and MS Access

    Just a simple question here. I am curious if its best to use SQL for databases or can I use Access (.mdb files) databases I'm very new to 2005 btw. And porting from vb6. Thanks in advance. Hi It really depends on the complexity and number of users that will be using your program concurrently. If you have a large user base then Access is definitely not the way to go whereas if you only have one or two users and want an easy way of deploying the database with the application then Access would suit nicely. SQL Server on the other hand will handle a large number of concurrent users and will allow for scalability at a later time. ...Show All

  • Visual Studio Express Editions Debug assertion failed: (unsigned)(c+1) <= 256, file isctype.c, line 68

    I have compiled a debug version of Thunderbird using VC++ Express. I intermittently get the error in the Subject. When I kick into the debugger, the stack trace seems to indicate that the range check is actually failing in the _security_check_cookie() routine. Here's the stack trace: msvcr80d.dll!1023c92d() [Frames below may be incorrect and/or missing, no symbols loaded for msvcr80d.dll] msvcr80d.dll!1023cd81() > xpcom_core.dll!nsCRT::strtok(char * string=0x040db607, const char * delims=0x0371f398, char * * newStr=0x0371f398) Line 172 + 0xa bytes C++ Here's where the application code got to - it is just trying to return fr ...Show All

  • Windows Forms Determing if a control inherits its font

    So, I figured I'd post my first question here, and see if someone can help. I'm writing some code that needs to know if a control's Font property has been set individually, or if the control is inheriting its Font property from the form. I can think of lots of kludgy ways to determine this (that is, I've got it working) but the code is&n ...Show All

  • Visual Studio january ctp

    Any idea when the January CTP is going to be released Hi Michael, There is no January CTP, but we're pretty close to releasing the Feb CTP drop. I don't have a solid date on when it'll hit the download site at https://affiliate.vsipmembers.com/ , but it shouldn't be much longer. Sincerely, ...Show All

  • Visual Studio Team System .trx insert to DB, Distributed web testing across networks?

    Hi All, I'm trying to accomplish having agents across multiple networks without a VPN.  Right now I'm using windows scheduler to launch the mstests on the agents, and then the agents push the .trx file back to the test controller.  Is there a better way of going about this   From my understanding, all the agents and the test controller have to be on the same network . . . can someone verify that for me If it is the case, is there a tool which will convert that TRX to the default LoadTest DB   I'm using the Team Suite trial version . . . no foundation server though.  I'm trying to put the information from the ...Show All

©2008 Software Development Network