Software Development Network Logo
  • Visual Basic
  • Audio and Video
  • SQL Server
  • Visual C#
  • Windows Vista
  • Windows Forms
  • Visual C++
  • .NET Development
  • Game Technologies
  • IE Development
  • Visual Studio
  • Microsoft ISV
  • SharePoint Products
  • Visual FoxPro
  • Smart Devicet

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

Northwester

Member List

Matt Lin
baobab
Bruce Bukovics
Hatzi74
Kerry_Dixon
Muhsin Zahid Uğur
Beat
Chris.Stewart
Cybersurfer
AnnNeedsHelp
orent
Nikolay Georgiev
Mahesh Gaware
fleo
pojee386
craemer
johnny_no1_boy
ETJorg
riga66
Graham Hansen
Only Title

Northwester's Q&A profile

  • Visual Basic VS doesn't recompile..

    Lately this stupid Visual studio 2005 have made this little problem. When i change my code and tries to run it, it doesn't recompile the new added code but just keeps using the old one! When i then tries to pause it when it displays a messagebox ( wich i have deleted from the code) it stop and says that there is no source code to display. I have tried the rebuild function but dont help. Also tried shutting the studio down and open it again, but that dont help either. Anybody have a solution The one thing that is really weird about this, is that any change i make in my program wont be in the debug program. Ive tried changing the backcolor, adding lots of buttons and writting strange text in the ed ...Show All

  • SQL Server System Out of Memory Exception in SSRS 2005

    Hi, Thak You in advance. Today I designed a report which loads some thousands of records. I got System Out of memory exception while executing the report. I don't how to go about this. The Dataset consists of 75000 records and 20 columns. The server has 2GB RAM and OS is Win 2003 SP1. Please help in how to go about this. Thanks again. Regards, Das. ...Show All

  • Visual Studio Express editions documentation

    Looking at the page that lists the differences between the various visual studio versions I see that the express editions have " 10mb "Getting Started"; Starter Kits targed at first-time programmers; 200mb optional MSDN Express" while the pay versions have MSDN. What kind of documentation is missing from the express versions I was looking through the .NET docs and it looked like some things are missing. For example in the class library section there was only documentation for the System namespace (this was the only top level namespace available). On the other hand I don't have much experience with .NET so maybe I am just missing something.Is there away to add the full MSDN doc package or is this only for the ...Show All

  • SQL Server Creating a UDT Type with create assembly

    I created a UDT Type (using MS Server Express Edition  and Visual Basic 2005 express) but I get some errors: Msg 6556, Level 16, State 1, Line 6 CREATE TYPE failed because it could not find type 'UDTProj' in assembly 'UDTProj'. Msg 6597, Level 16, State 1, Line 6 CREATE TYPE failed. That is my code: Public Structure UDT_interval Private adresse As String Private beginn As Date Private ende As Date End Structure ************in Transact-SQL //register the UDTProj assembly USE TestData; CREATE ASSEMBLY UDTProj FROM 'C:\MS Visual Studio\MyOutput\bin\Release\UDTProj.dll ' WITH PERMISSION_SET = SAFE; // create the UDTProj type CREATE TYPE dbo.UDTProj EXTERNAL NAME UDTProj.[UDTPro ...Show All

  • Visual C++ Linking an app in debug mode (with /MDd) against static lib built in release mode (with /MD)

    I remember this sort of mixing used to work fine prior to VS2005. But now it doesn't seem to. This suggests that one has to have a debug and a release versions of each library to be able to compile a debug and a release version of the application. The following short example results in an access violation exception: Compile A.* into a.lib in release mode with /MD (it doesn't matter if compiled with or without optimization): File A.h: #include <vector> class A { public : std::vector< double > v; A( int x) {} ~A(); }; File A.cpp: #include "A.h" A::~A() { } Compile app.cpp in debug mode with /MDd: File app.cpp: #include "A.h" void main() { A a(4); } The ex ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Unable to purchase XNA Creators Club

    I am having a problem with subscribing to XNA Creators Club and I would like to know if anyone else has had this problem and gotten around it. I go to XNA Creators Club in the Xbox Live Marketplace. I then go to Memberships and then I select the XNA Creators Club 4-mo Membership and I get a error when Confirming my purchase. The error is: --------------------------------------------------------------------- Can't retrieve information from Xbox Live. Please try again later. Status code: 80154003 --------------------------------------------------------------------- I have called 1-800-4MY-XBOX because thats where I would go to cancle it and thats where you would go for customer support. They did not even know what XNA was and I talk to 3 peo ...Show All

  • .NET Development Get the values of method`s parameters

    Hello! How can I get the values of the parameters of a method that is in an assembly, at run-time Lets say we want to see the System.Xml assembly, XmlDocumnet class and and some application I don`t know calls the 'CreateNode(string, string, string)' method, e.g: xmlDocument.CreateNode("1","2",""). I want to make an aplication that has the input data the name of the assembly (e.g. System.Xml.dll) and with the System.Reflection namespace I was able to get the static structure of the assembly(classes, constructors, methods + signarure, proprietes, events). When I click on a method, I want to see all the calls of that method since I`ve clicked on it until the current moment. Is this possible Do you ...Show All

  • Visual Studio 2008 (Pre-release) How to access sharable data between WCF Client and WCF Service

    I have a project include four level:WinUI,WCF Client,Host(IIS),WCF Service. I have a requirement: I want to create a hashtable to store some common data such as User Id, User Name, Role and WinUI, WCF Client ,WCF Service all can get or set the HashTable. So the question is how to pass the common data between WCF Client and WCF Service. Thanks, Zhihao Hi Pablo: Thanks for you reply! Could you give me some detailed information or sample code about it because I'm new in WCF. Thanks, Zhihao ...Show All

  • Visual Studio Express Editions Creating my own Methods

    Hi, I have a class for data with an overridden ToString() member namespace Employee { public class Employee { public string firstName; public string lastName; public string jobTitle; public override string ToString() { return lastName + ", " + firstName; } } } A Form with a listbox for display purposes and another form acting as a dialog for entering data With help from this Forum I am now saving the data to a text file. However, I only show names in the listbox but I want to save all data [including the job] to the text file. I tried overiding the ToString() method a second time, but that's not allowed so I created a similar method private string MyString() { return firstName + &quo ...Show All

  • Visual Studio Express Editions System Tray icon text?

    Im making a simple clock with a system tray icon and I cant seem to write the Tray Icon text right ~~~Code----------------------------------------------------------------------------------- Public Class Time Inherits System.Windows.Forms.Form Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick Label1.Text = Now.AddHours(16) 'Australia Label4.Text = Now.AddHours(3) 'England Label2.Text = Now.AddHours(8) 'Iraq, Baghdad End Sub Private Sub Time_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Timer1.Enabled = True Timer1.Start() NotifyIcon1.Text = "Times: " & Now.AddHours(3) + Now.AddHours(16) & Now.AddHours(8) NotifyIcon1.Visible = True En ...Show All

  • Visual Studio 2008 (Pre-release) Flattening hierarchical data

    Hello, I'm trying to work with some hierarchical data, but I can't find a way to bind to it in a flattened way. For example, using the HierarchicalDataTemplate example project, it shows how to do a Menu, and a Treeview, but how about just a plain ListBox I would like to be able to display a list of all the teams (in all the divisions of all the leagues) in a list box. Of course I could just create a flattened list in code by traversing over the data myself, but then this would not be bound, so would not update when a team, division, or league were added or removed). I was hoping for something like Path=Divisions/Teams, but that only seems to take teams from the first division. Thanks in advance, Alex ...Show All

  • Visual Studio 2008 (Pre-release) Scrolling to selected index in listbox

    I have a listbox defined in XAML which is databound to an XML source of about 2000 items. This populates without a problem. Snippet: < ListBox ScrollViewer.CanContentScroll = " True " Height = " 152 " x:Name = " LBBind " Width = " 400 " IsSynchronizedWithCurrentItem = " True " ItemsSource = " {Binding Mode=Default, Source={StaticResource TableDS}, XPath=/Table/MED/@Name} " /> My issue is when I change the selected index within C# and setfocus to an item that is not within view, it does not autoscroll to the index. It does highlight the appropriate row because if I manually scroll down it is selected. What piece am I missing Snippet: LBBind.SelectedIndex = 20; LBBind.ScrollIntoView(20); LBBind.Focus() ...Show All

  • .NET Development Deploying certificates for wse 3.0 web services

    Hi everyone I was wondering if someone could help. We have an app and web services that we have built, the web services are secured using WSE 3.0 with certificate based authentication. Whilst everything has been developed we have been using test certificates but now we are getting close to the deployment stage. I have been trying to look for some information on how to use certificate based security in a production enviroment, but really can't find a great deal. I have been speaking to verisign to get a certificate that can be used but when it comes to deploying that certificate my mind is hitting a brick wall. Also this application will be deployed via click once. Can anyone help or has already used WSE 3.0 certificate security in ...Show All

  • Visual Studio Express Editions how to retrieve data from a database and put it into a variable

    Hi all... I am trying to retrieve data from a database and put it into a variable. If the data in the databasetable looks as follows: Number Kredit 1 10000 2 99998 3 99996 4 99994 How do I retrieve the data "in red font", and put it into a variable Dim Variable as integer Private Sub Form1_Load Vaiable = (Last entry into collumn "Kredit") End sub Im sure this is fairly simple, but I just cant figure it out... so any help will be greatly appreciated.. I just started looking at sql-databases today, so if any of you have some links to good beginners guides, those would be appreciated too... Thanks... That Helped... Now I Just have t ...Show All

  • SQL Server How to handle multivalue field?

    Here is my scenerio: I tried to do a comprehensive catalog of my classical music collection, and my most basic unit of data is a track from a CD. As it happens, a track have a variable number of performers (e.g. a symphony may contains a conductor and an orchestra, a string quintet may contains five members, a piano trio contains three members, etc.), so I can't easily provide a field for performers. I have a table for performers and another for tracks (along with other things). Since I have a large number of tracks, it would be very undesirable to create an additional table relating every individual artist with a track (it would blow up the database size and is rather unnecessary). So my ideal solution is a multivalue field for perf ...Show All

©2008 Software Development Network