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

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

feby

Member List

einaros
Wim1966
DavidThi808
Wai Hon
JIM.H.
C3i
Chimme
Dino Nguyen
CBueche
Tom H.
Dottj
Giri
lagu2653
FC-Shiro
Charley Lou
tradle
Tryin2Bgood
Boulderdude
DRoden
Neotech
Only Title

feby's Q&A profile

  • Visual C# How to marshal a linked list from C++ to C#

    I have a native C function that returns a linked list in the following form: It actually returns a vlist_s *. /*! The vlist is single linked list that stores void pointers. It has a cursor to traverse the list. */ typedef struct vlist_node_s{ void * item; struct vlist_node_s * next; } vlist_node_t; typedef struct vlist_s{ struct vlist_node_s * head; struct vlist_node_s * tail; struct vlist_node_s * cursor; struct vlist_node_s * cursor_backlink; unsigned int cursor_index; unsigned int count; void *(VLIST_CDECL *malloc) (size_t); void (VLIST_CDECL *free) ( void *); } vlist_t; Is there any way to pass the returned vlist_s pointer back to the C# method that made the original call ...Show All

  • Smart Device Development resource assembly error - System_SR_ENU_wm.cab installed.

    I know this has been posted before but can anyone offer any advice on the ' An error message cannot be displayed because an optional resource assembly cannot be found' error other than installing 'System_SR_ENU_wm.cab' All advice I've seen is to install 'System_SR_ENU_wm.cab' but this is definately installed and I'm still getting the error (or rather lack of). I know the exception is a web exception but need to see the details to sort out the problem I have with my mobile application (WM5 on UK english device). The error is raised when the device calls a method on a web service. It works when the device is cradled but when not it starts the GPRS connection as it should but then errors. So I'm mainly after advice on how to get err ...Show All

  • Visual Studio how do I specify additional search path for musbuild for building projects

    By default, msbuild goes on searching for missing dlls in paths as shown below, how do I specify my custom paths for dlls (per project ), here's what msbuild spits while searching for dlls: [3432:DEBUG] For SearchPath "{TargetFrameworkDirectory}". [3432:DEBUG] Considered "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Practices.EnterpriseLibra ry.Logging.Sinks.Database.exe", but it didn't exist. [3432:DEBUG] Considered "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Practices.EnterpriseLibra ry.Logging.Sinks.Database.dll", but it didn't exist. Thank you! - Gurpiar. Visual Studio allows you to specify custom / ...Show All

  • Windows Forms VS 2003, false data concurrency error

    Hi I have a vs 2003 winform data app. All the data access code has been generated using the data adapter wizard and then pasted into the app. The problem I have is that I am getting a data concurrency error on mydataadapter.update() method. I know that there is no data concurrency problem as I am the only user testing the app. Obviously the error is misleading. What can I do from here to fix this problem Thanks Regards Walkthrough: Handling a Concurrency Exception ...Show All

  • .NET Development Threading fun ;)

    Hello threading professionals, I have something "clean" and interesting for you... please help. I will appreciate it.. I want to solve the problem and (more so) learn about how this thing works.. very interested in the details. In my simple notes-taking simple, once in a blue moon it happens that the GUI stops responding.. I finally took the courage and attached a debugger earlier today when it happened again. With my newly acquired debugging skills I found out where the problem lies and what is happening. However I still don't understand WHY it happens. I imagine that it should be too hard of a challenge for someone with a lot of experience in this subject. Here we go: In my NotesForm, I use a System.Threading.Timer which fires every 20se ...Show All

  • Software Development for Windows Vista User Interface to change rules

    Hi, I am just trying to compare Windows workflow rules engine with a typical Business rules engine. In WF, we can make Rulesets and it provides fantastic features like Forward chaining,etc but was wondering if I want to change any rule in the Ruleset I need to change the code and build my application again. And this activity has to be done by some developer only. Does WF provides any User Interface for Business Analyst kind of people to manage these rules/rulesets Regards, Ekta Ekta, Currently, the WF designer is focused on the developer audience. A custom UI can be built on top of our API, and we anticipate that partners (and end users) will build designers on top of our model, targeted a ...Show All

  • Visual Studio Team System Cross Database References

    Upon compilation cross database references are being resolved against my local SQLServer Express installation (regardless of where my build is pointing). How can I get it my project to compile against the target server when resolving these references Jason Giuseponi wrote: I'm not sure if this will be useful but if you don't care about the warning, you can supress it by entering the warning id in the project properties | Build | Supress Warnings field. I wish it WERE a warning. But it's an error, so I can't even deploy ...Show All

  • SQL Server Access to TableAdapter Object in WebPage Class.

    Hi, I'm using Reporting Services on my website and for some reports, i get the timeout error after 30 secs. I declared my object using the Reporting tools and I am using ObjectDataSource. My report is declared in my aspx page: < rsweb : reportviewer id ="ReportViewer1" runat ="server" font-names ="Verdana" font-size ="8pt" Width ="100%" Height ="600px"> My ObjectDataSource is declared in my aspx page under my report tag: < asp : ObjectDataSource ID ="ObjectDataSource" runat ="server" OldValuesParameterFormatString ="original_{0}" SelectMethod ="GetData" TypeName ="ReportsTableAdapters.Viewi ...Show All

  • Windows Forms stop datagridview updating

    Hi Can someone please help I want to stop a datagridview from updating. I've created a strongly typed dataset that contains 1 datatable, when my from loads it initializes the datatable and gives it a couple of rows. I then set the datasource of a datagridview equal to the datatable and then dispose of the datatable. Each row contains a set of variables which I edit from their default values, I then add each row to a list(of dataset.row). These variables are then used to do some calculations, the result of which changes the values in a column, however this slows down the calculation time. If I set the datagridview.datasource=nothing the calculation time shortens, but all the values disappear. Does anyone know of a way to k ...Show All

  • Visual Studio Express Editions Filtering

    Hello I'm using VB 2005 pro. I made a little form with a dataviewgrid, textbox and a button. Now when I press the button, the program searches into the bindingsource and filter out what I entered in the textbox. This is the code: (it works PERFECT) Me .ContactBindingSource.Filter = String .Format( "FirstName , Me .TxtSearch.Text) Now when I filter out the database, I have to write the name completely: e.g.: Peter I want to make something that when I enter the first letter: e.g. P, the filter,filters all the names who begins with the letter P. Marnik Thank you in advance what you could do is to filter the datasource on every keypress of a textbox and then display the items found in say a listbox or somet ...Show All

  • Visual Studio Express Editions how some help fix my code?

    'Create a new MailMessage object and specify the"From" and "To" addresses Dim Email As New System.Net.Mail.MailMessage(" From@abc.com ", " To@abc.com ") Email.Subject = "test subject" Email.Body = "this is a test" Dim mailClient As New System.Net.Mail.SmtpClient() 'This object stores the authentication values Dim basicAuthenticationInfo As _ New System.Net.NetworkCredential("username", "password") 'Put your own, or your ISPs, mail server name onthis next line mailClient.Host = "Mail.RemoteMailServer.com" mailClient.UseDefaultCredentials = False mailClient.Credentials = basicAuthenticationInfo ...Show All

  • .NET Development SOAP FAULT Security

    Hi I have a client who is using my WSE 2.0 web service and is having problems receiving SOAP Faults which my service seems to raise and send OK. One of the issues for my client is that the SOAP fault is not signed. 1) Is it "normal" or "good pracice" to digitally sign SOAP faults 2) If necessary, is there an easy way to do this on WSE 2.0 I ask this because the message itself seems to be constructed by the .Net framework or WSE 2.0. Many thanks and kindest regards, Neil ...Show All

  • .NET Development Porting from saxon

    Hi, First off...I am very new to xslt, and I am really just doing an investigation here to determine which XSLT transfor object we are going to use in a client application we are going to be writing (think client). We already have a web application that uses xslt to transform xml files that contain data gathered in a lab. That web app uses saxon, perhaps partially due to the fact that saxon implementents XSLT 2.0. Regardless, since I am going to be interested in displaying the same data (in an environment where we don't necessarily have access to this web application) using the xml files and xslt templates, it would be nice If I could get away with modifying these as little as possible. I have already found out that the element xsl:f ...Show All

  • Visual C# Windows Service

    How do I debug a Windows service created in C#. I installed the service. but what now ! Thanks! You may need to turn on managed debugging, it's a checkbox but I can't remeber exactly where it is. My VS2005 90 day trial expired and I went back to using the express versions. ...Show All

  • Visual C++ Custom Scripting Library fails registration for debug build but not release

    Hello, I am trying to convert a custom lib from VC 7 to VC 8 and am getting an error in a custom build step where the .dll gets registered using regserv32. The error is "The application failed to start because the application configuration is incorrect". I have read the various threads about the msvc*80d.dll not being found and tried the different solutions for this issue. I used the dependency walker to confirm that these are the problem dll's. I have had no luck in resolving this issue. The manifest file being generated is as follows: < xml version="1.0" encoding="UTF-8" standalone="yes" > <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> < ...Show All

©2008 Software Development Network