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

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

weaasd

Member List

dagjo
Seas Comander
XNA Rockstar
Pojev
Valst
PareshGheewala
zhihao
Ray Dyce
Boldie
Pooja Katiyar
Zaid Papa
Mohsen Kokabi
sea2006
Teos
satya31237
KevinJK
CostasZ
deen
Philippe Cand
Cla82
Only Title

weaasd's Q&A profile

  • Architecture Application design challenge

    Hi.. This is my first post on here, so I hope I hit the sweet spot by posting it here. I've been given an interesting challenge and I can't seem to come up with a grand solution, so I could do with some help. The idea is that I am to design an application for a language center. So far the center consists of two physical locations, out of which one would be considered both learning center as well as "HQ". What they want is a fairly simple application that enables them to enter student registration, classes (no planning involved) and payments made/due. Each location has their own administration; HQ is to be able to look into the data of every location. I came up with several approaches (in terms of which language to develo ...Show All

  • Visual C++ How do I activate the console and the GUI at the same time?

    Hello comunity. How can I show the console and the GUI (Forms) at the same time .. it's for debug propouses.. Thanks. You can build a CLR console application which spawns the windows you want. In your project properties under Linker, set the SubSystem to Console. Then the console app can instantiate your forms. ...Show All

  • Windows Forms UInt32 and Int32 - Why are Data Types of columns different?

    For some reason VC++ .2005 Express NET seems to declare two different datatypes for the related columns of two database tables, despite them having the same type in the database. This makes creation a datarelations in the dataset impossible because an error is generated saying that parent and child types are different. I have a dataset holding two columns from a database. One is a main table, the other a lookup table. The key of the lookup table and the foreign key in the main table are the same type - always. I tried this with the both keys defined in the database as INTEGER Unsigned. After Fill and FillSchema was called, the foreign key in the dataset had type UInt32, but the lookup table key type was Int32. I went back and changed the t ...Show All

  • Visual Basic My Namespace

    I have 3 projects in my solution and in one of the projects called Library there is a module Utilities in which i have given following line at top Namespace My.MyApp (I have intentionally done this instead of adding it to My.Application to keep it seperate from built in stuff) Within the library project, i'm able to access My.MyApp.MyFunction1() My.MyApp.MyFunction2() etc. But in the other project it is not showing MyApp in My Namespace. Can anybody help in this. i'm able to use imports statement and call those libraries and all the declared classes are public.. but when i try to access same through My namespace then it is not showing up in intellisense... ...Show All

  • SQL Server SQL Server is unable to connect

    Hi there, There is a SQL instance (sql2005) and I am trying to add a new distribution. Replication wazard says: SQL Server is unable to connect to server 'SERVER1'. (New Publication Wizard) SQL Server is unable to connect to server 'SERVER1'. (New Publication Wizard) SQL Server replication requires the actual server name to make a connection to the server. Connections through a server alias, IP address, or any other alternate name are not supported. Specify the actual server name, 'SERVER1'. (Replication.Utilities) There is the only local instance of the server on local computer and 'SERVER1' is actual name. What is wrong Thank yuu I'm having this same issue... Computer name: myComp ...Show All

  • Visual C++ executing a program

    How can I execute a program with Visual C++ Hi Fighter92, Did i get ur problem correctly and give u the right solution If not , could u post the question bit elaborated once again Thanx, Ch.T.Gopi Kumar. ...Show All

  • Windows Forms Cant access public methods of a C# applet through javascript

    I have created a winforms control that i want to embed into a HTML page to add extra functionality. That is working well and IE can display the control and works as expected. However i cannot access any public methods defined in the C# control. Lets say the winform control has a textbox called txtName. There is a public method that retrieves the text value public string GetName() { return txtName.Text; } In the HTML markup this is the object tag. <object id="control1" classid="control.dll#control.control1" VIEWASTEXT></object> I then have a javascript command like the following: alert(control1.GetName); this always returns UNDEFINED even when there is text entered text box I am very lost here and wou ...Show All

  • Visual Studio Express Editions Another Newbe How to question

    What configuration or code would I use to insert for 2 radio buttons. In other words, I have a label that ask the user to choose only one radio button(or person) amoung two radio buttons (the other person). When the user selects one radio button, this button or person becomes the main focus of the program. However when the user chooses the other button or person then that person or button becomes the main focus of the program. Is it possible to set a code for this Any help please and thankyou You can add radio-buttons both at run-time and at design-time, you must sit their Text property then get their value by Checked property. Is this helps you ...Show All

  • Windows Forms communicating between objects

    Lets say I had a windows form Form1. Now, later at some point I created an object of the form Form1 ^myObj. How would I send lets say a string that this new obj gathers to some control on the form itself How do I communicate between the two I used Invoke but still no good. Here's what I added - delegate void MyTextSafe(String^ str); private : void MyTextSafeMethod(String ^str) { if ( this ->outputTextBox->InvokeRequired) { MyTextSafe ^theDelegate = gcnew MyTextSafe( this , &Perfmain::MyTextSafeMethod); this ->Invoke(theDelegate, str); } else { this ->outputTextBox->AppendText(str); } } Nobugz: You mentioned something abo ...Show All

  • SQL Server MDX Query returning top levels of dimension hierarchy

    Hi, I use AS2000 which contains the cubes and dimensions. I issue a MDX query using ADOMD and then bind the results to and Asp.Net data grid. When i run the MDX query in the query editor it displays correct results. but when i execute the MDX query in the program it also return the top levels of the dimension hierarchy. I only want a subset (lower level in the hierarchy) to be returned. Here are the details: In our cube we have dimension Region_Country_RU. The hierarchy is as follows. Region(top),Country(Middle), and Reporting Unit(Lowest). The user wants to see Country info by selecting countries as DK,GB,US. This is the query to execute. In MDX query analyzer it gives proper output. SELECT NON EMPTY {{[Meas ...Show All

  • Visual Studio ProjectNode.BuildLogger

    I created a basic Logger: class XgenLogger : Logger { public override void Initialize( IEventSource eventSource) { eventSource.BuildFinished += new BuildFinishedEventHandler (Xgen_BuildFinished); eventSource.ProjectFinished += new ProjectFinishedEventHandler (Xgen_ProjectFinishedBuilding); } private void Xgen_BuildFinished( object sender, BuildFinishedEventArgs buildEvent) { MessageBox .Show(buildEvent.Message); } private void Xgen_ProjectFinishedBuilding( object sender, ProjectFinishedEventArgs buildEvent) { MessageBox .Show(buildEvent.Message); } } In my ProjectNode class I am trying to set the BuildLogger property to a new instance of my logger class: ...Show All

  • .NET Development Converting Wordml to Pure XML

    Hey, I am currently working on a WordML document with just a 3 x 3 Table and all I want to do is convert the WordML into a Pure XML. I tried to write an XSL for the WordML but its an Ocean... Can anyone help me with this. Thanks, Vidya. This stylesheet should give you a starting point: <xsl:stylesheet xmlns:xsl=" http://www.w3.org/1999/XSL/Transform " xmlns:wordml=" http://schemas.microsoft.com/office/word/2003/wordml " exclude-result-prefixes="wordml" version="1.0"> <xsl:output method="xml" indent="yes"/> <xsl:param name="table-element-name" select="'table'"/> <xsl:param name=&q ...Show All

  • Visual C# Sound question

    One last question: Unlike many other people who like to know about adding a sound file (.wav, .mp3), I would like to know how to get my program to just make that *lovely* beep sound that I was all to found of in QBASIC. I would like to know how to get just a simple beep when the user clicks a wrong button. Since I am so old school and out of touch with C#, I can only provide an example of it in QBASIC CLS BEEP END Any simple way of doing this in C# lol QBASIC -> C# in .NET 2.0 there is a soundplayer class which you can play sounds, including system default ones but would play on the computer speakers than the computer itself. Would this be suitable System.Media.SystemSounds.Beep.Play(); to get it to play the beep ...Show All

  • Internet Explorer Development Web Browser inside a tabbed page flickers on resize

    Hi, Can any one offer a solution to the resizing flicker problem when using a tabbed page and web browser control I have used double buffering to no effect and need a quick solution to this problem as the work is already live in a production environment and need to fix it without having to implement new controls. Please help. Thanks. Hi SGI101, Can you provide details of how you are hosting the webbrowser control What framework etc. I'm unable to reproduce this by simply placing a weboc on a VB form. Thanks -Dave ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DXT compressed Textures

    Hi, in general it looks like there are the same DXT texture compression formats as for DX9. I assume those compression formats do not work with the new DXGI_FORMAT_R9G9B9E5_SHAREDEXP & DXGI_FORMAT_R11G11B10_FLOAT formats In real-life (TM) I always have to store texture data in DXT compressed formats ... if I want to opt for a better color quality in compressed formats, nothing seems to have changed between DX9 and DX10 ... is that correct Thanks in advance, - Wolf Thanks for the reply! Interesting. I understand most of your response, but am not quite sure what you mean by "gamma correction == gamma 1.0" and I don't want to be "pretty lost". :) Could you elabor ...Show All

©2008 Software Development Network