Software Development Network Logo
  • VS Team System
  • Visual J#
  • Visual C#
  • Visual C++
  • Windows Forms
  • Windows Vista
  • Microsoft ISV
  • Game Technologies
  • Smart Device
  • .NET Development
  • Windows Live
  • Visual Basic
  • Visual FoxPro
  • Visual Studio
  • Architecture

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

jstark

Member List

Jo Molnar - MSFT
Tilfried Weissenberger
Joanne Nguyen
Jeff Lundstrom
Roger Haight
DarkDream
David Eliason
Noogard
jciurlin
uncle_peter
Belzicool
Glamdring
Captain Hook
Pejvan
K-Mile
Rafal Szul
farshid farzad
SDante
JimVal
Moien
Only Title

jstark's Q&A profile

  • Visual Basic I know VB.Net but I want to learn the basics of VB6 as quickly as possible

    I use VB.Net but I have a requirment to learn the basics of VB6 as quickly as possible. (sorry I m going backward :). I m mostly familiar with VB.Net but not with VB6 Anyideas, thanks Here's a good site to get started with: http://www.profsr.com/vb/vbintro.htm#content There's also a tonne of great content at the VB6 Resource Centre: http://msdn.microsoft.com/vbrun/ Hope that helps, Jonathan Aneja The VB Team ...Show All

  • Visual Basic Migrating usage of VB6 control arrays to 2005. How do I do this?

    Hi again. Need some advice and I'm new to VB2005. In VB6 I used control arrays a lot, and there are no control arrays in 2005. I found out how I can do the same thing by referencing the handles in a sub, but I have another scenario not covered in MS's migration page. To make it simple, let's say I have 10 labels and I want to pick one randomly and display text in it. In VB6 I could have all these labels in an array and do this (quazi code) I = ( ...Show All

  • .NET Development Remoting Configuration in VS2005

    Hi there, I'm trying to configure the remoting services and channels of an application using the app.config file in VS2005. It keeps giving me an error telling me that it... Could not find schema information for the element 'application' as well an error for every other child element under the <system.runtime.remoting> element. Here is the start of the configuration.... < configuration > <!-- Configiration of t ...Show All

  • Windows Forms How to access listbox from outside parent class

    I've written a function to add a line to a listBox so my program can give updates of its current status. Heres the code: void Main::listBox_Messages_Add(String ^message) { if (listBox_Messages->InvokeRequired) { listBox_Messages_Add_Delegate ^func_delegate = gcnew listBox_Messages_Add_Delegate(this, &Main::listBox_Messages_Add); Invoke(func_delegate, message); } else { Main::listBox_Messages->TopIndex = Mai ...Show All

  • .NET Development Calling a stored SQL Proceedure from VB

    K, got some canned proceedures on SQL Server 2005 Express, now any thoughts on accessing them The project is pretty simplistic, but its a learning tool for me. dim IP = ...... 'got this working ok Call dbo.HitTable.Update(IP) ' speculative idea Call dbo.Hitable.Hits() 'more speculation Sorry, never tried SQL from VB before, let along any other tool. http://www.vbdotnetheaven.com/Code/Jun2003/2102.asp I provided this link ye ...Show All

  • SQL Server messages aren't getting through after backup / restore on a different server...

    after restoring a database and regenerating keys, I'm trying to queue messages, and they're all hanging out in sys.transmission_queue with the following message: An exception occurred while enqueueing a message in the target queue. Error: 15517, State: 1. Cannot execute as the database principal because the principal "dbo" does not exist, this type of principal cannot be impersonated, or you do not have permission. I can't find any documentat ...Show All

  • SQL Server Select based on primary keys in CSV file...

    I have a comma separated file of id numbers for which I would like to select more information from a SQL server database. In my research around the web I learned of the BULK INSERT command to insert data from a csv into the database but I am looking for something of potentially similar functionality but rather instead of inserting I would like to SELECT item description, price, etc FROM the products table for a specified list of a few thousan ...Show All

  • Visual Studio Team System Stopping Build After First Error For Desktop Builds

    We are building multiple solutions in our Team Build project file and I have have had a request from developers to be able to halt the build when the first error is encountered when doing desktop builds. In looking the CoreCompile target, it seems that I want the MSBUILD task that performs the compile for the solutions to have the StopOnFirstFailure attribute to be true. However, I do not want to have to copy the Team Build CoreCompile target ...Show All

  • Visual Basic Disabling Special Keys & DB Replication Control

      This may be more of an Access question, but perhaps there is some code that someone might know of that would help. When special keys are disabled in Access's startup options how does one actually bring up the database window   I need to disable the special keys to prevent my users from accessing the database window in my application, but if I do that, and maybe I am just inexperienced, but how do I pull up the DB window as the ...Show All

  • Visual C++ How to change paper size while printing

    Hello everyone, I'm trying to print a couple of pages using the MFC platform of CView, but while printing I want to change the paper size from landscape to portrait. I now override the following functions : - OnPreparePrinting       Here I set the papersize to landscape using the following code (from MSDN)        PRINTDLG pd;       pd.lStructSize=(DWORD) sizeof ...Show All

  • Visual Studio Express Editions sendkeys and focus

    Ok i got a bit of a prob. i'm tryin to make vb type in a webbrowser thing tht i got onscreen in a vb form. my friend suggested send keys but you have to set a focus to the webbroweser or somethin like tht. i tried everything he's said but i've had no luck. can anyone out there help me   if u didn't get tht, i want vb to type in a webbrowser bit which is in my form when i click a button.   ok a bit of an update ...Show All

  • Windows Forms Sorting Strings with numeric values

    I have a datatable with a column score specified as string. I am using dataview.sort to sort the results.But the sort is not returning the data I wanted. Suppose if I have score as  100.00 , 99,23,11 etc when I use dataview.sort I am getti ...Show All

  • SQL Server error during quiet installation of June CTP.

       I am trying quiet installation of June CTP with the .ini file .   The installation is failing with Last Action :Install Finalize:       The sql server service failed to start.       Error number:29523 --------------------------  My ini file settings were as folllows [snip] SQLBROWSERACCOUNT= "NT AUTHORITY\LOCAL SERVICE" SQLBROWSERPASSWORD= SQLACCOUNT="N ...Show All

  • Visual C# VS 8 Performance makes it unuseable

    Hi, We have converted a large c# solution with 12 projects and about 60 Mb of code from VS7 to VS8 and find that working in the IDE is impossibly slow. We are running on a P4 3.2 Ghz 1 Mb RAM with Windows XP SP2 (clean install). It seems slow in all areas of development. The only area where perfomance is as good or better is in running the release code. So far it's a major backwards step when compared to VS 7. Is anyone else experiencing t ...Show All

  • Visual C# Accessing FTP site from C#.net

    Hi, I need to know the best possible way to access and download files from an FTP site which is an internet site. This should work in .NET framework 1.1 and should support proxy mode. It would be better if someone shares sample code to achieve the same Thanks, John. Hi Using System.Net.WebClient you can send and recive information from any web site hosted in internet. I don't exectly know that it ...Show All

©2008 Software Development Network

powered by phorum