Jezebel's Q&A profile
Smart Device Development password field which show password for a few second first
I would like to ask if there is any password edit field work like Nokia's symbian password field, which will show the character for several second before switch to "*". Or if there is anyway I can do this kind of edit control thanks a lot. You can use the edit control and set the 'password' property to true, but in this case whatever character typed will be show as '*'. In order to show the character for several seconds before switching to '*' you have to start a thread which will count clock ticks and upon expiry change to '*'. Well thats one way of doing it. I dunno if there is any shorter ...Show All
Windows Forms How to make a datagridview row "un-dirty"?
Hi All, I have a datagridview. When a new row is added (by user) and has data, I insert a new record into the database table. My question is how do I mard the row un-dirty so that it will not be update/insert into the table again when user leaving the datagridview Thanks in advance Call AcceptChanges on the row after insertion, or AcceptChangesDuringUpdate = true On the data adapter ...Show All
Visual Basic Missing Right and Left String Functions
I have lost my Right and Left string functions. Mid is still present, but Right and Left now refer to the distance in pixels from the edge of a control. How can I get my string functions back again Dim a As String = "now is the time" Dim b As String = Microsoft.VisualBasic.Strings.Right(a, 5) ...Show All
Windows Forms convert base64 to image
Could someone please help me on this, im about to tear my head off.... I am SIMPLY trying to convert a base64 string from an xml file to an image .... I have declared a DataSet object, called the LoadXml.. checked the size of the byte array which is the same as the origional.... ' Extract the image Dim& ...Show All
Visual Studio Team System AgentInstallation Issue
Following Agent install, the state of the agent I have to manually add to Controller via "Administer Test Controller" shows status as offline. Error message returned after trying to "Restart Rig" is "The RPC server is unavailable" However, RPC services are all running on both controller machine and agent machine. Controller machine is also VS machine. Agent is on machine 2. All are XP sp2 with firewalls disabled. Controller Install logs shows no errors. AgentConfigUtilSetupXXX.log shows: Calling AddAgent AddAgent - Could not add agent: IT3509 exception: System.Net.Sockets.SocketExcepti ...Show All
SQL Server Duplicate Dimension Members
Hi everyone, In AS 2000, some of the dimensions I was using had both the key & the name of the dimension as the same text field (dimTable.name). This grouped duplicate dimension members together. Browsing the dimension only showed unique members. In SSAS, my understanding is you need a key attribute that links to the fact table, or another reference dimension. Since the dimension I was using had an intermediate key on another dimension table, I created a key in the dimension, and used a reference dimension to link indirectly to the fact table to another dimension. Now I'm getting duplicate dimension members, si ...Show All
Visual Basic Enabling f8 (debugging) in vs2005 beta1
Hi there, I looked everywhere but i cannot seem to find a way to enable f8 to debug in vs2005. In vs2003 you could choose your profile. Can you do the same in vs2005 thanks The following link should give you what you need: http://msdn2.microsoft.com/library/hthab0h8(en-us,vs.80).aspx ...Show All
Visual Basic Blair Allen Stark
Here is the problem I am working on. It asks me to use the method CalculateCharges, but I don't fully understand how to do this or how it works. I would be grateful for any input. Lab Problem III A parking garage charges a $2.00 minimum fee to park for up to three hours. The garage charges an additional $0.50 per hour for each hour or part thereof in excess of three hours. The maximum charge for any given 24-hour period is $10.00. Assume that no car parks for longer than 24 hours at a time. Develop a console program that calculate and displays the charges for each customer who parked a car in this garage yesterday. ...Show All
Visual C++ "site code" "machine ID"
Hi, guys, Do you know how to get "site code" and "machine ID" using C or C++ language thanks a lot. I almost get that the Machine ID is created by some combinations of - The serial number of the primary harddisk - The MAC address of the network card - Perhaps serial numberof CPU (if you can retrieve that) -... Thanks anyway. ...Show All
Visual J# java.text.Bidi functionality
Hi; What .net class has the same functionality as java.text.Bidi (which I assume is not in J#) All I need is the ability to give a method a string and find where the string changes direction. thanks - dave I guess you are talking about change in direction in languages that are bi-directional. Will try to hunt out something in .NET Thanks, Sushant ...Show All
Smart Device Development "No such interface supported"
I recently received and installed Visual Studio 2005. When I create an empty Pocket Pc 2003 (or Windows Mobile 5.0) application and try to deploy it, I get a messagebox that says "No such interface supported". The actual .exe is there and I can copy it and run it on the device.. but it seems that the communication layer between visual studio and the device is broken. I get the same error if I try to deply the application to the emulator. Ive tried uninstalling and re-installing ad naseum with no success. please help! Taha Yes this helps me a LOT too! However, I do not know why it wasn't anymore for me....I suspe ...Show All
Visual C++ Candidate function(s) not accessible strange case
When trying to call a __gc class static function in an assembly which has CLR and non-CLR types in its signature, I get a Candidate function(s) not accessible error. In an assembly, using /clr:oldSyntax: TSEShared.h -------------- // TSEShared.h #pragma once #include <string> using namespace System; namespace TSEShared { public __gc class Global { public: static std::string ToCppString(System::String *); }; } TSEShared.cpp ---------------- #include "stdafx.h" #include "TSEShared.h" std::string TSEShared::Global::ToCppString(System::String * str) { if (str == 0) { return(std::string()); } System::In ...Show All
Visual Studio Team System Source check-in question
I've made changes to a project that is in team system source control. I can't seem to simply copy these changes back in. So here's my question. What is the best way to get files out of source control, work on them and put them back in if the development of these files has to be done on a seperate computer from the one where the files where checked out to If I make changes and then copy them back to the local source directory, the changes don't get picked up by source control. Am I forced to check out and work on the files locally in order to get them back in Does the other computer have network access ...Show All
Visual Studio Debugging in VC++ 2005 Express Very Slow! help!
when debugging a function which contains as a parameter a 3D Vector of vector<vector<vector<pair<int, Widget*> > > >, size is 12 by 20 by 20, the debugger is extremely slow, taking 4 to 5 seconds for each and every F10(step over) command. Also, it is agonizingly slow for Run to Cursor as well as any addition to the Watch Windows. I'm guessing this is because of the new Variable display feature and the DataTip thing, they are great, however, is it really necessary for the debugger to Parse the 3D vector every single line also is there a way so to disab ...Show All
Visual Studio Express Editions Suddenly my Form1 is HUGE!
Visual Basic 2005 Express Edition: My debugging sessions have been going fine, suddenly my Form1 is HUGE! My screen mode is still 1024x768, but, my Form1 is greatly enlarged - like it is in 800x600 mode. I don't know how that happened! I compared the Properties of my Form1 with the Properties of Form1 in a new application and they are the same! How do you mean Your buttons all got bigger Your form is bigger than the screen Does it just happen Does it happen right away There are two applications here - why ...Show All
