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

Software Development Network >> Allah Is Here's Q&A profile

Allah Is Here

Member List

wadnerk
Mark1916
Allan Giles
Guy Burstein
rrobs
sunil babar
AndrewLuiHK
ro88o
dron747
taclejj
TerryYoung
buckenn
Johnny Ashcan
HuberSepp
Pablo Alvarez Jalon
odefour
Anton__
daniel666
AlexBB
cocgis
Only Title

Allah Is Here's Q&A profile

  • Visual C# missing app.config in vs2005

    Hi, I'm wondering how can i open (or create) an appconfig in VS2005. As I remember, in VS2003 it was created with the project, but in VS 2005 it is not (or somehow it is hidden). How can I create/access it (Or there is a new way in VS2005 to manage some settings ) Thanks Oscarfh wrote: Ahh ok, and this settings file is a XMl document Yes, the file which is created, is app.config, Visual Studio will just let you edit your settings through a data grid. Any settings you add/change in this grid will be stored in app.config, and Visual Studio will create a special Settings class, which will let you access those settings through its properties (you get intellisense and all). Of course, yo ...Show All

  • Visual Studio NotLastChild.gif image missing in Prototype-presentation using September CTP

    Very small bug using September CTP. At the bottom of a page describing a class, there is an Inheritance Hierarcy-section. This section apparently uses an image called NotLastChild.gif which apparently isn't included in the compiled help-file. Michael Michael - Thanks for finding this. We will provide a fix for this when we drop a technical refresh this week for September CTP. Anand.. ...Show All

  • .NET Development DataSet Merging

    While merging a dataset ino another, i am getting the error datatype mismatch for the column <column name> ds1 have 5 columns ds2 have 3 columns, i want to merge both, before that i want to install values into the dataset ds2 guide me please The error msg already explained what happened. The columns with the same name in ds1 and ds2 have different data types. BTW, posting the code & detailed error msg is always helpful to the diagnosis. ...Show All

  • .NET Development WCF Installation Error

    [08/29/06,16:03:00] ========== Logging started ========== [08/29/06,16:03:00] ===================================== [08/29/06,16:03:00] No language specified in ini file default to OS language [08/29/06,16:03:01] Set lang to 1033 [08/29/06,16:03:01] Pending Reboot Table state : Logging start [08/29/06,16:03:01] _________________________________________ [08/29/06,16:03:01] (, ) c:\641d25ecce0074d39296aa2498 ( ---- ) ( Tue Aug 29 16:00:47 2006 ) Delete [08/29/06,16:03:01] Pending Reboot Table state : Logging end [08/29/06,16:03:01] _________________________________________ [08/29/06,16:03:01] Logging property values [08/29/06,16:03:01] PROPERTY ProductName Microsoft Indigo Beta 2 Runtime [08/29/06,16:03:02] PROPERTY c:\dd5a351bb9df65c ...Show All

  • Visual Studio Team System Need help to stop running a Build Type in Continuous Integration mode

    Hi, I havent been able to find anywhere on how to remove or stop Continous Integration on a Build Type. Can anyone point me to how to do this Thanks I'm not quite sure what you are asking. Do you mean that you want to be able to stop a running Team Build If that is the case, you can use "TFSBuild.exe stop" (with the appropriate parameters for the server and build) to stop it. If this is not the case, can you please elaborate further on your needs and I'm sure that we can be of assistance. - Steve ...Show All

  • Smart Device Development Performance System.DateTime.Now

    Hello The API function GetSystemTime(out st); (PInvoke) is about 1500 faster then System.DateTime.Now; System: WinCE50 on ARMV4I TestCode: using System; using System.Data; using System.Runtime.InteropServices; namespace DateTimePerformance { public struct SystemTime { public ushort wYear; public ushort wMonth; public ushort wDayOfWeek; public ushort wDay; public ushort wHour; public ushort wMinute; public ushort wSecond; public ushort wMilliseconds; } /// <summary> /// Summary description for Class1. /// </summary> class Class1 { [DllImport("coredll.dll")] public static extern void GetSystemTime(out SystemTime st); /// <summary> /// The main entry point for the a ...Show All

  • Visual C++ Link Step Always Generates Different .exe Checksum. Why? How to disable?

    I'm using Visual Studio 2005. I created a simple helloWorld console application. Each time I link, helloWorld.exe has a different checksum. Only 1-3 bytes typically differ. If I set my clock back, and I can time it so that my link step occurs on the same second as it did last time, then the checksum remains constant. I'm not using any __TIME__ or __DATE__ directives. It's important for my company's revision control system that binaries with no changes in the source code always are the same, so that only "true" changes get checked in. Does anybody know why this is happening, or how to make the binaries not depend on the time of the link step, so they'll be consistent In Visual Studio's help pages, ...Show All

  • Architecture Still unclear on how to use Typed Datasets in BLL...

    OK, I have decided to use typed datasets in my data access layer (DAL). So, my question is, do I really need to create a business logic layer (BLL) From what I have read, you can extend the dataset classes in the DAL using partial classes and place business logic there. Doesn't this combine the DAL and BLL into one component Or is there something I'm missing Do you create the BLL and start by referencing the DAL project and inheriting the classes from the DAL and extend the classes there I don't get where one ends and the other starts. OR, if it really makes a difference. ...or do I even know what I'm talking about... Background: VB 2005, Winform app, expertise level: intermediate+, small application audience, single develo ...Show All

  • Visual Studio Team System test driven programming problem

    Hi Folks I’m trying to switch from Nunit to visual studio 2005 native test tools, but ... My function to test opens an xml file as usually xmldoc.Load("file.xml") When i run the test, file not found exception is throwed, looking inside error object visual studio is looking for file.xml in TestResult directory not in bin/Debug, unfortunately copy file.xml to TestResult directory is not a valid choice because a new TestResult directory is created every time i run the test. Any help will be greatly appreciated Best regards Favio Yaniquez hi, if you configure deployment options for the testrunconfig, and set to copy that files (or folder) to the Tests folder you should be able to use load like you are using, b ...Show All

  • SQL Server Adding multiple fields together

    Okay hopefully this is quick and easy. I have 3 fields (Annual Salary, Medical, Pension) and I now need to working out Cost To Company which is just adding those three together. I tried to do that in a formula but it doesn't return me anything... This is what I had. =(Sum(Fields!AnnualSalary.Value, "CoreEmployeeData")+Sum(Fields!AnnualMedicalAid.Value, "CoreEmployeeData")+Sum(Fields!AnnualPension.Value, "CoreEmployeeData")) So it should add the 3 records While you are here :), Can you tell me how I can put a currency symbol in the front of these numbers and add the thousand comma delimiter the easiest way to get aorund this issue is split out your sum to individual columns, ...Show All

  • Visual Studio 2008 (Pre-release) WPF dialog owner

    I've got a custom dialog that I want to launch from a Page within a Window. I want to set the dialog's Owner property to the Window so they minimize together, etc. However, I can't seem to find a way to get the top-level window in the heirarchy from the page, short of manually iterating the Parents until I find what I want. Surely there's got to be an equivalent of the TopLevelControl property from WinForms controls. Am I up in the night I just found the Application.MainWindow property, which solves this particular problem quite well. Still, it seems like it would be advantageous to be able to get the top-level parent from a control, say for an MDI app for example, where there are multiple windows. ...Show All

  • Internet Explorer Development The infamous "click to activate and use this control" and "Press spacebar..." message

    Hi there I guess all of us have seen this message click to activate and use this control And all of us have also seen this message press spacebar or enter to activate and use this control Can someone tell me what the differences are, and how would you get different ones I'm not using any flash, but my code does have <OBJECT> tag for the old deprecated Microsoft's ADS activex objects. Some screens I have the second message on window load (so as soon as the window loads you'll see this popup), and some screens I have the first message (so I won't see this unless I hover the mouse over the object). I would like to know why I see the two messages despite the same object I use. (NOTE: I know HOW TO solve this problem, I just want to kno ...Show All

  • SQL Server Can't Create and Connect to a new Database (.mdf file)

    Unfortunately I was sent to this product by my Hosting Site since all I was trying to do was Create and Manage a User Login with authentication to my subsites in MS Frontpage. (rant: Why doesn't Frontpage support this technology ) Anyway, I have now spent (wasted ) 8 hours downloading, installing, and tyring to configure SQL Express along with MS Visual Web Developer Express for ASP.NET 2.0 ... For the life of me I can't find detailed configuration informatin and setup information to build a SIMPLE database to connect to the VW product. Folk: this HAS to be simpler to do than what you present in the product! This is way too difficult to deal with compare with frontpage. Is there a simple "how to" link someplace that is spe ...Show All

  • Windows Forms Only Number in column of DataGridView

    how to Insert only Number in Column of DataGridView in the textBox we write this code Private Sub txtTelNo_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtTelNo.KeyPress Dim C As Char = e.KeyChar If Not (Char.IsDigit(C) Or Char.IsControl(C)) Then e.Handled = True My.Computer.Audio.PlaySystemSound(System.Media.SystemSounds.Beep) End If End Sub How Write them in DataGridView plz Help me thanks you :: Ken Tucker :: ...Show All

  • Visual Studio Express Editions Help!! - Code doesn't update when I run debug

    OK - This is my second time asking. No one has answered my last post. Yesterday - I created a program. While I was working on the code I occasional would run the program. I would then see some errors in the way I wanted the code to work and then make changes to the code. All the sudden – when doing the same thing as above – when running the code through debug I noticed that the changes in the code where not taking effect. I then tested my theory and found that I could even create errors or remove large chunks of code and the program would still run as if I didn’t make these changes. Can anyone please explain Hi CFIG, How are you exiting your application after starting it in debug mode. ...Show All

©2008 Software Development Network