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

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

hte

Member List

TiborK
RajDas
mobigital
pittpanther
rameshkl
imj
Mongsreturn
Misbah Ahmad
Curt Zarger
moh hassan
amicalrahul
Simone1
Semicolin
Windows Mobile 5
Proceed
NewWorld
BennyWang
Floppy_pillow
TeamFlex
PJFINTRAX
Only Title

hte's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Beta2: 3D Object faces not appearing with CullMode=None

    CullMode is set to none, but faces are not being shown on the same object (simple cube), but you can see the object behind it just fine due to the transparent texture. Hard to explain, but these should help. I can't see any reason that some of the faces would just not appear with culling off. I hope someone can see a simple resolution here, or if it's a bug. Screenshot: http://www.cybra.net/gd/images/Beta2-SCProblem.jpg Project: http://www.cybra.net/gd/TransTest.zip Great, all the faces appear now with those two set to false. The rendering is still not quite correct but it'll be close enough for now. (Sometimes faces behind will not be overlaid by the transparent texture of the face in front.) ...Show All

  • Visual Basic plz help me to know he differences between the following statements

    plz help me to know he differences between the following statements k = Chr(KeyAscii) Like "[0-9.]" k = Not (Chr(KeyAscii) Like "[0-9 -]") k = Chr(KeyAscii) Like "[0-9/]" thank you. thank you. i have another doubt in masked edit control. how to allow unlimited numbers to be entered. that is, i used masked edit for getting the amount details. so i may enter 1000.00 for one person and 10000000.00 for another person. i tried to hav ########.##. but if i hav to enter 100.00 its not moving to the decimal part. how is this made possible ...Show All

  • SQL Server Instead Of Trgger Marked Not For Replication Kills After Trigger

    Kill may be overdramatic, but... I am te sting a merge publication with a push subscription.  The publication contains a single table.  That table has an INSTEAD OF UPDATE trigger marked NOT FOR REPLICATION and an AFTER trigger that needs to go off during replication. During Synchronization neither trigger goes off.  If I drop the instead of trigger the after trigger will go off.  What is going on Thanks, Grant, this is a bug in our code. Thanks for reporting this issue. It will definitely be fixed in the next release and hopefully in the SQL Server 2005 Service Pack 2. Meanwhile can you workaround the problem If you can provide us more details on your scenario, we may be able to brainst ...Show All

  • .NET Development Error 25007.Error occurred while initializing fusion. Setup could not

    Hi, I am trying to install .net framework 2.0 on Windows XP OS. I get the following error " Error 25007 . Error occurred while initializing fusion . Setup could not load fusion with LoadLibraryShim().   how do i solve this     Try these steps: 1. Do you have the COMPLUS_VERSION environment variable set   If you do, remove it from your environment variable and try to install the framework. 2. Rename mscoree.dll in %windir%\system32 and try to install the framework 3. Look in your registry.  If you had a previous version of the framework installed (beta 1, beta 2, etc), see if this key exists: HKLM\SOFTWARE\Microsoft\.NETFramework ...Show All

  • Visual Studio How to move VSS 6.0 db to new server and VSS 2005?

    I may be making this harder than it needs to be, but I need to migrate an old VSS 6.0 db to a new VSS 2005 db that's on a new server. I'm somewhat of a novice and really having a difficult time figuring out how to do this, even after reading Help docs and forums. Do I need to upgrade the VSS 6.0 install to 2005 before I can migrate Is there an easy way to "move" or "import" the old db info/history to the new server location TIA. Skugga Would I just copy the Data folder and subfolders from the old server (6.0) to the new one (2005) That seems too easy! ...Show All

  • SQL Server Issue Exporting Date format to a delimited file.

    In exporting from a OLEDB connection to a flat file. In the originating table the field for DOB is in a varchar(10) format ex. 01/17/2007. The flat file connection destination is setup as a DT_STR. When you look at the OLEDB connection table preview you see it as 01/17/2007. When it is export to the delimited <CR><LF> <|> pipe delimited the format looks like this 01/17/2007 00:00:00. The issue would be resolved with a right ragged fixed width file. But this is not the requirement for the project format fot the file. I have tried delete and recreating the connections, and even tried doing a data conversation from the OLEDB connection to a char(10). Also, thourgh the transformation services with out any luck. On the flat ...Show All

  • Windows Forms Application.Exit()?????

    I wanted to know how can i do a check before I exit an windows application sort of like if a user clicks the X to close the form..I want to do a MessageBox.Show(are u sure u want to close", MessageBoxButtons.YesNo) and then maybe do if DialogResult == Yes then do Me.Close else I want to keep the form active....any help on how i should get this done a C# translation: private void Form1_FormClosing(object sender, FormClosingEventArgs e) { if (MessageBox.Show("Are you sure you wish to exit ", "Exit ", MessageBoxButtons.YesNo) == DialogResult.OK) { e.Cancel = true; } } ...Show All

  • Software Development for Windows Vista How to change the padding of Activity designer's container.

    hi all. in the activity designer container , is there any property or overridable method let me to change the padding for child activity designer below is figure demo _____________________ | container | | _____________ | | | | | | | child | | |<- -> | | | |__________>this padding. i will change it.. anybody can give me some more idea thanks . ...Show All

  • Windows Forms VS2005 Bootstrapper: Suppress Bootstrapper Installation Progress Bar

    Is there any way to suppress the progress bars during the installation of a prerequisite Ideally I would still want the progress displayed during the download of the prerequisite. Since most of the prerequisites are Windows Installer based installations I would rather run them in basic UI mode showing the Windows Installer progress bars instead of the bootstrapper's progress bars. Thanks, Shane ...Show All

  • Software Development for Windows Vista Workflow application working in one comp but not in another

    Hello, My problem is the following: I have an ASP.NET application with a validation workflow inside. It uses the membership and roles mechanisms provided by ASP. In my computer the application works perfect, the workflow starts, does all its job and completes successfully, but when I move the application to another computer the workflow aborts after saving some changes to the database. The workflow starts, gets 2 different events (start and save) and then calls an external method to save changes to database. It saves those changes (I checked the DB and it's OK), and then aborts. The problem is that when the workflow aborts it doesnt give any exception message, so I have no idea what the problem is, and as it works perfectly in my computer ...Show All

  • Visual Studio 2008 (Pre-release) Trigger on value changed

    Lets say I have the following TextBlock < TextBlock x:Name = " countText " Text = " {Binding Path=Count} " FontSize = " 12px " FontWeight = " Bold " > </ TextBlock > I’ve spent all night trying to figure out how to use a Trigger on this TextBlock so that when the Text changes, a storyboard will begin. Can someone push me in the right direction Many thanks -Steven do you mean textblock or textbox here I am pretty new to this but thought that textblock was just static text and did not receive input I may well be wrong. anyhow with textbox you can create an event and in the xaml include TextChanged="the ...Show All

  • Windows Forms combo box

    any kind soul can help me, i really appreciated. i am using c#. and access DB. i have a table with 3 columns: ID, NAME, AGE. is it possible to have the 3 colunms in one combobox what is the code and let say i have a combobox which shows the ID. it is possible to have 2 textbox that shows the NAME and AGE for example when a person choose an ID from the combobox, the 2 textbox will change accordingly to the selected ID how do i do that. pls help me urgently. i sincerely thanks in advance. Hi Yeodon, well Part II not only consists of ddlstTeacher_se.... that method but also some code in Page_Load event, that I included in my earlier reply also. //--- Part II //--- i have a combo ...Show All

  • Visual C# Spell Checker using word.

    I came across this code on the net and was wondering if anyone could help me tweak this to search more than just one textbox. Thanks protected void Button1_Click( object sender, EventArgs e) { Word. Application app = new Word. Application (); app.Visible = false ; object template = Missing .Value; object newTemplate = Missing .Value; object documentType = Missing .Value; object visible = true ; object optional = Missing .Value; object saveChanges = false ; object originalFormat = Missing .Value; object routeDocument = Missing .Value; Word. _Document doc1 = app.Documents.Add( ref template, ref newTemplate, ref documentType, ref visible); doc1.Words.Firs ...Show All

  • Visual Studio Express Editions Timer

    I have a Problem, I have a timer that runs and a event has to be run within this timer. The event is triggered by a button. My question is how do i get the brogram to "ask" if the specific timer is still running The event can be run before or after the timer is ended but it will be maked as early or late. Any help would be cool Thanks Thelostcircuit The only reason i though of the if statement way was i thought that the timers take up CPU power so i need to run like 5 instances at once it might get slowed. ...Show All

  • Microsoft ISV Community Center Forums Blocking IM

    Hi, Is it possible to block IM for all users in LCS 2005, i just wanto to use Audio Video conferencing feature. Pls help. Ekta We checked with the Microsoft support engineers, and here is what they told us: "IM (read SIP communication) is the basis for communication in LCS. Audio and video conferencing are added functions when you have an IM session open with another user. Hence disabling IM and enabling only audio and/or video conferencing is not possible." We hope this helps. Thanks Lisa (MS ISV Buddy Team) ...Show All

©2008 Software Development Network