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

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

kendy

Member List

rc-car-crazy
DamonPeng
rock.aut
JennyMQuinn
PaulHeloskie
K_L
TheTheTheTheTheThe
dr.acv
OLE DB driver creator
ParanoidX2
Ed Allan
HelderPinto79
afshar
1NooB
PeacError
robinjam
Tryin2Bgood
elsamma
martona
Chaos1
Only Title

kendy's Q&A profile

  • Visual FoxPro Creating an exe from the Control Panel

    Hello, I have finished my firs application and I have troubles with generating an exe to be installed in the customer’s PC. I’ve accomplished all the requirements seemingly for example to copy the dll that indicates the help of VFP, in same the directory where the application is executed, and to start up from an initial program that after calling to the form from this program, I`ve addedd the sentence of READ EVENTS at the end, I execute It and can’t see anything. The exe run like a process in memory (I do check it with the task Administrator of Windows XP). If I have an open sesion of VFP, it works, but if I close it, It does not (AND the client doesn't have installed VFP) Thank you for your support Regards, Alberto ...Show All

  • Visual C# accessing network share (z:\) from a windows service

    Hi, I have a c# code wich copies files from the z:\ to the local harddrive. The code works fine when just running it in a windows application. Because i want to create a service with the same functionality i copied the same code into the onStart() of the service surrounded by a try /catch with logs to the eventlog. In the eventlog i do see that it enters the catch with the error "could not find path z:\". I dont know what is happening here. Anybody an Idea grtz Annihil8 Mapped drives are per-user. Your service is probably running as SYSTEM which won't have the mapped drive. In order to use the mapped drive you'll have to map the drive from within the service itself (using P/Invoke). Ev ...Show All

  • Visual Studio 2008 (Pre-release) How to set up WCF Service on IIS

    I have written a WCF Service. It works well, and is a CLR .exe file I want to use this service on IIS. How do I do that Also, I dont see a configuration file on WCF, would that be the .application file Thanks Please take a look at: http://windowssdk.msdn.microsoft.com/en-us/library/b044b1c9-c1e5-4c9f-84d8-0f02f4537f8b.aspx Thanks James ...Show All

  • .NET Development which assembly will be called?

    Hi, I am studying .net and run it this question: Assembly A calls a private assembly B to do some function. B is located in the bin directory of A. Later you You assign B a strong name, set its version to 1.0.0.0, and install it in the global assembly cache. In this case, which B the assembly A will call is it still the B in bin or it is from global assembly cache Many Thanks Jerry Your understanding looks correct to me. The one thing I'm not sure about is why the question mentions publisher policy. Publisher policy is something you can set up to say "Any application that asks for version X should use version Y instead by default." So it's something that only makes sense once y ...Show All

  • Windows Networking Development Can the (QoS/qWAVE) be used as a media tutorial?

    I do not have Vista, but I am curious as to the limitations of (QoS/qWAVE) Would like to know if their is such a thing as creating a media file that loads at "first boot up" Then is available for the user to use as reference later on if need be Is this possible I am not even sure if I am in the right area to ask this question or not. This link was given to me in the MSNexpert live chat. Regarding limitations of QoS/qWAVE, you would have to be more specific. This feature of the core Vista networking stack enables applications to (i) safely prioritize different types of traffic, (ii) pace the rate at which traffic is sent, i.e. throttle, and (iii) receive real-time notifications of changing network conditions in order to d ...Show All

  • SQL Server Error: 18456, Severity: 14, State: 11 Valid login but server access failure

      Hi I am new to SQL server and I have been trying hard to make a client computer to remote connect to a SQL express database on host computer I have a VB6 application that can connect to SQL server database LOCALLY without problem: Connection String is: my_connection.ConnectionString = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=MyMushroom;Data Source=LAPTOP\SQLEXPRESS" I have followed instruction on enabling remote connection function from this blog: http://blogs.msdn.com/sqlexpress/archive/2005/05/05/415084.aspx I then try to run the same app from the client computer, it gives me: Login failed for user 'LAPTOP\Guest'. After looking up the web for solution, ...Show All

  • Visual Studio Team System Is a separate server required for MSF Agile and Project Management tools?

    Hi, I have been struggling with this problem for weeks and cannot seem to find an answer to it: I would like to use all the MSF for Agile tools in Visual Studio Team Suite but I don't need a separate server. (I am working alone and want to design iterations, etc. I have only one machine) I installed Team Explorer but it only tries to look for a TFS. I try to open a team project, but it only tries to connect to a TFS. Is there a single-system solution Is this possible Thanks, Mark You can go for Single-Server Deployment on TFS, which means the Team Foundation data and application tiers on the same computer. If you are in single-server deployment environment, your team explorer only ...Show All

  • Visual Studio Express Editions interaction with the web..

    hey.. anyone knows how do we get the software to interact with a site.. i.e. XML.. so that we can use html proxies.. Anmolarora, Thank you for your question. Could you explain what is the meaning of interact with a site Do you want too download a software for this interaction function, or just develop such kind of software According to this part, I suggest you to use the Web Service to implement your question. Please read this article: How to write a simple Web service by using Visual Basic .NET or Visual Basic 2005 http://search.support.microsoft.com/default.aspx/kb/301273/ In order to use the HTML Proxy, I recommand you to read this article: Simple HTTP Reverse Proxy with ASP.NET and IIS http://www.codeproject.com/as ...Show All

  • Visual C++ How to detect accesses to unallocated memory?

    I am looking for a free library to help find memory related bugs, such as memory leaks and accesses to unallocated memory. my code uses new/delete, and I don't want to change it so ideally I'd like something that could print errors (most of the time) when I do something like this. int* intptr = new int[2]; intptr[100]=5; intptr[2]=5; I've tried FORTIFY but it didn't work on that example above Can anyone recommend me a good library or a profiler sort of thing (like valgrind) that can do this reasonably well on windows I heard that there are some tools from GNU, but I never was able to find anything that works with Microsoft compiler. I almost forgot - take a look at MFC's implementation of new/delete usin ...Show All

  • .NET Development Create lookup

    How does one create a lookup at runtime Please see my code below: Dim dsNames As New DataSet Dim userAdpt As New OleDbDataAdapter( "SELECT * FROM [User]" , DBCon) Try DBCon.ConnectionString = csWBoard DBCon.Open() userAdpt.SelectCommand = New OleDbCommand( "SELECT userID,fullName FROM [User]" ) userAdpt.Fill(dsNames, "User" ) cmbFind.DataSource = dsNames cmbFind.DisplayMember = dsNames.Tables( "User" ).Columns( "fullName" ).ToString cmbFind.ValueMember = dsNames.Tables( "User" ).Columns( "userID" ).ToString cmbFind.SelectedValue = dsNames.Tables( "Booking" ).Columns( "userID" ).ToString DBCon.Close() DBCon.Dispose() Catch ex As Exception MsgBox(ex.Message) End Try ...Show All

  • Visual Basic Inherittence from Absrtact class - Help

    Hi, I am a newbie to Visual Basic and Visual Studio 2005. I have been struggling with an issue for a simple scenario. 1. I have an abstract class book (which has one "MustOverride" property), and a public data member Public class book MustInherit private m_name as string private m_quantity as UInteger private m_cost as Decimal public m_price as Decimal public property BookName(....) As string ///// This property has both get and set end property Likewise, I have ordinary property for m_cost and m_quatity. Also, public MustOverride property BookPrice (....) Classes B & C are derived from Class Book and defines BookPrice() property in its classes. The implementation is simple: This ...Show All

  • Windows Forms VB2005 Check for changes in dataset

    Hello, When I close my form I want to check for changes in the dataset. If there are changes I want a msgbox to appear wich asks for the changed data to be saved. Hello, Thanks. The code works accept for the following. When I edit a textbox and I close the form I get no Messagebox. When I edit a textbox and I switch between records and then I close the for I do get a message. How can I solve this ...Show All

  • Windows Live Developer Forums Photo upload tool please start working in my space !!

    hi.. this is my first post here, and i hope i'll get a beneficial answer from anyone. u see i've got a space in MSN and when i tried adding photos a window poped up and asked me to accept installing Photo upload tool inorder to have the ability to upload pictures to my space. I did install that program and it works well in hotmail when choosing to attach pictures but the problem is in my space. Whenever i try to add a photo, the same old window that asked me to install the tool pops up but it looks blank without any thing, it just blinks every almost 5 seconds. I thought it might need time to appear but i've waited forever and it's still balnky blinky !!! Any bright brains around !!!! am in Microsoft's site .. so i thin ...Show All

  • Visual Studio Express Editions Mouse and Keyboad events question

    I am trying to process some data using an external application. This external application processes data from a binary file and performs some algorithm on it. I would like to automate processing these files and send the processed data to the database. To do this I have tried to use the user32.dll library and the FindWindowA, mouse_event and setCursorPos functions. I am also using the SendKeys function as well. Everything seems to work fine until I use the mouse_event function is called. After I use the mouse_event function then the SendKeys function no longer responds. All these pieces of code work fine seperately but when I put them together they do not work. Any help is appreciated, Thanks, price private void button1_Click ...Show All

  • SharePoint Products and Technologies KPI List handling of SSAS KPIs with null values

    When displaying KPIs from Analysis Services 2005 in Sharepoint using the KPI List, we noticed something unexpected. It seems that if the KPI Value evaluates to Null (ie there's no data for the KPI), the goal value doesn't display either, even if it has a value. So, for example, if the goal is "10", but the value is Null, neither value displays. That doesn't seem right to us - just because there's no data for the KPI doesn't mean that there isn't a valid goal. Is there anything we can do to change this behavior Note that this is inconsistent with how Excel 2007 displays KPIs - Excel acts as we would expect. Hi Kevin, This might be "by design", but it makes life a little difficult. ...Show All

©2008 Software Development Network