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

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

KevMac

Member List

Joe Sanders
drumstick
rweatherly
Seiggy
D. Choquette
Greenstrike
marcioesteves
EdTheDuck
Jonas.S
waheyluggage
Indigo Cowboy
Elliot Rodriguez
Blackwood
Peter Bernhardt
Alex Foygel
yzhang12
AlwaysTrying
elhussein
redshock
NewInput
Only Title

KevMac's Q&A profile

  • Smart Device Development can we change the location of celog.clg

    hello people actually i configured OS using platform builder 5.0 with taking care of all build option to log the data in celog.clg file. but the problem is, when i run this OS in emulator using platform builder...it always make the file "celog.clg" in release folder only..... Is there any way to change the location of this file ...i mean i need to store the file in win ce local file system or some where else only..is that not possible i also changed the registry value... written on msdn..but got no effect.. actually i want to take this "nk.bin" to some other folder and run it with the help of emulator_500.exe..and ther is no release folder....so where i can get celog.clg file.... please help in this respect ...Show All

  • SQL Server SQL Server next generation product family

    Is there any documentation available on sql server product family after SQl Server 2005. If so what new enhancements are planned. We are planning to release a product in 2010 and would like to get an idea on what new features we could take advantage of in next versions and compatibity issues. TIA We are still not public on much of this information. You will definitely start seeing some more details in the next six months. Is that OK Feel free to contact me offline, I work for product group, mark.souza@microsoft.com ...Show All

  • Visual C# how to set system time?

    HI, ALL, i want to set system time by using CoreDll.dll. i did not find this DLL in my computer. i am using Windows XP. So i download it and put it into C:\WINDOWS\system32. and then restart my computer. but when i run my application, i still keep getting error "Unable to load DLL(CoreDll.dll)". Do you have any idea i use the code i found in MSDN: http: / / msdn2. microsoft. com/ en- us/ library/ ms172517. aspx thanks a lot yjm CoreDll.Dll is for the Windows Mobile Devices/.NET CF only, not for the PC You will need to PInvoke on the PC, try the following resource for information about setting the system time   http://msdn.microsoft.com/library/default.asp url=/library/en-us/ ...Show All

  • Visual Basic Searching Records on Windows Form

    I can't seem to find a solution for this anywhere! Everywhere I've searched on Google always shows me how to do this with a datagrid - but not a form. I've created a form which correctly displays all my fields in a recordset. I can scroll through them, add new records, delete records, etc. etc. and everything is fine. I now want to add a Search field to the form so that when the user enters a search string, it automatically searches through the dataset and refreshes the display to display the appropriate search result (i.e. populates the currently open form with the appropriate record). Any help will be appreciated. Thanks DeborahK, however I don't seem to have the 'productretievelist' op ...Show All

  • Visual C# Convert TimeSpan to format DD:HH:MM:SS without the milliseconds

    Hi I have an application that needs to display duration time which is calculated with the TimeSpan class. The representation should be formatted as: D:HH:MM:SS (D=days, HH=hours, MM=minutes, SS=seconds). When applying the ToString method of the object it yields out the exactly what we need (including negative values). Quote from MSDN: "A string that represents the value of this instance. The return value is of the form: [-][d.]hh:mm:ss[.ff] Items in square brackets ([ and ]) are optional, colons and periods (: and.) are literal characters; " The issue is the optional decimal second fraction, we don't need it. Please advice how can we eliminate this milliseconds optional representation. Thanking you in advance Ilan ...Show All

  • Visual Studio 2008 (Pre-release) ASP.NET Integration

    I'm curious as to the plans you have for integration with ASP.NET, especially things like the ObjectDataSource control. Given that there's no template for ASP.NET, I suspect that you've not done much work in this area specifically. I'm particularly thinking about Update/Delete scenarios; while the EDF entity works well through through the ObjectDataSource, I'm wondering if you're thinking of more involvement. For example, removing the requirement for actually having methods to perform Insert/Update/Delete operations; could these somehow be implemented as part of the entity itself Have you thought about this at all If creating the methods is a requirement (and I can think of many reasons why it could be), are there improvements I can do ...Show All

  • Visual Studio Express Editions How Do I Give the user a choice to stop a Popup From poping up Again

    Usualy my Post never get answered but maybe they will this time.. Im new to Visual Basic Express And i am trying to make my own internet explorer (I Has Watched all the tutorials And know a little bit... but i just started 3 days ago... and im Only 14) I made a dialog popup box informing the user on what they were doing... and that is bout it so far... what i really want to know is how can i make it so the user can choose if he wants the popup to not show up again by checking a box... i would really appriciate it if someone could help me with this... Thanks the code given was just an example to which you must modify to implement into your own solution. you also need to import the System.IO ...Show All

  • Visual Studio The project factory Library is not registered

    I'm trying to make the most simple GAT project. When I try to register the project, I get the following exception: Microsoft.Practices.RecipeFramework.RecipeFrameworkException: The project factory Library is not registered, template C:\Documents and Settings\MYeager\My Documents\Visual Studio 2005\Projects\MilosTestGuidancePackage\MilosTestGuidancePackage\bin\Debug\Templates\Solutions\Projects\_ExternalReferences\_ExternalReferences.vstemplate cannot be installed. at Microsoft.Practices.RecipeFramework.VisualStudio.Templates.TemplateMetaData..ctor(String templateFileName, CommandID command, String packageName) at Microsoft.Practices.RecipeFramework.VisualStudio.Templates.VSTemplatesService.Microsoft.Practices.RecipeFramework.Visua ...Show All

  • Visual Basic Passing Optional Arrays to a Sub

    In Visual Basic 2005, I am trying to create a sub in a class that takes an optional string(). However, I am unable to figure out how to set the default value. I have already tried: Public Sub getData(Optional ByVal postData() as String = {"", ""}) However, I get an expression required error at the {. Also, I tried the New String(), but then I get the error saying it must be a constant. What am I missing Thanks. Optional Pararmeters require a constant and as a constant cannot be declared as an array you can't do this. Why not use an overloaded function - Private Sub GeData( ByVal postData As String ()) ' my work End Sub Private Sub GeData() ...Show All

  • SQL Server Strange GROUP BY Statement Output

    I am currently straching my head as to why the following doesn't work as I expect. I have Three tables UsersManagers, Users and Bookings:- SELECT MAX(UsersManagers.UsernameUser) AS UserID, SUM(Bookings.HoursTotal) AS NumHours FROM UsersManagers LEFT OUTER JOIN Users ON Users.Username = UsersManagers.UsernameUser LEFT OUTER JOIN Bookings ON Bookings.Username = Users.Username WHERE UsersManagers.UsernameManager = 'testPM1' AND (Bookings.DateOfBooking BETWEEN '01 October 2006' AND '31 October 2006') GROUP BY UsersManagers.UsernameUser This statement returns only one username with the hours they have booked in my Bookings table. However the left outer joins (I would have thought) should return an entry even if there are no hours booked for a u ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Wont install

    I have Visual Studio 2005 Standard Edition, but it says I need C# 2005 Express Edition. Do I really need 2 Visual C#'s Yes, Visual C# Express will run side by side with the standard and professional editions of Visual Studio, Microsoft has stated that and many have confirmed it including myself I run with that setup both at work and at home. ...Show All

  • SharePoint Products and Technologies Is there a DesignerType that will display a read-only text field?

    In the Sentence, I want to display an uneditable/readonly field as part of the sentence. 1. Is there a DesignerType that will display a read-only text field ...Show All

  • SQL Server Semi-additive measures and date filters

    While testing against a very small cube, we've noticed that a query in the BIDS browser that uses a date filter with semi-additive measures (either LastNonEmpty or AverageofChildren) runs very slowly or never returns at all. When the same measures are used with the same date hierarchy as rows, the query response is very fast. Any other dimension can be used in the filter without this issue. The semi-additive measures work correctly in either case. We have the lastest hotfix ( 2153) applied to Enterprise Edition. Our customer browser applications shows the same behaviour as OWC in BIDS. Anyone have any ideas on why this doesn't work See the latest hotfix at http://forums.microsoft.com/MSDN/Show ...Show All

  • Visual C++ relative paths in a deployed (msi, not clickonce) application

    hi folks - i've successfully deployed a simple unmanaged .NET-less C++ app, and during runtime this code tries to open and read a data file that was deployed along with the app. the application never finds the file, and i've tried a lot of different relative paths in the code... the file is there, correctly deployed and right where i expect it on the target machine, but the app just never finds it where it expects it. on the dev machine, i have a project folder "A" and the dir structure .../A/ all sources .../A/runtime/ folder containing the data file .../A/Release/ folder containing the application if, in the code, i provide the filename to open as "./runtime/data.dat" the app fin ...Show All

  • Visual Studio 2008 (Pre-release) Scale a Polyline - Transformation??

    Hi together, I have got a polyline object which is used for drawing a chart on a canvas object. Now I want to tranform the polyline object to fit on the canvas. So first I want to calculate the needed scaletransform object. To do this, I tried to get the width and heigth of the polyline so that I can calculate the transformation in respect to the canvas. But I alwas get "0,0" for the width and height of the polyline (RenderSize, ActualHeight, ActualWidth and so on). So my question, how can I calculate the necessary transformation when I can't get the current width or height of the polyline object Cheers, Franz What is the polyline sitting on A custom control If you render your polyline on a ...Show All

©2008 Software Development Network