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

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

MichaelMouer

Member List

Adi Kremer
shippers06
Sami Karaeen
Eric Harmon
mobigital
robinjam
customization
Blader
ROSE3000
Ruddles
AussieNoobie
aztec2_step
Victor BA
Tejas34
AngelOfPirate
Nickolai
Bob Emerson
Eric Kinateder
TheAgent
Chizum
Only Title

MichaelMouer's Q&A profile

  • .NET Development Calendar, Date and Time

    I have to create a chat project. I am working on chat admin page. I have to be able to let the user use the calendar to select the date from the calendar and also user will select the time to schedule a chat. This is quiet similar to the outlook calendar scheduling. with the start time and end time. How would i do this. Also how would i populate the time in the drop down list box with am and pm Is this something that i have to have the data in the database This is my first time. Could somebody please guide me through this I would sincerely appreciate your help. Thanks Where can i find this control I am using visual studio 2003. It is for web application. Also if you can show me or send me some ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. New Community Tutorial and Sample

    We added two new community items today. The first is a tutorial that covers creating the game pong from the ground up. This tutorial was created by David Bailey.   http://www.xnaspot.com/Tutorial_Pong.aspx   The other is sample that shows how to use shaders in XNA. The sample was created by Phillip Quantrill.   http://www.xnaspot.com/Sample_ShaderExample.aspx   If you have any samples, games, tutorials, screen shots, or comments that you would like to share please send them to Submit@XNASpot.com . ...Show All

  • SQL Server convert date issue in view

    i have created a view to a table (90,000+ records) that i want to use to filter the table by the current year and month. the code looks like this: CREATE VIEW [billy.bhuj].[bo current month] AS SELECT [dbo].[bo].[recnum], [dbo].[bo].[queue], [dbo].[bo].[queue_name], [dbo].[bo].[node], [dbo].[bo].[interval], [dbo].[bo].[tot_calls], [dbo].[bo].[calls_less_20_sec], [dbo].[bo].[calls_more_20_sec], [dbo].[bo].[calls_abandon], [dbo].[bo].[abandon_before_20_sec], [dbo].[bo].[abandon_after_20_sec], [dbo].[bo].[queue_date], month (convert (datetime,[dbo].[bo].[queue_date], 103)) as QDate, year (convert (datetime,[dbo].[bo].[queue_date], 103)) as QDate1, convert (datetime,[dbo].[bo].[queue_date], 103) as QDate2, year (convert (datetime,(getdate()) ...Show All

  • SQL Server VB 6.0 with SQL Everywhere ??

    Can anyone help me by telling whether SQL Everywhere can be used with Visual Basic 6.0 This is urgent.Plz write me to : ayan.gupta@yahoo.com Ayan You are right lysy. we dont officially support ADO with SQL Server Everywhere. The sample code was given just to unblock. Going forward, I would advise you to move towards ADO.Net or OleDB stack. These two would be the officially supported data providers for SQL Server Everywhere. -Vels ...Show All

  • Software Development for Windows Vista DEP

    I am getting following error while installing an application developed in .net framework 1.1 on Vista Data Execution Prevention closed windows installer. First, see if a DEP-compatible version of the program is available by visiting the software publisher's website. If the publisher has not released an updated, DEP-compatible version of the program, you can turn off DEP for the program that was closed. You will be able to use the program, but it might be vulnerable to an attack that could spread to your other programs and files. What changes i need to made to installer to rectify the error Regards Ajay We are getting reports of Vista DEP errors from the installation of a package generated by Visual Stud ...Show All

  • SQL Server Questions to the Microsoft guys about the custom assembly

    Hi Guys, I created a custom assemy and added a reference to it in my report, but when I built the report, it told me that the system could not find the file. I followed the steps in the MSDN when I did the above steps. Can anybody tell me why Another question is about the location of the assmbly that I should copy. In the Debugging Custom Assemblie chapter on MSDN, it tells to copy my assembly to C:\Program Files\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE. But in Deploying a Custom Assembly chapter, it tells me to copy it to C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies. Can Microsoft guys tell me which is correct Thanks in advance. Danny     ...Show All

  • Visual Basic Reading a textfile into a listbox

    Using VisualBasic 2005, I am trying to save the items of a list box into a textfile so that the next time I load the form, I can read the items from the textfile back into the list box. My code, as shown below, gives me no errors, but the only thing that shows up in the listbox is “System.Windows.Forms.Listbox+ObjectCollection” I have spent hours researching and trying other methods, but this code is the closest I have come to being successful. I will appreciate any help or insight that someone can offer. Private Sub SaveChanges_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveChanges.Click Dim FileToWrite As System.IO.StreamWriter Dim indexnumber As Integer ...Show All

  • SQL Server Named Calculations for measures with formula

    Hi, The details of background are avaliable in this prev post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=550862&SiteID=1 After edward melomed's advice I tried to create a named calculation for the respective Fact table. The problem is, let us say I have a two measures M1 and M2 in a cube. Now I want a named calculation say 'NM3' , that contains the formula M1 + M2. So I write the following SQL in the named calculation: (select M1 + M2 from fact table) although the query is right, while processing I get the error that the query returns multiple values. So now how do I specify the current row or how do I specify something similar to a cursor I know that I can achieve this using calculated measures instea ...Show All

  • Windows Forms Scroll Wheel Problem

    I have a form with a panel. The panel is filled with controls at run-time. The panel's scroll bars appear properly when the panel height exceeds form height. Scrolling the scroll wheel does not move the scroll bars - the scroll symbol appears appears at the cursor for up/down scroll. Opening another form and closing somehow makes the scroll wheel work properly. Any ideas on how to fix this Hi, May be the focus is not being set properly on this form. Or some other control is getting focus in the meantime. Did you try setting the focus back on to the form and tried it Thank you, Bhanu. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Animating Sprites

    Maybe not the best place to ask but I found some good sprites that I wan to play around with but they come in like 100 bitmaps for walking animation. What's the best way to handle this, import each bitmap as a texture and do some code to figure out when to show what texture Found this http://www.c-unit.com/tutorials/mdirectx/ t=46 but that's in one texture, how can I do it if I have a lot of bitmaps Typically it will always be better practice to load "sheets" of sprites as single textures rather than loading dozens of individual textures for single frames of animation. A much more effective way to deal with sprites is to be smart about using the source rectangle in calls to SpriteBatch.Draw(). ...Show All

  • Visual C# #ziplib and rar files

    Does anyone know if #ziplib does not work with RAR files Ive been using it with zip files, but AFAIK it does not work with RAR files...if so, what would be a good option for RAR files extraction Why dont you see its documentation or just give it a try I think that's better than posting a question of forums and then waiting a couple of hours for a reply. On the other hend a self test can done in hardly 5 minutes! Best Regards, Rizwan ...Show All

  • Visual Studio Team System Problems when moving from Beta3 refresh to RTM version

    Hi all, I've now worked with the source control part for quite a while in the Beta 3 refresh version of TFS. Now we're upgrading to a released version and want to restore our work on new HW. Both the Beta installation and the new released version are single-server installations that belongs to the same domain. I've followed the instructions 'How to: Move Your TFS from one HW configuration to another'. Here's the link: http://msdn2.microsoft.com/en-us/library/ms404869.aspx 1. The first problem I get into is when I move the service accounts using command: tfsadminutil ChangeAccount domain\tfsservice domain\tfsservice I'll get messages that changes were made to application pools 'TFS AppPool', 'TFSWSS' and 'TFSWSSADMIN', b ...Show All

  • Visual Studio Team System DataGenertionPlans

    Hi, I imported the NorthWindSchema into a SQL Server 2005 database project. Then I created a datagenerationplan and kept all the defaults. I setup my Project Properties->Build>Target NorthWindOnline and connection to SQL Serve Express. When I go into the properties window of the DGP and try to change the Build Action from "Not in Build" to "Build" I get the following error: "Unable to find valid scheam object identifier in the file. Check the syntax of the DDL statement or make sure the file is not empty." Any thougths on what I might be doing wrong Thank you. Randy You've hit a bug in the product, which I'll log immediately. The 'build' option should not be available for the .dg ...Show All

  • Windows Forms Including Child Forms

    I have created a main form (MainForm.h) and a form to be used as a search modal dialog box (FindForm.h) in the design editor. The problem is that I can either include FindForm in MainForm.h or include MainForm.h in FindForm.h, but not both. Example: -in MainForm.h #include FindForm.h //OK -in FindForm.h #include MainForm.h //Now members of FindForm cannot be found in MainForm Any help appreciated. Thanks for that. One more thing, though. Is there a way to get Forms Designer to automatically put the definitions into a .cpp file RIght now it just creates everything in a .h file. I took a look in Options, but couldn't find a way to change it. Is it neccessay to cut and paste the definiti ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Shader states, etc? (HLSL effects not working right)

    I'd like to call upon all the shader gurus here for some help :) I've been experimenting with writing some of my own effects, meaning I'm a HLSL newbie, and have been using NVIDIA's FX Composer to do my work. After producing a cool (albeit simple) effect, I decided to try using it in my little model viewer. The problem is that the way it shows up through XNA is different than the way it shows up in FX Composer, and I can't figure out why. You can find the code to my effect here: http://www.hiranipra.com/data/help_attach/gb1_shader.txt - it's just fairly simple environment mapping-ish stuff. A screenshot of what it looks like in FX Composer: http://www.hiranipra.com/data/help_attach/FxComposer1.jpg - it's hard to tell, but the ...Show All

©2008 Software Development Network