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

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

Zombie_002

Member List

cheesetarmac
MicahN
TilakGopi
tschissler
John Freddy
metin ergöktaş
nicromi
Vaish
cstrader
tnsgod831
guppie
Will Merydith
venp
JDPeckham
Nick Port
michael aird
Renan Souza
vakman
Freeky
Ashok Ojha
Only Title

Zombie_002's Q&A profile

  • Visual Studio Team System RASK in Word 2007?

    Hello all, I'm wondering if the VSTO RASK (Requirements Authoring Starter Kit) can be deployed to Word 2007 Beyond customizing RibbonX to allow toggling of the RASK task pane, are there any other issues Thanks, Aidan Ryan Actually questions regarding the RASK are pertinent to this forum. The Requirements Authoring Starter Kit provides a demonstration of integration between VSTO and the Visual Studio Team Foundation SDK. Although this question in particular leans more toward the VSTO side of the fence. ...Show All

  • .NET Development Oracle not listed as a data source

    Hi, I am running Oracle 10g express and Visual C# express. I am trying to connect to an Oracle database but when I select Add Connections, I do not see Oracle listed as a data source. I have the Oracle .NET data provider intalled but again, nothing seems to work. I have been banging my head against a wall for the last 3 nights trying to connect to the Oracle database (on the same server). I have done a TNSPING and everything is working with the database. Please help. I am new to .NET/ODBC etc. so please keep answers simple although I do have a lot of C experience from years ago. Thanks. ODP.NET does not show up in the list of data providers in VS2005. This is apparently something they will add in the next ...Show All

  • Smart Device Development _WIN32_WCE is hex and not decimal in VS2005

    I just noticed something and I can't figure out how it's working at all for anybody. Surely I'm missing something obvious. If I make a new project in eVC 4.0 then the project settings will define the following: _WIN32_WCE=$(CEVersion) So for my Pocket PC 2003 configuration _WIN32_WCE winds up having a value of 420 (decimal). This makes sense since all of the Windows CE Platform SDK's compare this constant with decimal values like 300, 420, and 500. However if I create a new Smart Device project in VS2005 then the project settings define the following: _WIN32_WCE=$(CEVER) But this time $(CEVER) is defined as 0x420 ( hex ). Now all of the comparisons are incorrect. Am I missing something here Surely this isn't a bug in VS20 ...Show All

  • Internet Explorer Development cookies question

    hi guys, for example, when an user access and log on our website site1.br.com , user will fill out a form and it would store the user information (such as user email address) to cookies in local machine. If the same user tries to access site1.br.com again then it will use cookies to remember the website setting. Now let's say that we want to bring a mirror web site site2.br.com (identitcal to site1.br.com) online. if the same user tries to access site2.br.com, cookie will be unavailable because the first time cookie were stored in site1.br.com, thus user will need to fill out information again for cookie to be saved for accessing site2.br.com the next time. Is there a way to store cookies for both site1.br.com and site2. ...Show All

  • Visual Basic VB .net tab control multi line...

    Ok, I am creating a new version of a program in vb .net. The main page has a tab control with 7 tabs on it to select your general category. However, the two word text does not always fit on these tabs. I want the text to wrap instead of just going out of view off of the tab. However, there is no wrapping option or way to get the text on multiple lines(like there was in VB 6), except for forcing it by inserting a new line character into the text. But if I do it that way the text is no longer vertically OR horizontally centered and looks very bad, and is plainly unacceptable. So, is there any way to get the text on multiple lines on the tab control I have been looking everywhere for this option and it is simply not there. Thank you. ...Show All

  • Visual Studio Express Editions system hangs?

    A search for related questions, etc. turns up nothing useful. Some time after installing MS VB 2005 Express Edition, my system started freezing up, requiring a cold boot every few minutes. So I uninstalled using the recommended tool. My system recovered 100%: no more freezing. Then I reinstalled. For now, things seem to go all right. My question, before it is too late to ask: how can I as a user _document_ these system hang-ups I checked the Event Logs, found nothing suspicious. Are there any monitoring tools Thanks in advance for your answer. stefaan dot meeuws at gmail dot com precisely: the mouse pointer freezes, the keyboard does not respond and the only thing possible is to hold ...Show All

  • Visual Basic Sami language characters

    Is it possible to use the characters below that are not in the Ascii table when programming in VB 2005 A C3 81 E7 E7 00C1 LATIN CAPITAL LETTER A WITH ACUTE a C3 A1 E1 87 00E1 LATIN SMALL LETTER A WITH ACUTE C4 8C A1 A2 010C LATIN CAPITAL LETTER C WITH CARON C4 8D A2 B8 010D LATIN SMALL LETTER C WITH CARON C4 90 A3 B0 0110 LATIN CAPITAL LETTER D WITH STROKE C4 91 A4 B9 0111 LATIN SMALL LETTER D WITH STROKE C5 8A AF B1 014A LATIN CAPITAL LETTER ENG (Sami) C5 8B B1 BA 014B LATIN SMALL LETTER ENG (Sami) C5 A0 B2 B ...Show All

  • Software Development for Windows Vista Which service supports and controls the burning of optical media?

    Hey guys I was wondering as to which service supports and controls the burning of optical media I guess I am in simple terms looking at a replacement for imapi service. As of now unable to find anythin similar. Also wondering if I can use a third party utility to read the latest UDF format in a older operating system Thanks, Joshua PS: If I am in the wrong place, apologies :) Hi Henry, thank you very much for the details. I was looking at enabling/disabling on a enterprise level. Certainly not trying to replace the service. A read only driver sounds good. Certainly not looking or a 3rd party file system for now. So I take it that imapi.exe loads on its own without any service backup and loads the dl ...Show All

  • Visual Studio 2008 (Pre-release) Problem passing Int datatype field in class to wcf service

    I have a class that I am passing to a wcf service for example... [DataContract(Namespace = http://DataContractsNS )] public class Order { private int _OrderID; private int _VersionID; [DataMember] public int OrderID { get { return _OrderID; } set { _OrderID = value; } } [DataMember] public int VersionID { get { return _VersionID; } set { _VersionID = value; } } } On the client, I do this... Order o = new Order() o.OrderID = 1234; o.VersionID = 1; client.SentOrder(o); .... ... On the server, the OrderID and VersionID always comes across as zeros, i.e., OrderID=0 and VersionID=0. I am stomped and can't figure out why this is happening. The funning thing is that I have other non-numeric fields in this class that comes ...Show All

  • Windows Forms Tab Control

    Dear friend I had tab control in which 6 tap page,in each tab page number of control which is bind to the dataset. When i retreive data from database, merge logic is used to get data to the dataset which is binding to all the control in the tab control. The value get update properly to the dataset, and values comes proper to the first tab page control, But the value in the 2 and 3 tab pages not getting updated. It only get updated when i active that tab control page. Problem is when i retreive data and click on save button.In save Procedure i had written code for validation in which i m checking text value it show me Blank/empty. To save the value i have to click on all the tab page control and then click on save button. ...Show All

  • Visual Basic learn VB.Net

    Hello Friends , I am new to .Net platform.. I need to learn VB.Net as quick as possible... Can any body suggest me a good for a beginner to learn VB .Net soon.... Thanks in advance Regards, Nandhu Hi, See the beginners guides near the top of these two areas on http://programmersheaven.com >> http://www.programmersheaven.com/zone28/index.htm http://www.programmersheaven.com/zone1/index.htm Regards, S_DS ...Show All

  • Visual FoxPro Using INI files to store settings in Visual foxpro applications

    Does any one know a good example, tutorial, or walk through on how to save settings in your application to an ini file The best I found is "INI Class" at the UT: http://www.universalthread.com/wconnect/wc.dll 2,54,33,9309 You also have "Read / Write INI files": http://www.universalthread.com/wconnect/wc.dll 2,54,33,9766 ...Show All

  • .NET Development treenodecollection error

    I have the following code public Form1() { // // Required for Windows Form Designer support // InitializeComponent(); XmlTextReader reader = new XmlTextReader ( "c:\\Words.xml" ); int i = 0; while (reader.Read()) { switch (reader.get_NodeType()) { case XmlNodeType .Element: if (reader.get_HasAttributes()) { TreeNode treeNode1 = new TreeNode (); TreeNodeCollection treecolec = new TreeNodeCollection (treeNode1); i = 0; while (reader.MoveToNextAttribute()) { if (reader.get_Name().Equals( "namelan" )) { treeNode1.set_Text(reader.get_Value()); treeNode1.set_Name(reader.get_Value()); this .treeView1 ...Show All

  • SQL Server Localization and BUILTIN groups

    Is there a synonym for the group BUILTIN\Users which can be used for GRANT ... TO and sp_grantlogin/sp_grantdbaccess, but which will work on localized computers I have a number of automated unit tests I wish to run on two different computers. The process involves recreating a database if it does not exist and then granting access and privileges to the BUILTIN\Users group. The problem is that one computer is installed with a Swedish Windows XP Professional (the users group is called BUILTIN\Anvandare) and the other is an English WinXP MCE (the group is called BUILTIN\Users) so I cannot easily script this. An alternative is to be able to retrieve the respective name through a .NET class or the Windows API. Is any of this possible ...Show All

  • SQL Server Shrinking databases or files

    Hi, I have some doubts about Shrinking databases or files. while shrinking a file, I learned that we are alllowed to shrink more than the minimum size of the file, does not it bring damage to the data in that file Hi Derek, I understood what you mean finally. When we apply shrinking to our files, we make the growing process start in order to activate the unused spaces(rows). So growing process requires too much performance which shows the inefficiency of shrinking. Besides, heavy shrinking, which is also called that trying to make a file very and very small, is really dangerous for datas in the files. This is the another disadvantages of shrinking. As you said before, we should only apply this method(shrinking) when we drop huge ta ...Show All

©2008 Software Development Network