Software Development Network Logo
  • Visual Basic
  • SQL Server
  • Visual J#
  • Game Technologies
  • Windows Live
  • Architecture
  • Smart Device
  • Visual C++
  • Visual Studio
  • Windows Forms
  • .NET Development
  • VS Express Editions
  • Visual C#
  • Microsoft ISV
  • Visual FoxPro

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

BABU_NEO

Member List

Charlie Audritsh
satyap
MPMan
Jose Escrich
First Available
newxplanet
Michael_Law
Yhert
Dacota
Deming
awdon
adman666
BlakeC
Arun C
corradMSDN
Gary Foster
BetaStar
PMBT
jkj13
irtaza
Only Title

BABU_NEO's Q&A profile

  • Visual C# C# Insert Statment

    I am using an  insert statement to add a record to the database,but I have a problem with System.DateTime.Now it will not allow me to use this. I get an error saying sytnax in Insert Statement. Is there any special characters you have to use . I try the suff other people posted but that does not fix the problem. It sounds like your difficulty is with database interaction, not the C# language specifically. You should try the .NET Framework Data Access and Storage forum: http://forums.microsoft.com/msdn/ShowForum.aspx ForumID=45 -Tom Meschter Software Dev, Visual C# IDE ...Show All

  • Windows Live Developer Forums How to create a geo-fence

    The PolyLine feature is a great feature in V3. I can now create a polygon for my geo-fence. However, I don't know how to figure out whether a new LatLong is within my previously defined polygon. Can somebody help Thanks. I haven't had the need to do it myself yet, but the only ways I could think to do it would be by some sort of mathematical calculation, or make use of some other sort of software which does. MAYBE you can see if VML, which is what VE uses to draw the polylines can be utilized, but I don't know how if that even is possible. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Transparent textures cause background objects not to be rendered

    How can I get this fixed Please take a look at my screenshot . My first idea is to turn off z-buffering and sort the meshes by hand. However I would like to avoid this. Isn't it simply possible to set a render state (which can be used when rendering transparent textures) that will switch the eliminating of background polygons off Thanks in advance, SecurityException Ok, thank you for that information. I guess I will stay with alpha testing then. ...Show All

  • .NET Development .NET Framework - hotfix. Can I discard the original Framework?

    I don't know where else to post this, but I just received an automated update hotfix for my .Net Framework that is 1,114 megs...this is in addition to the original .Net Framework that is also 1,114 megs. That's taking up too much of my disk space. I'd like to remove one of them if I can, but I don't know anything about the pros and the cons. Can I just remove the original and use the hotfix in it's place Thanks, Paul The update was pushed to you via Windows Update because it was rated as an Important security update.  In general you don't want to disable accepting updates since it will leave your system vulnerable to attacks ...Show All

  • Windows Forms Multiple monitors and the main screen

    I am using a dual monitor setup and when the whole application is on one screen or the other, I can see it.  However, when the application screen spans both monitors it's all black.  Does this game not "play" well with other monitors Thanks. Also, if you look at the userconfig.xml found in My Documents\Terrarium, you notice a&nb ...Show All

  • Visual C++ Splitting integers using Modulus and division

    I am new to C++.NET. I am also taking refresher courses in math, so if the solution to this seems obvious, i am sorry. The project in my book: Console Program. Take any 5 digit integer (for the  this example, 45339), split the characters and output them with a space between. 45339 out puts to: 4 5 3 3 9 I know data types, how to get the input and the like, but it wants me to use the modulus and division operators to "pick off" each digit and display it with spaces between each character. I know how to concac and get the spaces, but the math using the mod and div escapes me. I know i am over thinking this but I am burnt out. This is a ...Show All

  • Visual C++ Problem Compiling under windows 64

    When I was trying to compile my program under win64, I got the following errors: ServerViewDlg.obj : error LNK2019: unresolved external symbol __imp_gethostname referenced in function "protected: virtual int __cdecl CServerViewDlg::OnInitDialog(void)" ( OnInitDialog@CServerViewDlg@@MEAAHXZ) ServerViewDlg.obj : error LNK2019: unresolved external symbol __imp_WSAStartup referenced in function "protected: virtual int __cdecl CServerViewDlg::OnInitDialog(void)" ( OnInitDialog@CServerViewDlg@@MEAAHXZ) The program compiled fine under win32. I tried to add ws2.lib in the path but that doesn't seem to fix the problem ...Show All

  • Visual Studio Missing Icons and Bad Links in MSDN

    Hello. I'm having trouble with my installation of MSDN. Some of the little icons that should appear next to some of the links don't show up, and many of the links don't work. When the links don't work, I get a JScript error "Object does not support this property or method." If I attempt to debug it, it's always a simple, one-line, code block, such as; alink_301.Click() This is an example of what the missing icons look like. The little box, next to Look here, should be an icon; Send feedback to MSDN. Look here for MSDN Online resources . But other icons Do show up, as in this case; Platform SDK: Perf ...Show All

  • .NET Development Help on using the Configuration Application Block

    I am using the Configuration Application block in a WinForm application to save some configuration information in a config file (EditorSettings.config). I use the ConfigurationManager.WriteConfiguration command to save the info. Saving the configuration information works fine, and I can even read the data back by using ConfigurationManager.GetConfiguration. After I close the application, I can locate the config file in the directory and verify that it has been updated appropriately. The problem occurs whenever I restart the application. Everytime I restart the application, and before any of my code runs, the config file ...Show All

  • Visual Studio Team System TestContext.RequestedPage property

    How can I return a specific page through the TextContext.RequestedPage property Whenever I use the [UrlToTest()] attribute and include a specific page, the property returns null. Is there another way to specify which page to return through this property Any help at all would be incredibly appreciated! Hello, Did you specify all of the attributes, required for ASP.NET Unit tests E.g. those are needed for testing Web Development Server (Cassini): [TestMethod()] [HostType("ASP.NET")] [AspNetDevelopmentServerHost("%PathToWebRoot%\\WebSite12", "/WebSite12")] [UrlToTest(& ...Show All

  • Windows Forms Config File in VS.NET?

    I created a simple windows forms application.  In a web app you have the web.config and VS.NET has a web.config in its list of files to create. I have read that a windows forms app has a app.config or a app.exe.config   Why is there no option to create one in vs.net 2002  thanks! When you followed the steps I outlined above ...Show All

  • .NET Development Another Reflection Question

    Hi, I am working on using Reflection for a plug-in application, using dlls, the app will be done in C+.NET. I have been able to see the meta-data in the dlls, and that is about it. How can I take a class that is in the dll and create an imstance of it Is there a method within the Reflection class, MethodInfo, that I can use to do that Thanks in Advance Hoop Hi, I finnally got it. Took a cast, BaseModuleClass *plugin = dynamic_cast<BaseModuleClass *>(instance); pulgin->buildModule(); Not sure if that is the best way but the dll did start running. Thanks For the direction Hoop ...Show All

  • Visual Studio Using Datsets from SQL 2000 to populate Crystal Reports Reports

      Hi, I have installed Visual Studio (Pro) under Windows 2003 on our server. I have successfully set up a connection to a database on another server, and can populate the Data Sources with the tables and views from the database. This seems to work well, I can preview the data, set up new queries etc. However I cannot drag and drop the resulting data fields into the report form. It would appear that this is a trivial problem, perhaps something wrong with the settings etc, but I also noticed that the section headings in the report form are hashed out and difficult to see. Any ideas Many thanks Conor   ...Show All

  • .NET Development Automation Error Raised by VB6 App on a .NET component ever since installing .NET 2.0 Framework

    I noticed that a VB 6 app is no longer able to properly call a .NET component exposed with a COM interface that was compile via Visual Studio 2005, it raises an Automation error . Setting the application configuration file to point to the .NET framework v2.0.50727 does not help the situation. However, when the .NET component is compiled via Visual Studio 2003 it works provided I have the infamous application configuration for the VB6 app set to: < xml version ="1.0" >  <configuration>     <startup>          <requiredRuntime version="v1.1 ...Show All

  • .NET Development How to count and retrieve the number instances of current process

    Hi, My requirement is to count and retrieve the number of instances of current proces. I am opening Internet explorer with 5 instances. I want to retrieve the url address of each instance in vb.net. Is it possible Regards, Helan you may use the System.Diagnostics namespace and use the Process.GetProcessesByName giving it the instance name, which returns a collection of processes with the given name   so internet explorer is usually known as iexplorer   you can then count the number of instances of a particular application returns by using the .Length property on the number of instances return ...Show All

©2008 Software Development Network