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

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

jewelfire

Member List

tcarff
Zak1968
tomdart
kaimerachin
Vania B
regthesk8r
aero1
RMS
wleizero
Dileep Agarwal
omerk76
Chhaya
George Clingerman
J-Pixel
isunshine
David Todd Kaplan
StephenWalker
Big Bob Cooley
RabinLin
PhilJung
Only Title

jewelfire's Q&A profile

  • Windows Search Technologies Does WDS update last access times of files that it scans and indexes?

    I'm beta testing a new utility (UltimateDefrag) that requires accurate last access time stamps in order to place the most frequently accessed files on the outer tracks of the hard drive for improved performance. I'm wondering if WDS updates the last access time stamps when it scans and indexes If so, is there a way to disable this without affecting the indexing and search capabilies of WDS Hello all, WDS should not be updating the last-accessed time of files that it indexes. There are, however, some other programs out there that do this (virus scanners are a prime example). Are you sure that the problem you are seeing is caused by WDS or could it be other applications Paul Nystrom - MSFT ...Show All

  • Visual Studio Team System How many developers are licensed to use Team Suite for Developers w/Premium Subscription?

    We are trying to figure out if we need more licenses or not. FYI, it is really difficult to remain compliant with such a maze of license possibilities.... ...Show All

  • Visual Studio Express Editions Help! With a class project

    I am fairly new VB .net and I need help with a class project. I have to use an array in one-dimensional . I don't know how to start this project. Any suggestions. A really open ended question - class project , use one dimensional array. What do you want to do with the array. Its really a data structure to store something - Blackwood has shown how to declare and assign values to the elements but if your have a specific task in mind or are having specific problems let us know - outside of that you really asking a very vague general question. ...Show All

  • Visual C# Prevent class from raising event

    Is there generic way to prevent class to raise specific event, execute some code and then restore this event, without knowing event sunscribers For example, this is non-generic way: checkBox1.CheckedChanged -= checkBox1_OnCheckedChanged; checkBox1.Checked = true; // doesn't call checkBox1_OnCheckedChanged checkBox1.CheckedChanged += checkBox1_OnCheckedChanged; // restore subscription I want to do this by generic way, without knowing anything about CheckedChanged event subscribers. Pseudo-code (not compiled): EventHandler e = checkBox1.CheckedChanged; // keep existing subscribers checkBox1.CheckedChanged = null; // cancel notifications checkBox1.Checked = true; checkBox1.CheckedChanged = e; // restore subscribe ...Show All

  • Visual Studio Build error

    Does anybody know what causes the following BuildError Error 1 The "Vbc" task failed unexpectedly. System.ArgumentException: The resource string "General.DuplicateItemsNotSupported" for the "Vbc" task cannot be found. Confirm that the resource name "General.DuplicateItemsNotSupported" is correctly spelled, and the resource exists in the task's assembly. at Microsoft.Build.Shared.ErrorUtilities.ThrowArgument(Exception innerException, String resourceName, Object[] args) at Microsoft.Build.Shared.ErrorUtilities.VerifyThrowArgument(Boolean condition, Exception innerException, String resourceName, Object arg0, Object arg1) at Microsoft.Build.Tasks.TaskLoggingHelperExtension.FormatResourceString(Stri ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. simple projectile motion physics??

    im pretty new to gamedev, so simulating physics is new to me too. i know the projectile motion formulas, im just having trouble applying them. is there any "tutorial" on projectile motion physics for XNA basically, someone suggested to do "scorched earth". im trying to get the hang of just some simple projectile before i apply it to a game. i know i should basically have to just enter the initial velocity vector and the angle. then have it passed to a function that gets the initial x velocity, and initial y velocity. also, im assuming that whatever i get for y-velocity should be negative as "up" is negative in the XNA graphics. then, after each update, it should find the current change in position for x and ...Show All

  • Windows Forms passing data into another form

    Hi, I have the following code, which works perfect, when I makes af DataGridView with drag and drop (the code pass over the FakturaId to the new form, so I can make a select on this) System.Data.DataRowView SelectedRowView; fakturasystemDataSet.FakturaRow SelectedRow; SelectedRowView = (System.Data.DataRowView)fakturaBindingSource.Current; SelectedRow = (fakturasystemDataSet.FakturaRow)SelectedRowView.Row; FakturaVis FakturaVisForm = new FakturaVis(); FakturaVisForm.LoadFakturaVis(SelectedRow.FakturaID); FakturaVisForm.Show(); But now I have made my own dataset and adapter and I have some problems with the above code. I don't know, how I get the FakturaRow in intellisense (how I get this into the code, where I instansiate the dataset an ...Show All

  • SQL Server UPDATE Method

    I have a column of values in one table that needs to be updated based on an adjustment factor in another table. The table which contains the adjustment factors is built with the following column names. RangeBeg RangeEnd Factor The factor is determined depending on where the value falls in the range. I have been trying to do an sql script with no luck. Any Help would be appreciated. Thanks Hi, this could be something like (just guessing because we really need the DDL and some sample data to see how your actual design is working): UPDATE SomeTable SET SomeValue = ( SELECT SomeUpdateValue FROM AnotherTable AT WHERE ST.SomeRangeValue BETWEEN AT.RangeStarting AND AR.RangeEnding ) ...Show All

  • .NET Development getvalue , getfield

    The following is my code ... object accountEnum = Activator.CreateInstance (t); fieldInfo =t.GetFields(); foreach (FieldInfo f in fieldInfo ) { object val=f.GetValue(accountEnum); Console .WriteLine (val); } ..... Instead of the value returned , i get only the name of the field as the value.... Whats the problem Kindly help me. as I recall if you do something like this Console.WriteLine(x); it will automatically expanded to Console.WriteLine(x.toString()); So if someone provides a meaningful toString method is up to him or her. If you know the type of the field to retrieve and it is a base type then use the Convert class. If it is an enum then try this static method on Enum ...Show All

  • SharePoint Products and Technologies Problem in Document conversion

    Hi, is it possible to convert .DOCX file to web page. I am running RTM version of MOSS and when i was trying to convert word document to webpage it always give me ERROR: "Converting the document to a page failed. The converter framework returned the following error: CE_OTHER" Anyone could help me out of this. OK, to narrow this down let's try the following: 1. stop the launcher service ("net stop dclauncher" from a cmd window). This will disable the account. 2. using the windows user management tool, enable the account and set a password to your liking. 3. logon to the machine locally, using that account and the password you just set. I'd assume this will fail, but n ...Show All

  • Software Development for Windows Vista CreateEvent Fails with Access Denied when Events with the Same Name from Different Applications.

    CreateEvent Fails with Access Denied when Events with the Same Name from Different Applications. So I tried to use my CreateEvent functions without name and it works. So why should I even bother to use a name I will Create Events without name from now on not to come across with this annoying problem again. CreateEvent(NULL, FALSE , FALSE, NULL );//auto reset event   Baris ERGUN wrote: CreateEvent Fails with Access Denied when Events with the Same Name from Different Applications. So I tried to use my CreateEvent functions without name and it works. So why should I even bother to use a name I will Create Events without name from now on not to come across with this annoying problem again. CreateEvent(NULL, FAL ...Show All

  • .NET Development Usage of ParameterMarkerFormat for SQL Server connections (System.Data.Common, GetSchema)

    I'm quite new to ADO.Net so forgive me if I missed some obvious point. I want to write data access code and do not want to impose unnecessary dependencies on the database system selection. One of many things I expect to be specific for a database system is the way named command parameters are used in queries. This is handled by the common namespace by letting me gather a String.Format via GetSchema(). What I would expect is, that this format produces a database system specific parameter marker given a chosen parameter name, that is distinguished from the name itself, for example: DbCommand.CommandText = "SELECT ... WHERE ID = " + String.Format(markerFmt, "ID"); For an SQL Server connection, the markerFmt is ...Show All

  • SQL Server Already have sql 2005 sp1 want to install sql 2000 on same box

    Most of the posts here for co-existence of sql 2005 and sql 2000 are for upgrades to 2005 or installing sql 2005 on a box already having sql 2000. This is a bit different.. I have an application installed on sql 2005 sp1, on a default instance, no other instances installed. Because of issues the application is having with sql 2005, the vendor is recommending install of sql 2000 on the same box ('should not have any problems' they say), then script out the user databases in SQL 2005 and back in to the sql 2000 instance. Has anyone tried this (installing sql 2000 after install of sql 2005) or can point me to an article about it I've googled around and searched the knowledgebase to no avail. thx ...Show All

  • Windows Forms Trojan Horse the info to the event

    assume that I want to create 100 buttons layed out in a table of 10x10. When any of them is clicked, I want to know which button was clicked (in which row and column). If I use the same event handler for all the buttons, how can I know which one was clicked I do have a "sender" parameter, but this doesn't help me understand which button (which row/column) was clicked. What is the best solution for this Hi yaron-ct, If you feel the issue is resolved to your liking...mark the post as the answer so when others search the forums, they might be more inclined to look at a successful post than a non successful one... in the search results the Answered posts are bubbled to the top before the unanswered . ...Show All

  • SharePoint Products and Technologies What field of listitem was changed

    I was trying to create ItemUpdated eventhandler. I wanna trace what field of listitem was changed. How to do it I was trying to use properties.Afterproperties and properties.Beforeproperties but both of them return nothing. Am I do something wrong and this method is right or I must use another method Are you using the ItemUpdated event or the ItemUpdating event In the -ing event, the properties doesnt contain any info about the item. // Richard ...Show All

©2008 Software Development Network