kaimerachin's Q&A profile
Visual Studio Team System Custom DateTime Control
i have one custom datetime control like this < Control Type = " DateTimeControl " FieldName = "Custom .StartDate " Label = " Start date " LabelPosition = " Left " /> which is displaying with one checkbox inside the date control. Also i am facing the problem like when you click the date time control it is displaying date picker and once you click any of the date it is populating the exact date in the control but the next time when you click another date it is not updating the date also you have to press enter key to come out of the control or you have to do click outside to do the same. Regards, Kathir hey i noticed that when i am usin ...Show All
SQL Server sql job
I need to create a job that running once per sec (around the clock)...checking/update status tables. Can I do this inside sql 2000 server other than using external means(e.g. NT Service) Thanks all! Sorry I checked but we have only minutes and hours in the @freq_subday_type 0X1(Time specified) 0X4(Minutes) 0X8(Hours) I am also thinking how it can be done.Let me know if u get anything. ...Show All
Software Development for Windows Vista Office 2003 Applications asks to Accept/Decline License-Agreement on EVERY Startup on Vista. Why ?
Hello I have installed Office 2003 Professional (ENU) on Vista Home Basic (DEU). So far, Word Excel etc. work fine ... but they ask me on EVERY Startup of ANY of those Programs to Confirme or Decline the License-Agreement (which is shown in a Dialog Box). As I have Registered, Activated and Accepted what I was asked for - I cannot understand why the same Question about License Agreement comes again and again. Has anybody an Idea what I can do simmons Damian W wrote: I had the same issue with Vista Business, but after getting used to how Vista 'protects' me, it became obvious what was wrong. Try going to your Program Files directory and finding any of the Office executables (wor ...Show All
Visual C++ missing .lib files for x86 in Platform SDK where do I get them?
I have installed "Microsoft R Windows ServerR 2003 R2 Platform SDK Web Install" and Visual Studio 2005 Express Edition and my programming seemed to work fine (Visual C++) until I needed to include fstream.h witch includes iostream.h, but now I cant compile because of some missing .lib files wich I find in the \lib\AMD64\ folder and \lib\IA64\ but they dont work on an x86, then I read on the install page for the Platform SDK that x84 compiler is not included I guess that is the reason for my problem, but where do I find my .lib files for x86 then otherwise, can I work around this problem somehow, I need to read ASCII numbers data from a .txt file. Can I do this without my .h files I cant compile with ...Show All
Software Development for Windows Vista Instance-wide Event-Listener - Not container of other Activities
Is it possible to have an Instance-wide Event-Listener Activity capable of handling external events I want such Instance-wide Event-Listener NOT to contain any of workflow child activities (to avoid Spawned Contexts issues that I still do not know how to avoid). In other words, can WF support something like, the First Activity in the WF is ListenForExternalEvents (keep the Listner ON) and move on with the execution of other activities. If an event occurs the Listener get the control-back at hand and does something (like dynamic update of the WF instance) and then the WF execution can continue. The scenario I want to support is, if I have a long running WF and I want to have a Listener for CustomerCancel Event to be able to cancel so ...Show All
Visual Basic Visual Studio Is Busy?
Pentium IV - Northwood 3.5 Ghz - I Gb of Ram. XP SP2 .. all current patches applied. VS2005 RTM Team Suite On occasion while debugging the IDE becomes nonresponsive and I receive a Bubble message informing me that "Visual Studio is busy waiting for an internal operation to complete - If you receive this message often, please inform Micorosoft" After I receive this message the IDE never recovers. All I can do is to delete the process and restart it. Any idea what's occurring Aleksy.... It's been a week. I'm working on another piece of code. Also know that although I know where this has occurred, the project is reasonanly large, like on the order of 8000 lines. As soon as I complete the current pi ...Show All
Visual Studio Team System Another schema compare problem
I am facing a strange problem with schema comparison. Here is what i am doing. I have Imported schema to my db project. After I imported the schema objects, the database got a lot of changes. I wanted to run a schema compare again and identify the changes done after I imported the schema objects. When I run the schema compare, to my surprise, the comparison results shows certain tables and stored procedures with a "create" action, even though those objects exist in my db project. I could see those files in the solution explorer. But the schema comparison results still show them with a "create" action, indicating that i need to create them. I clicked button to "write" changes to my project. After i ref ...Show All
SQL Server Limitation of # cubes inside a base Analysis Services
Does anyone have any idea which is the limitation of # cubes inside a base Analysis Services, because I created 50 cubes, and when I tried to connect to the base, i was enable to do that because the CPU was at 100 %. I think that is a problem when analysis services tried to read the xmla and print all the cubes. Tks Thanks, is very useful, but i have another question if i don't bother you. I have a data warehouse with 50 mil. dates. And i have 6 measures group with relations many 2 many. When i query the cube, first is very slow( and i design aggregations for all the measures), and second (I have proactive caching setup), when i want to modify some data from the tables of proactive caching , the pro ...Show All
Windows Search Technologies New mail notifications in subfolders
I don't get "New mail notifications" in my Inbox subfolders. I only get them when I receive mail in my Inbox. I never had this issue while using MS outlook 2000. Can anyone please help me with this I'm currently running MS Office Outlook 2003. Thanks! Eric Hello ipcs, This forum is for questions specifically regarding Windows Desktop Search. I would suggest you post your question in an Outlook newsgroup such as this: http://www.microsoft.com/technet/community/newsgroups/dgbrowser/en-us/default.mspx dg=microsoft.public.outlook.general Paul Nystrom - MSFT ...Show All
SQL Server Debug is greyed out?
I know there's a trick to this, that I can't figure out. Have an SSIS package that I developed and deployed/saved( ) to a file on the SSIS server. Now I need to change the data flows. Did that, no issues, lets me resave the file, but I can't debug or execute the package so I can test what I did is right Why is the debug drop down box greyed out There's gotta be something I'm missing here. THanks, Lezza Ahhh. Yes I was going straight into the 'recent' file instead of into the project. I have now unravelled the twisted knickers & my project & packages are once again showing me the love ...Show All
Software Development for Windows Vista Smartcard based authentication with CardSpace
When choosing to use Smartcard based authentication with CardSpace, how does the transmission from the certificate between the smartcard reader and the STS takes place The Information Card specifies the thumbprint of the certificate to look for, but what is the exact technical background; does it just searches your computer's Certificates store and all smartcard drives for that certificate, and then sends it towards the STS Would like to know more about it, since nothing specifically seems to be documented about this feature Veugelenw: if the "smartcard middleware" has the UI in a CSP, then CardSpace will show it accordingly. I've done demoes in which managed cards backed b ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Move a point by sin
I'm wanting to move a point up and down smoothly. One of my friends suggested that I move it using sin but I haven't a clue how to do this. My maths is a little rusty. Can anyone help Find the center point and extent: Center = (PointA + PointB) * 0.5f; Extent = PointB - Center; Initialize a time state: float sinTime_ = 0; Then, each frame, evolve your time state: sinTime_ += SPEED * dt; while (sinTime_ > 2 * (float)Math.Pi) sinTime_ -= 2 * (float)Math.Pi; When you render, use these variables to find the position of the point: RenderedPosition = Center + Extent * sin(sinTime_); ...Show All
Visual Studio Subreport could not be shown" when trying to view the report using ReportViewer.
Hi, This is an urgent query. Appriciate early response. I am new to ASP.NET. I am getting the error "Error: Subreport could not be shown" when trying to view the report using ReportViewer. I have been trying to figure out this for the past 2 days but in vain. I ahve tried all the possible solutions from the net but no success. The code sample :- ReportViewer.aspx <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="ReportViewer.aspx.cs" Inherits="ReportViewer" Title="Client Service Database - Futures" %> <%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken ...Show All
.NET Development Connecting to Access Database
Does anyone know how to connect to a access database using vb.net I created the database in access and added the Odbcdataadapter and was able to preview the contents of the database. I have a text box with a next button and a new button. Each time I click next i want to see the names that i have in the database appear. When i click new i want to be able to enter a new name in the textbox and it gets written to the database i already have with the names. Any thoughts Thanks!! OK, I am not quite understanding all this. What all that just did was place a datagrid on my form and display a table from my database. What i want is: I have a button that says next and a textbox. When i click next i want the inform ...Show All
Software Development for Windows Vista Allowing multiple issuers
Is it possible to request multiple issuers In other words, I allow CardSpace to choose any card from a set of known issuers I accept cards issued by Bank A, Bank B and Government C Cheers Matt This isn't supported in the current version, but we're looking at this possibility for our next major release. //Toland ...Show All
