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

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

Aamer

Member List

Craig7440
Fahad Hussain
Viral Shah
StephenR
HPEvju
Magnus Lovsten
Marvin Hassan
Vladimir Klisic
houseofmusic
Arun.kumar.sharma
Justin Cao
Dimitris DOukas
TSCEWA
Sydney Maxwell
Curtin
FXM
david salomon
slight
JustLearninC#
John H.
Only Title

Aamer's Q&A profile

  • Windows Forms Icons for ContextMenu used in NotifyIcon

    Anyone have a snippet for this Or is it possible using VB.Net 2003 TIA ...Show All

  • Visual Studio 2008 (Pre-release) DLink -- Object DAC

    Hi, I am a system architect for fujitsu australia and we have developped something very close to DLINK in a SQL object DAC. I can't discuss the details of our implemetnation online but I would like to suggest a few things. 1- Being able to automatically map an entity to a table while still being able to exclude a few of the fields from being stored... (they may be calculated or even be UI centric) 2- Being able to have an ID inner class that would be stored flat in the database. That allows for the ID class to implement the IComparable for sorting purposes. 3- We have also found that it is important (in hierarchies) to manage the numb ...Show All

  • Visual Studio ReportViewer is very sensitive to where I put

    The ReportViewer's body doesn't show up if I put the ReportViewer into an HtmlTableCell or TabStrip/Multipage from ComponentArt. I explicitly set the ReportViewer.ShowReportBody to be true. Has anyone experiencing this kind of problem Please help me out. Thanks in advance. You are probably running into a well known xhtml issue. See www.gotreportviewer.com , FAQ #14. We are working on some ways to make the control less sensitive to these types of things, but for now you will need to follow the workarounds. ...Show All

  • Visual Studio Team System Opening an Excel Document from Sharepoint Services - takes a long time

    Hi, I uploaded a 2.5 Mb document (excel) in my document library on the Sharepoint Services server, when a user tries to open it - it takes a very long time over 1 minute to open a document. If it's a small sized document say 500 kb, it's pretty fast.. Any suggestions... The database I am using right now is MSDE. Do you think moving to SQL Server may help. thanks. Nope it''s just a simple excel file with product sales info and with multiple sheets. The same excel file opens up very fast if I first save it to disk and the open it. ...Show All

  • Visual Studio Tools for Office Smart Tags in Outlook 2003

    Is there any way to (programmatically) extend the list of Smart Tags in Outlook 2003 I have an application where a kind of link to specific information will either be sent in mail messages to Outlook clients or directly stored in Calendar or ToDo entries in the users Outlook client. Think about http:// or ftp:// links. They will appear in blue and you can open them with a double click. My links are much similar but use another application. They look as follows: myapp://server/path/id e.g. myapp://castor/parts/0023456FAB345216 If I copy this link into a browsers window the application (myapp) starts and opens the docu ...Show All

  • Visual C# can someone convert this snipet of VB to c#?? Just Some Simple one (basics)

    Hi This shouldn`t be difficult .. but i dont know VB But what does this means... He declare a function named with "Afunction" and then in the body of that fucntion he says.. Afunction= ..... LoL , how does he do that or what does that mean in c# can a name of a function take some value Please tell it what does this means in c# hi, looool i don't know what do you talk about , i guess it will be better if you post the function here best regards ...Show All

  • Visual FoxPro ensuring data integrity using cursoradapters

    What is the best way 2 ensure that no partial updates occur when using cursoradapters on VFP8 Currently am issuing different TABLEUPDATES for all the cursors open. I am using an Access databases. Is there something like BEGIN TRANSACTION...END TRANSACTION when using CursorAdapaters Please give me the best approach to ensure data integrity and consistency. Thanks. thanks you all for your insights and ideas. I appreciate. Am going to test the idea of connection handles and see if it works. Am now using SQL Server 2000 instead of Access. I want to move to the next level! ...Show All

  • Visual Studio Express Editions Save info

    how can i make a program ask a question, save the answer somewhere and never ask the question again but remembers the info even when it is resarted and can refer to it. so like if i said my name is ben the first time i ran it every time it started up it said "hello ben" or what ever i'd put. The qualities of answers, cannot exceed the clearity of questions asked. A program can't really ask a question. It can present a striing that a human will intrpret as a question. Save the answer Where The appropropriateness of the selection of "where" depends on know a know lot more about the kinds of questions and the ...Show All

  • Visual Studio Express Editions how to add new line in messagebox

    in vb.net, " &vbnewline& " is used to add a new line in the messagebox.show(); e.g. messagebox.show("this is first line" & vbnewline & "this is second line"); how to do it in c#.net plz help In C# (like most C derived languages), escape characters are used to denote special characters such as return and tab, and + is used in place of & for string concatenation. To make your code work under C# you’ve got two options... the first is to simply replace the vbNewLine with the return escape character \n ala: MessageBox.Show("this is first line" + "\n" + "this is second line" ...Show All

  • Visual Studio Team System Passing values from one web test to another

    I realise that values can be passed from one WebTest to another using the Context. I have written a generic ValidationRule and I want people to be able to pass me an XPath to use as part iof the Validate evaluation. The XPath statement they are intertested in may be dynamic with parts of it changing based on test variables. For example, I could have a test that lets me buy from a shopping site and the item i buy is data driven. The test could be written to place the "item bought code" in a variable called "MyVar" in the test's Context. My generic validation rule knows nothing of this context variable of "MyVar" but does take an XPath. I ...Show All

  • Visual C# How to find a System Tray Process

    Hi, I'm trying to retrieve a process from the System Tray programmatically. My program starts the process and then saves the Process object. Later, the program tries to locate the process and bring it to the front (in focus). For all processes that do not reside in the system tray, I can do this with no problems. When I call AppActivate on a process that is in the SystemTray, the ArgumentException is raised. Does anyone know how to retrieve a process from the system tray Here is the code that brings the process in focus. The Process.Id is non-zero, but the Process.MainWindowTitle and Process.MainWindowHandle are undefined. ...Show All

  • Visual Studio 2008 (Pre-release) Binding two (or more) ComboBoxes

    Hello, I'm using WPF to make an app and I'd like to use some ComboBoxes to display (and select) location data from a XML, like it's seen in many websites. My XML is like this:   <locationData>   <Country Name="United States of America">     <State Name="Washington">       <City Name="Redmond" />       <City Name="Seattle" />     </State>     <State Name="...">     ....      </State>   </Country>   ...Show All

  • Visual Basic Access or SQL Which one is better

    Hi I'm wondering, which one would be better, i'm creating 2 medical programs, that are going to be running on a local machine, I Use visual Basic 2005 express and don't know if I should develop with access or SQL 2005 express. Which one is better and faster Any suggestions or comments will come in handy. PS. Future versions might have network connections, like for a secretary or interoffice connections. So should i work on access or SQL express SQLE is *better* in that it does more. The real question is, which is the appropriate tool fo hte job. If you expect to run the database on a seperate ma ...Show All

  • .NET Development TCPIP Messages Bunching Up! Any help appreciated.

    Hi guys, I have a client/server application in development (VB.NET 2005). Part of the appication's features require the server to send one or more messages to all the clients when the system time reaches a certain value. All of the above is working (i.e clients are receiving messages at certain times from the server which has a timer monitoring the system time and sending messages when it reaches a certain value). However, some strange things have been happening with the network streams. In one instance, the server sends three seperate messages to the clients via network streams when the clock reaches 8pm. The first message is re ...Show All

  • Visual C++ Microsoft support of C++

    I am interested in obtaining information on what C++ technologies Microsoft currently supports. VS6 is I believe no longer supported My main concern is recompiling our legacy code with VS2005. Obviously it is all unmanaged code. Could someone please give some feedback or better yet know of any links that could answer this question Thanks in advance. VC2005 supports technologies from simple console applications, to MFC, .Net, & C++/CLI. Take a look at http://msdn.microsoft.com/visualc/productinfo/features/default.aspx Also, take a look at http://msdn2.microsoft.com/en-us/library/hs24szh9.aspx for ...Show All

©2008 Software Development Network