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

Software Development Network >> Shinzo-Prime's Q&A profile

Shinzo-Prime

Member List

Evan Mulawski
Ritesh Tijoriwala
Hoopla
Hani Felemban
compjb
CHEN YU-TIEN
Bandile
Daikoku
James S Lapalme
SOAC
PJBM
Duncan Bayne
harmony_76
Rohit Parasharami
Marin
Sushisource
LastHope
Oren Solomon
.net sukbir
FixingTheHoleInTheOcean
Only Title

Shinzo-Prime's Q&A profile

  • Visual Studio Express Editions Timers - Reminder.

    Hi! First of all I'm just a newbie! Ok, so here is the problem! I'm making a program reminder program. For example. Like Prayer times.... I don't want the users to select the prayer time but I want want to assign it. eg. Morning Prayer : 7: 00 AM Afternoon Prayer : 3:00 PM Then for each prayer time the program should remind the user with a sound. Can someone please help me out Thanks a lot!! I really appreciate this! Let me know if you ever need any help! I got it working here is the code: private void timer1_Tick(object sender, EventArgs e) { // New instance of SoundPlayer // If the clock is 07:00:00 if (DateTime.Now.Hour == 22 && DateTime.Now.Minute == 51 ...Show All

  • Visual Studio 2008 (Pre-release) How does LINQ search collections?

    First, I'm pretty ignorant on the internals of LINQ, so I've been searching around regarding this, and not found anything so far. Since it seems for LINQ to work with a collection, all it needs is to implement IEnumerable, then I was wondering if that means LINQ uses sequential search when evaluating queries on a collection Is it possible that the concrete implementation of IQueryable can be written for each collection type to specifically exploit better search algorithms such as binary search or whatever the collection supports If yes, then I also wonder if Microsoft has actually done that for the standard collections that have better search algorithms than sequential search Obviously it is not a problem for querying against a database ...Show All

  • SQL Server SQL Mobile 3.0 (Update and Insert Question)

    Is it possible If I use insert query to insert a record, but the record is already exist, it will automatically change insert to update And I have a row: customer_name, last_update is it possible to use sql to check if the customer_name I want to update is the same as the customer_name in database, it can automatically stop the update ...Show All

  • Visual Studio Tools for Office Creating BI web application using Sharepoint and excel 2007

    Hi, I want to develop an web application using sharepoint server 2007 and excel 2007 which will generate BI reports on the server and client can drill down through those reports. Can anybody help me or guide to develop in a very short time. Thanks in advance! This forum handles only the VSTO technology, in which web applications and Sharepoint interaction do not play a central part. Questions concerning working with the Excel application model should be directed to the excel.programming newsgroup . Sharepoint is supported in a number of newsgroups in this interface: http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.sharepoint.portalserver.development&lang=en&cr=US ...Show All

  • Visual C++ Dynamic DLL loading deploy

    Hello, I use VS 2003, and I wrote a program that uses dynamic dll loading. I tried all executables to another machine where VS is not installed. The program has an error loading the dynamic dlls. Do you have any idea how I can make it work without installing VS Thanks a lot! Three THings you want to Run your Program Successfully on Anymachine 1) your Exe 2) your Dll on your target  machine and don't forget to register  your Dll on your target machine 3) and main important Just Check out from dependency walker whether your Dll depen on some Other Dlls if yes you have to use those Dll also in your Code. This come Explicitly Linking in your Dll Simply write the code to load those Dll with the help ...Show All

  • .NET Development Command Length for SqlCeCommand

    OS: Windows Mobile 5 DB: SQL Mobile 2005 Language:  C#  using VS2005 I am trying to make long INSERT statement using StringBuilder and then use ExecuteNonQuery to execute it. StringBuilder sql = new StringBuilder ( @"INSERT INTO myTable SELECT '" ); while (reader.Read()) { //Insert rows. for ( int j=0; j<reader.FieldCount; ++j ) if ( j+1 < reader.FieldCount) sql.Append( reader[j] + "','" ); else sql.Append(reader[j] + @"' UNION ALL SELECT '" ); } sql.Length-= 19; m_cmd.CommandText= sql.ToString(); m_cmd.ExecuteNonQuery(); Last statement fails if there command is "too" long. It does work if there are at most 4 rows t ...Show All

  • Visual Studio Shadow Folder Problem

    i have a problem with shadow folders. i use source safe to develop a asp.net web site in a team. i want the website to be shadow copied to inetpub to be live just in time when somebody checks in a file in visual studio. but when checking in a file in visual studio the shadow folder file is not updated iis and source safe are installed on the same machine, so i think that the impersonation is not the matter. when i open source safe admin and open shadow folder config then everything is updated, but that's not what shadow folders are for ;) the problem only occurs when checking in via visual studio integrated check in... any suggestions thanks in advance, regards, daniel Daniel, Can you try a couple of things : ...Show All

  • Software Development for Windows Vista Does anybody know where I can find source filter samples (push mode) which transmit compression data to decodec ?

    Hi I`m looking for any source filter code example (C++ visual studio) , which tramsmits compression data to decodec. my_source_filter->decodec->render I can`t find that example source code on web. If anybody know where I can find that example source code very please inform me. Thanks Tomys ...Show All

  • Windows Forms Problem adding files to deployment project.

    I am having problems adding text files (xml) to a deployment project. I check out the deployment project and try to add a file (from both the File System View and the Solution Explorer). I select the desired file from the Add File dialog and click Open. The Add File dialog closes and nothing happens. In the past I found when I observed this behavior I had to make sure the file I was trying to add was writable so I would check it out from the source control (I am using ClearCase) and I would be able to add the file. Now this doesn't seem to make a difference, no matter what I do, the Add File dialog closes and nothing happens. I have not seen any sort of error message anywhere obvious. I can add project outputs, but not files. Has anyone se ...Show All

  • .NET Development SQL Membership Provider

    Does anyone know of any UML or Modeled Explanations for how ASP.NET 2.0 uses SQL to mine the Membership Provider Data I have, of course, installed the DB and took a good look at the tables created, but there has to be some official diagrams on all of this! Todd Morrison ...Show All

  • .NET Development Visual Basic 2005 passing parameter to Oracle SQL

    Hi, I am using VS 2005, Oracle 9i, and have a question on passing a parameter to the query defined in a DataSet. All the examples I've seen use the use this syntax “ Select * From Customer Where CustomerId = @CustID” The problem I’m having is – I get an error on the @CustID. The SQL generator puts Quotes around it making it worthless. How do I do this Thanks VERY much, Carl From some ODBC programming I remember a syntax, where each parameter was just specified by a and you had to pass in parameters for such a call by adding them in the correct order. You may try that: "WHERE LASTNAME = ". Just a guess, might not work, though. -- SvenC ...Show All

  • SQL Server 2nd Post - Problem installing SQL Server 2005 Express SP2

    Hi, I started applying "SQL server Express with advanced tools SP2" and had to stop on following items which I'm not too sure about what I must understand from step "Existing components". Those three items listed were: - "SQL Server DataBase Services 9.1.2047.00" => which I can check - "Reporting Services 9.1.2047.00" => which I can check - Workstation components and development tools 9.1.2047.00 => which is simply disabled If I then look at the details of that last item, I can see the following warning: Name: Microsoft SQL Server 2005 Tools Reason: Your upgrade is blocked. For more information about upgrade support ...Show All

  • Visual Studio Strange error when adding CrystalReportViewer control

    I have the latest July CTP installed. When I tried to drag and drop a CrystalReportViewer control to my form, I got the following error messagebox:   --------------------------- Microsoft Visual Studio --------------------------- Failed to create component 'CrystalReportViewer'.  The error message follows: 'System.TypeInitializationException: The type initializer for 'CrystalDecisions.ReportSource.ReportSourceFactory' threw an exception. ---> System.TypeInitializationException: The type initializer for 'CrystalDecisions.Shared.SharedUtils' threw an exception. ---> System.TypeInitializationException: The type initializer for 'CrystalDecisions.Shared.SharedSys' threw an exception. ---> System.Configuration.ConfigurationErr ...Show All

  • Visual C# updating dataset

    Hi friends, i am writing text from c# into text file,I use following code : private void Button1_Click(object sender, System.EventArgs e) { StreamReader fp; DataSet1 ds =new DataSet1(); DataRow dr; try { fp = File.OpenText(Server.MapPath(".\\upload\\") + "test.txt"); string info = fp.ReadToEnd(); string[] arInfo = new string[4]; char[] splitter = {'|','^'}; arInfo = info.Split(splitter); for(int x = 0; x < arInfo.Length; x++) { Response.Write(arInfo[x] + "<br>"); dr = ds.Tables["Sample"].NewRow(); dr["username"] = arInfo[0]; dr["password"]=arINfo[1]; ds.Tables["Sample"].Rows.Add(dr); ds ...Show All

  • Visual Studio 2008 (Pre-release) Transform Problems

    I'm attempting to perform a transform of an image, however, I am not certain how to do this. I want to rotate a picture, however, I want to rotate it in a 3D fashion. Imagine holding a picture in your hand and rotating your hand 45 degrees or so (to give it some depth). Is there a simple transform (like rotate or skew) which will work Or so I need to do some sort of a 3D thing Any places to get sample code for this The effect you're looking for is commonly called "2.5D". WPF really doesn't support this without going to full 3D (there's no way to get the distant portion of the image to "taper off"), but various folks on the web have faked it. A quick search on the web turned up: h ...Show All

©2008 Software Development Network