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

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

ImGivingUp

Member List

Onats
Barry Kwok
MongoBongo
Anthony Carabbio
Syed Atheeque Pasha
kgaudana123
enric vives
Stéphane Beauchemin
B_Walton
Dani50
kalprin
icomeinpieces
Corey Furman
shg_yl
Sajitha Jose
jzfredricks
dmkp231
N_John
ImagineNation
Mathias Raacke
Only Title

ImGivingUp's Q&A profile

  • .NET Development .NET Exception handling - a step backwards from VB6?

    I don't know if I just don't understand .NET's error handling or what, but it's pretty clear that there's no such thing as resume, or resume next. Finally is worthless for this because unless you know the exact line that the error occurred in in the Try, how are you going to know where to resume in the Finally. It seems that no matter what exception occurs in .NET, there really is no such thing as "Handling" it. If Sub A() calls Sub B() and an error occurs in Sub B(), then your code will leave Sub B() with the remaining lines unexecuted and return to Sub A(). What is Sub A() supposed to do, other than continue on as though Sub B() was never called. If Sub B() rethrows the exeception to Sub A(), well, then Sub A() is in the same dilemm ...Show All

  • Connected Services Framework Profile Integrator failure on subscription through ProfileSubscriber tool

    Hi, I was trying to set up subscription of ProfileIntegrator through Profile-Subscriber tool. The command ran successfully, and returned a subscription ID. However in event-log I could see Profile-Integrator getting failed. Following is the profile-subscriber tool command used: C:\Program Files\Microsoft CSF\V3.0\Connectors\Profile Integrator\bin>profilesub scriber -subscribe csfdomain\csfuser1 Csfuser@123 http://blrkec21593d/ProfileMa nager30/ProfileManager.ashx http://blrkec21593d/ProfileIntegrator30/profilein tegrator.ashx Subscription: Identifier = 7f58c937-d667-4d0f-bddf-d4a099a95521, SubscriptionMan ager = http://BLRKEC21593D/ProfileManager30/ProfileManager.ashx M ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. EffecMaterialContent behavior in a custom model processor

    Hi, I'm writting a custom model processor and I have some questions about it, if anyone can help me I should be grateful.  I'm using MeshBuilder to build my mesh, geometry, texture channels, normals... and this works perfectly. I'm putting my textures with 'EffectMaterialContent myMaterial = new EffectMaterialContent(); myMaterial.Textures.Add(keyname, new ExternalReference<TextureContent>("mytexture"))' method. a) I build my asset model in my game project and the texture is named "mytexture~0" and I don't understand why appear that sufix "~0"  if I don't have other texture with this name in my project. b) I would like to know if I must load my model’s texture with 'myCo ...Show All

  • Windows Forms Order of event

    What is the order of event after the valuechanged in a combo box or datetime picker in the valuechanged event , i wanted to check if the input in valid or not if not, i will assign the value to the default but it happens in this valuechange and it will have infinite looping. regards Alu You should not rely on the order of events unless the events are specified as occurring in a specific order (such as BeginSomething, EndSomething). The ordering of events is an implementation detail. As far as defaulting invalid values you can handle that in the ValueChanged event handler. You should not get in an infinite loop provided that the new value is valid. Take this sample code: ValueChanged handler (E1) { if not valid Value ...Show All

  • Windows Forms SQL injection in windows application?

    Hi everyone, I got the error with the database whenever I used the mark ( ' ) for example: I ' m, don ' t... Does anyone have any solution for this problem Thanks a lot! ...Show All

  • Smart Device Development is there any API to know the windows based mobile name?

    hi, i'm doing a small propject on i-mate sp5 windows based mobile phone. I tried very hard to obtain the device name "i-mate sp5" through some apis but everything in vain. i need an API or a method that tell me the device's name.Could anyone help me out in this regard i would greatly appreciate your help thanking you http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1021230&SiteID=1 ...Show All

  • SQL Server Wierd error while connecting to SQL 2000 in ASP.NET under VS2005

    Hi, When I try to run the asp.net application (C#) it is throwing the following exception. "An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)" The problem is I don't have SQL Server 2005 installed in my system. And I am trying to connect a remote SQL 2000 server. Adding to my confusion, the same code is working fine in another system. Help please I have the same problem, I reinstall sql server 2005 too and nothing. AnyOne ...Show All

  • Visual Studio Tools for Office Customizing Outlook 2007 Ribbon -- idMso values for built in tabs

    Where can I get a list of the idMso values for built in tabs in Outlook 2007 I tried "TabMessage" and got an error message. Sanjay Sanjay, Here are some useful links for Ribbon Customization in OL2007... Office: http://msdn2.microsoft.com/en-us/library/ms406046.aspx http://msdn2.microsoft.com/en-us/library/ms406047.aspx Outlook: http://msdn2.microsoft.com/en-us/library/ms788199.aspx You can get all the control ID's from here: http://www.microsoft.com/downloads/details.aspx familyid=4329d9e9-4d11-46a5-898d-23e4f331e9ae&displaylang=en Specifically for messages, there is TabReadMessage (for when you double click an email to read), and TabNewMailMessage (for when composing a ...Show All

  • .NET Development Socket close problem

    im having problems disconnecting clients from my server, when a client dissconnects I call Socket.Close(); witch I though would close off the connection for this connected socket. the problem is in my read code a Exception is thrown each time a client is disconnected saying you can not access a disposed member of System.Net.Socket here is the code that removes the clients on the server public void dc_user(User sender) { string name = sender.Name; if (sender.is_connected) sender.RemoveClient(); if (client_hash.Contains(name)) { client_hash.Remove(name); } } the RemoveClient void is simple public void RemoveClient() { client.Close(); } any help would be great thanks ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Gamercards and player information

    To the MSFT dudes, Is there any news on whether or not gamecards will be readable in future versions I'm creating a multiplayer game (with both hotseat and concurrent play) and would like to be able to show gamer pictures and names and such (similar to how Uno does it). A simple GamerIdentity class and GetIdentity( PlayerIndex ) would be cool! I think that would be a lot better than aways saying 'Player 1' or 'Player 2' :) I don't mean Live, I just mean the current player profile. You can have offline player profiles that aren't associated with Live accounts. ...Show All

  • Smart Device Development Error while deploying to device

    Hi, I am getting the following error while I am trying to deploying my application. what may be the solution for this. "Unable to start Program '%CSIDL_PROGRAM_FILES%\TestApp\TestApp.exe'. Unable to load the CLR. the target device doesn't have a compatible version of the CLR installed for the application you are attempting to debug. Verify That your device supports the appropriate CLR version and has that CLR installed. some devices do not support automatic CLR upgrade." hope you can help me. Thanks in advance Hi Ilya Tumanov Thank You very much for you response. As you installed I have installed VS2 Sp1. But the same error ...Show All

  • Windows Forms Multiple Instances of AxWebBrowser

    Hi, I have a csharp application, running multiple instances of AxWebBrowser at the same time. Each web browser requires the same cookie, set using InternetSetCookie. I used InternetSetCookie before I start navigating in each control. If one AxWebBrowser control is navigating, another control is not able to recognise the cookie. If I waited until the first control is complete navigating, then start navigating the second control, then it is able to recognise the cookie. Is this a known feature of the control Is there any way to get around it Thanks and Best Regards Thanks for your reply. That means I have to queue the navigations It will take too long, because I can have many instances of web br ...Show All

  • .NET Development remote debugging problem

    I'm having some difficulties debugging a web service from a local winform app to a remote development server. I have the remote debugging monitor program running on the remote machine, and it is picking up the attempts to connect in the log. So I know that the code is calling the remote machine and connecting to the web service, it just won't allow me to debug the service. I read up on some of this, and I've seen that they suggest putting the App_code directory in the same directory with the web service. Whenever I copy the App_code folder over to the web service directory, I get an error stating that it is expecting "text/html" instead of "text/xml". The service is a database service that adds an error record int ...Show All

  • Smart Device Development Visual Studio 05 Std/Professional

    Good afternoon, Is there any difference using 05 standard vs 05 professional for developing for smart devices Thanks again! ...Show All

  • SQL Server Can't get SS Express SP2 to install on Vista build 5744

    Having had no luck getting prior versions of Sql Server Express to install on Vista RC2. I was hoping that SP2 would install with no problems however I'm still getting the same error as before and can't find any working solution to this anywhere on the web. The actual error I'm getting occurs when the install tries to start the SQL Server service and connect. I get TITLE: Microsoft SQL Server 2005 Setup ------------------------------ SQL Server Setup could not connect to the database service for server configuration. The error was: [Microsoft][SQL Native Client]Shared Memory Provider: No process is on the other end of the pipe. Refer to server error logs and setup logs for more information. For details on how to view setup logs, s ...Show All

©2008 Software Development Network