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

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

ImGivingUp

Member List

SCRunner
bk13
YaacovG
ECHS BACHS
RajLakamana
cb1024
nyforever
Eric-NZ
ivl
Thomas Ivarsson
maglor_elf
Jamie Thomson
Glynne
AlexBB
Hosam Kamel
slimjen1
James_Steven
itsryan
Bubbla
COREY H
Only Title

ImGivingUp's Q&A profile

  • SQL Server Cannot see the SQL Express Instance on the Network Server list...

    I have installed SQL Server Express and I can connect with it locally using "localcomputername\SQLEXPRESS". It is configured for remote connection and for some reason, when I browse for this instance on the Network Server, it does not appear in the list. I have unistalled/installed it several times and still I cannot see this instance on the SQL Network server list. Can anyone help troble shoot this frustrating issue... Thanks! SAM ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Trouble Distributing Code

    I have a little trouble when I try to distribute a game; I send it to my Graphic Designer with all necessary file (also Microsoft.XNAFramework and Microsoft.XNAFramework.Game dll). But when he tries to start the game he receives this error message: EventType : clr20r3 P1 : xnatanda.exe P2 : 1.0.0.0 P3 : 44f7491a P4 : microsoft.xna.framework.game P5 : 1.0.0.0 P6 : 44ef267e P7 : 12d P8 : 9 P9 : system.io.filenotfoundexception He has installed in this order DirectX9c and .NET Framework 2.0. There is someone who can help me Thanks I'm afraid your graphics designer will have to go through the same setup processes as you have to get the project running (this won't always be the case in the f ...Show All

  • Visual J# Convert Java code with generics

    I have a Java project that I would like to convert to C#. However, it uses generics extensively, and the JLCA 3.0 is choking on them. Is there any tool to automagically convert this code Is there a new version of JLCA coming out to support this scenario I've converted some of it by hand, and once you get past the syntax differences, the C# generics work fine. Hi JLCA 3.0 does not support generic programming conversion.The supported features of JLCA 3.0 can be found here . As of now we dont have any plans to support generic programming.The manual conversion will be helpful. Thanks, Natarajan. ...Show All

  • Visual C++ Getting App Version

    First a non relative question: Is this board for CLI How can I get application version at runtime (or compile time) I want to show the version (which is set in assembly attribute) in about Window. I tried this Policy::ApplicationSecurityInfo ^asi = gcnew Policy::ApplicationSecurityInfo(AppDomain::CurrentDomain->ActivationContext); versionLabel->Text += asi->ApplicationId->Version ; That makes the program crashing. An unhandled exception of type 'System.ArgumentNullException' occurred in mscorlib.dll Additional information: Value cannot be null. So what should I do Thanks. Use the debugger to find out what exactly is null. Then try to deduce why it is null. If this doesn't work ...Show All

  • Visual Studio Express Editions weird exception

    THe below codes create an Access violation exception which I could not fix ptmp = a; sortedlist=a; //process of joining both lists, into a single list begining at a while (ptmp->next!=NULL) { ptmp=ptmp->next; } ptmp->next=b; Would you please help me Thanks There is full list of node whose head is a. p =a; then we pass through the each nodes to reach the last part and then we can merge/stick the second list of nodes to the " p ". ...Show All

  • Visual Studio HoL Registration failed

    Hi there, Since the beginning of the week I'm exploring for the first time the concept of Guidance Packages. While searching for a quickstart a ran into the Hands on Lab solution to get me started. I ran into a few problems that already are solved (some of them appeared in this forum) but now I'm completely blocked. The registration of the HoL failes, althow I've already installed the WCF guidance package. The error that's been reported in the VS output says following :(Note : all the assemblies are in the PublicAssemblies IDE) An exception occurred during the Install phase. System.TypeLoadException: Microsoft.Practices.RecipeFramework.VisualStudio.RecipeFrameworkInstaller, Microsoft.Practices.RecipeFramework.VisualStudio at ...Show All

  • Visual Basic Array Help!!!!

    Hi, This may be a very basic problem but im haveing real trouble with it and its driving me crazy!!!!!!! I have created a class called Class1 I can create a new object by calling Dim test2 As New Class1 I can change its attrributes by test2.summary = True test2.is_stage = False etc..... Now what I want to do is store this class in an array. I have tried the folowing code but it doesnt seem to work Dim proj_tasks(10000) As Class1 proj_tasks(counter) = test2 This keeps erroring and I dont know why! Can somebody help me out! Also if your feeling very generous could you please adivise me on how I could make this a dynamic array rather than having to set the array to a huge size in the first place ...Show All

  • Visual Studio How to use ReportEmbeddedResource in ReportViewer WebForm control?

    In winform application, it's easy to set rdlc built as embedded resource. But how can I do that in a web application I tried to reference a class library project with rdlc embedded as resource, but the ReportViewer WebForm control cann't find the rdlc resource. The viewer will try to load the resource from the same assembly that sets the ReportEmbeddedResource property. This means that if you have the RDLC file in a class library, code from within that library needs to set the property. This can be difficult in a traditional ASP.Net application where the reportviewer is added to the page in an aspx file rather than instantiated in a code behind file. You have two options: 1. Pass a reference to the R ...Show All

  • Windows Forms Detecting the Letter Clicked

    Hello, I'm creating an interactive program, and I render labels one after another down the control. When the user clicks on a word in the label, I want to write an algorithm to detect which word was clicked. Has anybody done something like this I have an idea how to do it, but am not quite sure. Thanks. Hey, Thanks, that was what I was thinking; though I was going to go one letter at a time, using sizing to determine whether we selected the targeted letter; label is on one line, though sometimes is multi-lined, so I figured when I size the entire line, I will have to perform a math calculation to count the number of rows. I use the same font as the form, so that will be good... Thanks. ...Show All

  • Visual Studio Express Editions Command Line in C++

    Hi, Guyz, I have encountered a problem, i have installed VS C++ 2005 Express Edition on my computer and have realised that there is not 'devenv.exe' that would go with it or with the PSDK that i have downloaded too. if anyone knows or had similar issues on how to call / build / compile etc projects in VS C++ 2005, please post the commands that are used, or links that would tell me how. It seems to be a simple thinkg, but i just cannot get the answer, i was looking for so long on the web. Any help would be appreciated. Many thanks, in advance, Dmitry Thanks for your help a lot Ayman .... i was actually trying to build the project now...with VCBUILD and it gives me errrors saying that it ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. GameServices

    Hi, could someone please explain simply how to turn a GameComponent that I've written into a GameService that can be accessed by any GameComponent. i.e. What class needs to implement IMyGameService What should it expose How do I go about registering my service with the Game. A link to a thread/article or a new explanation that explains this would be great. I've seen a few half-explanations around, but nothing full. Still, a concise but thorough summary would be the best. Thanks a lot... I'll give you an example from my engine for creating a camera service since the linked example leaves a couple of important things out. One method for adding a camera to components that use one  would be to m ...Show All

  • .NET Development .Net 3.0 installation

    Hi,   I have VisualStudio .Net 2005 with Framework 2.0 installed in my system. My requirement is to install .Net 3.0 to work on WPF . I downloaded dotnetfxsetup.exe from MS site [ redistributable package - 2.8 MB ] . While installing it tries to refer internet for another download. I donot have internet connection so I need to download entire stuff from another m/c and move to my system to install. How to get the downloads. Please provide me the link. Thanks & Regards   Vijay I did the following Step 1: [ downloaded and installed ] http://go.microsoft.com/fwlink/ LinkId=70848 Step 2: http://www.microsoft.com/downloads/details.aspx FamilyId=5A0AE4CD-DC7 ...Show All

  • Visual Studio VSS2005 mishandling binary files

    I have seen several posts regarding the corruption of pdf files in VSS2005, as described in http://support.microsoft.com/kb/925234. This appears to be an issue for us on version 8.0.50727.42. I have plans of requesting the hotfix described from our MS support rep. We installed VSS standalone, outside the Visual Studio 2005 system, so the service pack recommended in the article will not install. I have added *.pdf to our binary file mask in our srcsafe.ini files for all of our databases (Binary_Masks = *.doc;*.dll;*.exe;*.ocx;*.pdf). The files are all identified and treated properly except the pdf files. When a pdf is added to the database, it is identified as binary and not corrupted. However the problem occurs on any subsequent ch ...Show All

  • Visual Basic Iconified app and problems with logging off

    Hi, I created a small app which resides in the notification area and works well. Only when a user want to logg off, he is prohibited by this app. When i terminate it via task manager loggin off works well. My code for placing it in the notification area and hiding the form: Public TrayIcon As Icon = GetEmbeddedIcon( "MyApp.nice.ico" ) 'Function to retreive embedded icon Function GetEmbeddedIcon( ByVal strName As String ) As Icon Return New Icon(System.Reflection.Assembly.GetExecutingAssembly.GetManifestResourceStream(strName)) End Function 'Initial setup for the tray icon Private Sub Initializenotifyicon() 'Initial setup for the tray icon Private Sub Initializenotifyicon() NotifyIcon = New System.W ...Show All

  • Visual C# Sleep or timer for very small interval?

    I am working on some laser show software that draws points very rapidly for laser graphics. I need to draw points up to 30000 points/second and at event intervals. So, I need to call my MovePoint(x,y) function at intervals as small as 0.00003 seconds or 0.03 milliseconds. Obviously, the standard Sleep and Timer functions won't do me any good. So, what alternatives do I have One thing I have thought of doing is to call an unmanaged C function that exectutes assembly language NOPs. But is there a better way Would QueryPerfomanceCounter do anything for me I know it can give me preciese time measurement but I don't know how I could use it to pause or trigger an event. Any help would really be appreciated. ...Show All

©2008 Software Development Network