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

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

JBT3000

Member List

dbinterz
Superfrog
Stilgar
Yogesh Kumar
Michael#
Brent Pabst
DanNova
Silverback
Devinder Singh
Chris Ellis
Kirk Hilse - Microsoft
Envitro
Walter Sobcak
Butch Clark
ray fitzh
MagicPatrick
steve paul
SAPO19875
t.voelkel
Dinalli
Only Title

JBT3000's Q&A profile

  • SQL Server Remote Connection problem on MS SQL 2000

    Hello, First, I want to say I read all threads similar this thread and I couldn't solve problem. My firewall is always off when I tried to connect remotly to SQL Server. I opened 1433 port from my router's configuration page and forwarded it to 10.0.0.4:1433. When I started SQL Server service and checking "netstat" with "-na" paramters. It shows only one row as "TCP - 0.0.0.0:1433 to 0.0.0.0:0". What "0.0.0.0" means and why foreign ad ...Show All

  • .NET Development Windows script host - Remote Scripting

    Hi I’m writing a remote windows script file (.wsf) and it appears to hang when I call it remotely. It does kick the script off and it runs until it hangs when I call send on a Microsoft.XMLHTTP object. Function GetHTML(strURL) Dim objXMLHTTP, strReturn Set objXMLHTTP = CreateObject("Microsoft.XMLHTTP") objXMLHTTP.Open "GET", strURL, False ' it gets as far as here and then hangs: objXMLHTTP. ...Show All

  • Visual C# How to open a text file into a RichTextBox and keep the file open ?

    Hi, My question is how to open a text file into a RichTextBox and keep the file open so the RichTextBox will be updated when the file does and will show all the text in the file constantly (in c#.net) Thanks a lot, I think you might have to create a new thread that will check the file and perform the update itself. I dont know of a way to do it automatically. The update may not be "live" but if y ...Show All

  • SQL Server Bug in NS 2005?

    We have rolled out a solution on SQL 2005 and NS for 2005. As we have been looking into reporting notifications from our system I came across that a column that is created out of the box does not make sense. In the generated table NS<NotificationClassName>Notifications there is a column called SubscriptionID, it is set as nvarchar(255), but in the NS<SubscriptionClassName>Subscriptions the SubscriptionID is BIGINT. Why would then be ...Show All

  • Visual Studio Team System warning MSB3245

    Hello, I have a project where I use an ActiveX - Control in a C# Project. Further this project makes use of a C++ assembly to demonstrate C++ interop. My problem is, that I can't do a teambuild (I want to demonstrate the usage of a nightbuild including unit - tests). The problem seems to be that the build needs the generated interop assemblies (I think those are created localy, when I add the ActiveX to the project). How can I supply them to the ...Show All

  • Software Development for Windows Vista TabletPC add-ons and additional features

    Hi all, Does anyone know of any add-ons that will assist in enabling the additional features of the tabletPC. I am running Vista build 5231 and I cannot utilize my additional monitor because the system does not allow me to do so. I am not able to activate my wireless card because there is no option to turn it on. I am using a HP Compaq TC1100 tabletPC which is very different from the flip screen laptop tablets. All the features and functions ...Show All

  • Windows Forms How to: Webbrowser NewWindow and Navigating equivalent to axWebbrowser

    At first, I enjoyed the new webbrowser control but then I noticed that the args provided by the events NewWindow3 and BeforeNavigate of the axWebBrowser had not been implemented in the new control. Arg. Good news, the guys from Microsoft gave us the a workaround recently in C# and said they will publish a sample soon on MSDN. In the mean time, here is some VB.net code inspired from Microsoft's C# that will give you 2 new events an ...Show All

  • Visual Studio Express Editions Problem creating a querry with an embeded variable when using access datafile as connection source

    When a Data Connection is established using Microsoft SQL Server Database File (SqlClient) as a data source the following code works perfectly SELECT * FROM ProdMaster WHERE (PRODMASTER.DESCRIPTION LIKE '%' + @DESCRIPTION + '%') The ToolStrip on the form opens an input box so you can type in a choice of DESCRIPTION and when the button is clicked the dataset returns only those values that meet the criteria input BUT If you ...Show All

  • Visual Basic Extracting e-mail .ATT attachments

    Does Express, specifically BASIC, include tools for opening e-mails, checking for attachments, removing and saving attachments and/or working on them Specifically, I have web forms that send information via e-mail that I would like to extract more automatically than is now the case (currently, with Outlook 2000 which has a bug so Save does not work - open e-mail, open attachment in NOTEPAD by assigning .ATT extension to NOTEPAD, save file f ...Show All

  • SQL Server SP1 install problem with password

    I upgraded an existing SQL 2000 SP4 to SQL Server 2005. This is on a 2003 SP1 server. During the upgrade, the Native Client errored out and gave "password does not meet Windows policy". The Database Services failed to install. This machine is on a domain and the password length and complexity settings cannot be modified by the local computer policy. I tried the installer a second time and no error was given and the install completed su ...Show All

  • Visual C++ console from form

    Hi! How can I call a Console window from a form application Ok: I dug a little deeper and I think I know what is going on here. The problem is that by-default a Windows Form application does not have a console associated with it: so any calls to Console::WriteLine will send the output into a black hole (\dev\null). The case where the application will work is if you start it from a console window because in this case the application will ha ...Show All

  • Windows Forms ListView Item can't show Icon

    I have programatically and set the ListView item using Visual Effect, but it cannot shown the icon after visual effect being applied. ListView1.View = View.LargeIcon ListView1.LargeImageList = imgIcons ListView1.Items.Add("Item 1", 0) ListView1.Items.Add("Item 2", 1) If I didn't using Application.EnableVisualEffects() routine, everything workout normally. But if I code it at Routine, it will not shown out the icons being display. Ple ...Show All

  • Software Development for Windows Vista PersistOnCloseAttribute seems to unload the workflow (Beta 2)

    Hello, what I'm trying to do is to create a custom activity telling a (sequential) workflow to save its state so it will be able to restore later its work at the point (e.g. when the user wants to continue later in another session). In other words I'm creating the activity class PersistencePoint having a class attribute PersistOnClose and doing nothing in its OnExecute (I'm not even overloading it). The workflow persists itself ...Show All

  • .NET Development The best way to connect to a access database

    Hi. I am using vb.net 2005 prof. When i connect to a database (access) with a datasource (the build in way), and the program are running, it seems like it takes forever to load the database. Is VB really loading the intire database to memmory That would be a problem if it's at realy big database. I have changed the code, so i connect programmaticly and it is much faster, but why does vb load the entire database I was realy exited when i st ...Show All

  • Visual Studio Why not tighter integration with things like MSBee????

    As a huge fan of Visual Studio 2005 it has been very demoralizing lately to look at the passive adoption I know my employer will have because of the amount of risk associated with running parallel versions of the IDE.  That combined with the obvious requirement to start upgrading our shared enterprise framework to start taking advantage of .NET 2.0 features and all of the regression testing associated with that has me feeling like this will ...Show All

©2008 Software Development Network

powered by phorum