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

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

Luxsy

Member List

BriceGuy
ManishaPatil
corbin
MaggieChan
matt01
r6rider
Alek Yakovlev
Renis Cerga
Riaanvs
Denvas
Fuehner
Astericks
Vinay Agarwal
IceAngel89
yeshman
billqu
Cyke
kts
Tamila
Ather.
Only Title

Luxsy's Q&A profile

  • Visual Studio Team System Excel report is not opening

    Hi, Excel report is not opening using VSTS Load testing tool. Scenario: Open the web application. Select search criteria and click on search button. search results appear with the link “Export to Excel” in each row Click on “Export to Excel” link. Report opens in excel sheet. Question: Using VSTS Load testing tool I have recorded the above scenario. While replaying the script, 4 th step is not working. I think it is not clicking on link “Export to Excel ” Excel report is not opening. Why it is not clicking on link “Export to Excel” What is the solution When I am clicking on "Export to Excel” link in Web Test Recorder it is not adding any new step under web te ...Show All

  • Visual Studio Express Editions Controls Snap To Locations in VB Express Edition 2005

    Whenever I try to add a control to a form, it always wants to "snap to" a location based on other controls on the form. Sometimes this is useful, and other times it is not. If I want a row of buttons, all placed right next to one another with no space in between, VB either wants them spaced out, or overlapping each other. How can I turn this feature off That is what I needed. Seems like I tried every different setting you mentioned and couldn't get it to work, then this morning it works as you described it. Also, using the keyboard arrow keys to precisely move buttons around helps when they're "almost" where they need to go. Thanks! ...Show All

  • .NET Development page cannot be displayed, etc.

    hi, on friday i chose to run ad-aware, spyboy-search and destroy, ccleanup and maybe another program, all which were installed over the summer to reduce viruses or harmful things on my computer. however, when i was prompted to reboot the computer, i did so, but now my internet connection will not work. i feel like i have looked through every help and support article online...I ran network diagnostics and all sorts of things. some of the things that stuck out were "DNS" "TCP/IP Protocol" something called "SyM WMI service".. But those were all problems that showed up on friday. maybe someone will know what's wrong:) Thank you for any help you can give! ~Katie This forum is d ...Show All

  • .NET Development Best practice for checking user's permission

    Background: I have an application that contains several modules. Each module has an "access permission" which is stored in a database as the AdPath. For example, WinNT://Everyone has access to module 1. LDAP://domain.se/CN=Developers,CN=Users,DC=domain,DC=se has access to module 2. Now, to check if the current user has access to a module I run this piece of code: AppDomain .CurrentDomain.SetPrincipalPolicy(System.Security.Principal. PrincipalPolicy .WindowsPrincipal); WindowsIdentity identity = WindowsIdentity .GetCurrent(); IPermission permission = new PrincipalPermission ( "" , "" ); DirectoryEntry entry = new DirectoryEntry (adPath); byte [] objectSid = ( byte [])de.Proper ...Show All

  • Visual C# arrays and properties.

    dear all, I have a class called precipitate class Precipitate { private string name; public string Name { get { return name; } set { name = value; } } } So far so good. I create an array of the precipitate class Precipitate[] prec = new Precipitate[20]; for (int i = 0; i < 20; i++) prec = new Precipitate(); when I want to access the property name for a particular array element we do it as prec .name. Again no problem here. Now I want to have something like... what I want is something like... prec .equation[j].equationname; prec .equation[j].valuex; etc... how should I do it I just know the basics and dont know if...you can create a property array "equation[]" inside the prec class and make ...Show All

  • Visual Studio Cannot set value because it is in a register and not in the top frame

    Hi. I have a problem, that... when the string variable shows "mystring" but string.IsNullOrEmpty evaluates to true. I'm using this variable to access SortedList and it fails that key cannot be null. However when I watch the variable it has the value it is supposed to have. The subroutine where it first occurs is: public bool IsReadOnly( string fmBind) { XPathNavigator node = xpData.SelectSingleNode(bindings[fmBind].NodeSet, _nm); if ( string .IsNullOrEmpty(bindings[fmBind].ReadOnly)) return false ; return /*node != null && */ ( bool )node.Evaluate(bindings[fmBind].ReadOnly); } Exception is thrown on the return - because node gets null. However I cannot try to find out why it is, b ...Show All

  • Visual Studio Tools for Office Error: InfoPath Form Template

    Hello After creating the InfoPathFormTemplate Project i cannot do any operation in my Visual Studio 2005, for any operation it show me the error message "Visual studio has encountered an unexpected error" Can you suggest me any solution to solve this problem Regards Hi Eric, Just off the top of my head, have you tried repairing Visual Studio Would you list what you have installed, related to VS In particular versions of Visual Studio, any SDKs, Service Packs, etc. Thanks Roger ...Show All

  • Visual Studio 2008 (Pre-release) Flow content and data binding

    Hello! I'm trying to generate a FlowDocument through a data binding (it's some kind of report). And it looks like that all the flow content elements were not designed for data binding. MSDN suggests to generate such documents programmatically in C#, that is not an option for me — I'd like to separate "look & feel" from data. Question: Are there any samples/articles about using the data binding in FlowDocuments Thanks in advance, Thanks for reply! It's a great pity you don't support binding. I hoped to use FlowDocuments as a simple reporting engine. And without bindings it would require loads of code behind. ...Show All

  • SQL Server Unable to read local eventlog (the parameter is incorrect)

    In trying to setup alerts and activating them, an error occurs in the sql agent log of Unable to read local eventlog (the parameter is incorrect) The full messages from the Windows NT Logs shows: Event Type: Error Event Source: SQLSERVERAGENT Event Category: Alert Engine Event ID: 318 Date:  03.11.2005 Time:  17:14:47 User:  N/A Computer: RESYSHADOW Description: Unable to read local eventlog (reason: The parameter is incorrect) Does anyone know what could be causing this.   I have tried it on Windows XP SP2 with local Admin account and on Windows Server 2003 with Domain Administrator Account and the SQL2005 Server is RTM with the same results.   Please comple ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to monitor microphone input level?

    I'm using VB.net with Framework 2.0. How to monitor the mic level of the default soundcard I would like to be able to set a threshold value (0-100%) and when the mic level is greater than that a message box would appear. It would be important that the detection would be fast (with as short delay as possible) and consume CPU resources as little as possible. Is this possible without DirectX SDK I found some code in VB6 and C but could not translate them in VB.net. Thank you! I have to admit, I don't know how to use that source code. I think I should do something with the WaveInBuffer but that's all. Could you help me and give me more hints and advice Thanks! ...Show All

  • Smart Device Development Drive mapping across WiFi in Windows Mobile 5 ?

    Has anybody successfully mapped a network drive to a Windows server across WiFi with a Windows Mobile 5 device Please enlighten me on what you did to accomplish this as I'm getting the error message "The network path was not found" followed by "The network resource was not found, or you don't have permission to connect to the network." no matter what I've tried and I've even configured my Windows XP Home edition to share drives and still the same problem. Thanks for the suggestion, but it didn't work out with \\<NetBios name>\SharedDocs either John ...Show All

  • .NET Development C# Regex Replace help needed

    Hi, I have some code that reads a line from a text file and, using regular expression only returns words that are in caps: string sExpression = @"(\b[^\Wa-z0-9_]+\b)"; MatchCollection mc = Regex.Matches(sr.ReadLine(), sExpression); I'm not very good with regular expression and I wan't to know if there is a way I can not only get back all words that are in caps but also all occurences of the word Space. I.e. my line that has been read from the file would be something like: LButton O N L Y Space T I M E Space W I L L Space T E L L ShiftKey LShiftKey D1 LButton LButton LButton And I want to get back, by hopefulyl eventually replacing the word Space with " ": ONLY TIME WILL TELL Hope ...Show All

  • Visual C++ 'Is' in C++

    Hi! In C#, there is a keyword named 'is'. It compares whether one type can be converted into another. Is it possible to do something like this in C++ Thank you Note that you said "type", implying a fundamental type (such as int), without specifying that you were referring to classes. That is what confused people initially. If it were me, I would look in the VC documentation. There probably is a way to determine if a class is derived from another class. It is possible however that there is a different solution to a more general problem. It might be possible to use virtual functions, and if so, then that would be easier and more flexible. ...Show All

  • Visual Basic bubble sort in a list box

    OK, from what I understand, I would be better off trying to sort numbers in a bubble sort in my listbox. I used the listBox.sorted = true but that does not sort larger numbers correctly., What is the code on this bubble sort and do you just call it in a subroutine pseudo code: function bubble_sort( list L, number listsize) loop has_swapped := 0 //reset flag for number i from 1 to (listsize - 1) if L > L[i + 1] //if they are in the wrong order swap(L , L[i + 1]) //exchange them has_swapped := 1 //we have swapped at least once, list may not be sorted yet endif endfor //if no swaps were made during this pass, the list has been sorted ...Show All

  • .NET Development difference bet. kernels.. of XP n vista?

    help me ya i got tht from a frnd.. it is No. Both kernels are preemptible, monolithic kernels with drivers loaded as modules in the common address space mapped in all processes. Both use the same concept of thread and process and the same concept of VM. ...Show All

©2008 Software Development Network