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

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

FrankVS

Member List

Gordopolis
abhinavvaid
lfeicht
Yan Y.
Sumit8888
Andrew Balan
sital
dragon123
HaidongJi
yaarit
Jay CHETTY
Irreversible
vbnm
gl3nn86
Marcus Deluigi
VladD2
jimcason
TFSAdmin
sandrop
Breetai7018
Only Title

FrankVS's Q&A profile

  • SQL Server SQL Express: Connection trouble with Trusted/DMZ zones

    Here is the way SQL Server 2005 Express is currently setup: SQL server has IP of 192.168.8.200. (DMZ zone - 192.168.8.*) Web server has IP of 192.168.8.81. (DMZ zone - 192.168.8.*) My workstation has IP of 192.168.1.100. (Trusted zone - 192.168.1.*) So, I've been developing a web application that was stored in the trusted zone, and this application didn't have any problem connecting to the database on *.8.200. I even have SMSE running and I can manage the database without any connection problems. I moved the web application to the web server, without changing the web.config file, and now it will not connect from the webserver. ...Show All

  • Visual J# java.util.Calendar deadlocks fixed in VJ# 2.0?

    Running on VJ# 1.1, I've recently run into the problem with java.util.Calendar deadlocks described here: http://www.codecomments.com/archive295-2004-4-165401.html Does anyone know if these deadlocks have been fixed in VJ# 2.0 VJ# team is looking into the issue and will get back to you with our investigations. Thanks ...Show All

  • Visual Studio Msbuild and TlbImp from Sdk 1.1

    Hello, I'm trying to compile a C# project using Msbuild and the 1.1 .Net framework version. My project has a reference to a Com library. I have installed the MSBee.dll and during the compilation I get the following error: "...obj\FX1_1\Debug\Interop.LMS.dll' could not be opened -- 'Version 2.0 is not a compatible version." It would seem that the "Interop.LMS.dll" is generated using the SDK v2.0 TlbImp.exe utility instead of the SDK v1.1 one. How can I fix this error Many thanks, Maurizio. You've hit upon a key limitation in MSBee Beta 1; resolving COM references isn't supported. This i ...Show All

  • Windows Forms working with parent/child forms

    I have an app, parent form - call it  FrmMain, and it has several child forms. user selects child form - ScanID, and this forms opens fine, and list Id's for the user to select. once selected, that forms closes and another child form opens to do some work. On that form, if the user closes the form - I want to re-open the ScanID form,&nbs ...Show All

  • Software Development for Windows Vista DirectX.AudioVideoPlayBack Volume problem

    Sorry am new to this and couldn't find anywhere else to post this! I have been writing an audio player program in C# and keep coming up with a problem everytime i try to change the Volume. It plays fine otherwise. the error comes up with DirectxException "Error in the Application", like i said i'm new to all of this so it might be something very easy, but i am pulling out my hair! Thanks for your help Dyl. Are you using the BasicAudio interface Did you put a break point where your volume code is located and find out what it is happening ...Show All

  • Smart Device Development background services

    http://www.pocketpcdn.com/articles/services.html is this still up to date somebody who has experiences withit Even better, does somebody understand it :) and knows how to use it. The sample files can you find below. I want an alltime backgroundservice that for example always on 3 o' clock do function. ...Show All

  • .NET Development .Net 2.0 Framework Issue

    I have a C# DLL on .Net 1.1 framework. I am calling this DLL from Foxpro code using as CreateObject("xxxxxxxxx.xxxxxx"). It worked fine. As soon as I installed .Net 2.0, it is no longer working. I am getting "OLE error code 0x80131509; Unknown COM status code. I used gacutil to registered the DLL. Any help will be very much appriciated. Thanks, Rob I registered as followed: regasm /u C:\Rob\AAA.dll /tlb:C:\Rob\AAA.tlb regasm C:\Rob\AAA.dll /tlb:C:\Rob\AAA.tlb gacutil /u AAA gacutil /i C:\Rob\AAA.dll gacutil /u BBB gacutil /i C:\Rob\BBB.dll gacutil /u CCC gacutil /i C:\Rob\CCC.dll ...Show All

  • Software Development for Windows Vista problems with vista 5365

    Hi We have an automation client application which is built against winfx Feb CTP dlls. The assemblies UIAutomationClient, UIAutomationProvider, UIAutomationTypes and WindowsBase are versioned 3.0.51116.0 in Feb CTP; in Vista 5365 they are versioned 3.0.0.0. Since there is no new SDK yet, we used bindingRedirect to redirect these assemblies to the new (lower number) version. The application now runs, but the element tree seems problematic. I don't see any elements with ControlType other than "Window" or "Pane". For example, the start button was typed "Button"; it's type is now "Pane". When ...Show All

  • Visual C++ What's wrong in my code or in VS.NET2003 C++ compiler

    I compile the following C++ code VS.NET2003 IDE and the compiler enter an infinit/endless compiling process, What's wrong within it Regards, Zhaohui Xing The code is given as following: //The testtempl.h #ifndef __TESTTEMPL_H__ #define __TESTTEMPL_H__ #include <stdlib.h> #include <stdio.h> #include <vector> template<int n> class MyTempl { public:  std::vector<int> m_array; public:  MyTempl()  {   m_array.assign(n, n);  }  int Summation()  {   int rn = 0;   for(int i = 0; i < (int)m_array.size(); i++)    rn += m_array [ i ]; &nbs ...Show All

  • Windows Forms Adding nodes to a treeview dynamically

    Hi I have a main Form with a treeView...and some nodes which are populated from a database....I have an Add New Node Form with an add method  that adds a new node to the database...Obviously I have to reload from the database before I see the new node added. Now I want the node to be added dynamically...... This is in the Add form that&n ...Show All

  • .NET Development Using a non-transactional SqlConnection within a TransactionScope

    Hi, I'm writing a resource manager. It's code will often be executed within the boundaries of a TransactionScope. The problem is that I would like to log all attempted actions on the resource to a database. Ofcourse all attempts that fail also have to be written to the DB. This means that I cannot let the SqlConnection I use to be executed within the transaction boundary of the resource manager... How can I make sure that this doesn't happen Let's make things clearer with an example. Consider having a 'RemoteResource' and that you would like to execute RemoteResource.ActionX within a TransactionScope: using (TransactionScope ts = ...Show All

  • Visual Studio How to make VS.NET 2003 open .cpp with my custom editor

    Hello, I have reviewed the whole forum, but had no luck in finding an answer. I have a custom editor that I developed, which hosts the core editor and extends it. It is associated with the "*" extension, so it works great with all text files. I can configure the editor as the "default editor", and when I open a file or double-click it on the solution, the environment launches my editor. Great! The problem areas are debugging and going to errors in the output window. When stepping through the code, debugging works great within my editor. It even jumps to other Doc/Views of modules opened in my editor. But if the debugger needs to open a n ...Show All

  • Microsoft ISV Community Center Forums Overflow problem

    I am getting an overflow problem with this code it is occuring in the line: newgrad = (.Range("C13").Value - Cells(30 + oneD, 2).Value) / (.Range("C12").Value / 2 - .Cells(30 + oneD, 1).Value) My values for the following cells are: C12 = 50 C13 = 1 C17 = 4 C18 = 101 Option Explicit Public ninterval As Single Private Sub CommandButton1_Click() Dim oneD, rbedradius, xinterval, mbedslope, newgrad As Double Dim xtest As Integer With Worksheets("Sheet1") If IsNumeric(.Range("C12").Value) = False Or IsNumeric(.Range("C13").Value) = False Or .Range("C12&q ...Show All

  • SQL Server I can't access cubes from excel

    I try to register the dll in a remote machine but I couldn't. Do I need to install something else in the remote machine Yes I have tried this with no luck. I think is a version problem, my server is April CTP. I'll try to install client tools in remote client. ...Show All

  • Visual Studio Express Editions Strings won't initialise

    My program has been working for weeks. Today, two things happened: 1. The .sln solution won't open into VB.NET Express, so I had to re-associate the .sln extension with the program. 2. The program will not initialise strings to an empty string. For example: Private mystring as string Msgbox(mystring) This throws an error, saying the string is not initialised. But it works when I change it to: Private mystring as string = "" Why is it suddenly doing this ur first problem happens with me.... but for the 2nd problem....as strings r "reference ...Show All

©2008 Software Development Network