Bigcheesegs's Q&A profile
Visual Studio Express Editions Back Button?
Can I have a Code example for a back button in a web browser. Also a progress bar. <a href="#" onClick="history.go(-1)">Back</a> That's a back button. A progress bar is more complex, because your page needs to update itself to show progress. What do you want to report progress on ...Show All
Visual Basic Searching in a listview
Hi Is it possible to searc in a listview for a value The first column in my listview contains numbers and before the user can add an item to a listview, i would like to check and see if it is already there. the number in the first column is an index and it should only search this column. Is this possible Hi there, If you want to search the first column of the ListView then I've placed an example below. Have a go and see if it meets your requirements. NB ListView1 is the name of my control). Also, if you want to search other columns, you have to change the index I use when I reference the SubIte ...Show All
Visual Studio Express Editions View Network Shares
My network admin asked if I could develop an app that could view all the network shares like net view. He would just like a GUI of course. Does anyone know where I can find some code on how to build this I'm an internet developer and have not programmed a windows app in a few years. I just need a kick in the right direction. Thnx in advance! Took a while - shares from single computer only. However, take a look at: http://killervb.com/WNetResource.aspx That's all I got. Good luck. ...Show All
Software Development for Windows Vista DelayActivity with presistance
hello, I've a delay activity that fire every 3 seconds but the problem is once the workflow goes idle i presist it and then nothing happend and the timer is gone is there's any solution for this problem specially that i always read that the timertrackingservice within the workflow run out of the box Regards, Tamer You can set the loading interval on the SQL persistence service to indicate how often it should check for expired timers. The default is two minutes, so you will be waiting for a little while. You can set this property directly on the persistence service or pass it as a parameter to the c ...Show All
Windows Forms Add item and execute a command using popup menu winodws explorer?
How I can add a item to windows explorer's pop-up menu (Like WinZip, VirusCan, ...) (Using a C# .net, or VB.net) Thanks! Felipe GC, Brazil! Hi Felipe, This is (unfortunately) the wrong forum for that question. You might want to do some searching on www.msdn.com . Martin ...Show All
Software Development for Windows Vista Correlation/dehydration etc
Hello all, This may be a stupid question but I'm new to WWF and trying to get a handle on how it works. I'm having trouble understanding correlation. My understanding is that it allows workflows to be dehydrated, then upon a specific event rehydrated and the correlation is used to determine where in the workflow to start I'm probably a little off. I am just trying to understand how workflow instances can be offloaded then reloaded in their previous state and knowing what activity to start at. Any info or links would be greatly appreciated. Thanks in advance, Pete Hey Steve, Thanks very ...Show All
.NET Development SOAP Exception, xml key problem
Hi Guys, I am running a remoting service written in C#.NET and it is in production. It is all working good but one of the functions throws a parse error: Scenario: ItemInfo[] itemInfo = new ItemInfo[1]; Function to call remotly: ItemInfo[] DescribeItems(...., .....); Actual call: itemInfo = remoteObject.DescribeItems(..., ...); Caught SOAP exception: Parse Error, no assembly associated with Xml key a1:http://schemas.microsoft.com/clr/nsassem/iPACSAPI/IIntegration%2C%20Version%3D1.0 .1954.34178%2C%20Culture%3Dneutral%2C%20PublicKeyToken%3Dnull ItemInfo Where ItemInfo is a class which is described in the client as: [S ...Show All
SQL Server Execute DTS 2000 Task - silly question...
I must be missing something very simple here but how do you set an inner variable with a value stored in an outer variable, or any other variable I've tried various syntaxes used elsewhere to refer to variables without any success, and the help topics have been less than useful for this task. Thanks, John ...Show All
Visual Studio crystal report in vb.net problem when converting project from .net 2003 to .net 2005
I developed an application using vb.net 2003, which contains crystal report, in the code, i gave the parameter values, so that when "report" button is clicked, the report automatically displays itself with given parameter values. however, i opened this application within vb.net 2005, and converted it into a .net 2005 project, after all this, when i run the applicaiton, and click on "report" button, it started asking values for all the parameters, why plz help here is the code: ( blue-colored area is most likely causing the problem, i checked the outputs of sqlcommands, all fine, seems that somehow the sqlcommands output values are not ...Show All
Visual C# native struct --> C#
Hello. I have a C# application and a native dll written in C++. I have a function called ReadHash() in native dll. I need this function to return an array of bytes. I made a struct called HashRecord in C# and C++. it looks like this typedef struct tag_Hash_Record { BYTE HashCode[]; } HashRecord, *PHashRecord; and public struct HashRecord { public byte [] HashCodes; } the ReadHash() function returns HashRecord structure. but when i call this function from c# app, I get a MarshalDirectiveException sayng "Method's type signature is not PInvoke compatible.". anyone knows how to fix this proble ...Show All
Visual Studio Trap Errors from SS label command line calls
We use Command line batch files to do automated builds. We have seen several issues lately where there is an error while running the SS Label command. Is there a way to check the errorlevel returned from the ss label command and cause the build to fail if the label is not applied. Here is a recent example: SS label $/A/B -l6.3.1209 -i- Comment for $/A/B: PCS_NEWDEV_V6 File \\server\share\data\v\vodaaaaa is already open We do have an "If errorlevel 1 goto failed" after the ss label command, but this is not working. Thanks I was able to resolve this by creating a batch file to do the following after running the ss label comma ...Show All
Software Development for Windows Vista TransactionInDoubtException
Source: System.Transactions.TransactionInDoubtException: mscorlib Text: The transaction is in doubt I'm getting the following error is a very specific circumstance and I don't understand why. I've got a single unavoidably long running transaction (~90mins) that I run from a .net component against a SQL Server 2000 database. If I invoke my component from MMC.exe (COM based root) I'll often (eventually) get the above error message. However, if I invoke the component from a .net based root application it always seems to run without a problem. Any ideas Hi, Is it possible to tell us, after how long do you get the ...Show All
Game Technologies: DirectX, XNA, XACT, etc. multiple monitors support
hi guys, i have some doubt on multiple monior support in direct3d. how can i display a window on each monitor and render mutiple camera angles any ideas or any code snippers or welcome You can create for every display a device and replicate all textures, vertex buffer, etc on both. If you do this you should first enumerate the monitor handles for all adapters in your system. GetAdapterCount give you the numbers of adapters in your system. There is at least one for every monitor. With GetAdapterMonitor you can get the handles. After you have created the Window on the right display you can use t ...Show All
Windows Forms Checkbox on Datetimepicker receives focus when im trying to input numeric dates
i have a Datetimepicker with checkbox on it. The showCheckbox property is set to true. The format is "MM/dd/yyyy". example : 04/02/2006.. After inputting the month, or the day, or the year, the checkbox always receives the focus.. and i need to point the mouse to the next input field to be able to input the next. It is obviously a bug but is there any workaround to this ...Show All
Visual Studio Team System Team Build Failure (test execution) with IBM.Data.DB2
I am in the process of testing the Team Build feature of Team Foundation Server w/Visual Studio 2005 and am continuing to run into an error that cannot be replicated when running a build/test manually (on either the server or any client). The error I get when executing the MSBuild process is: One of the background threads threw exception: System.TypeInitializationException: The type initializer for 'IBM.Data.DB2.DB2Connection' threw an exception. ---> System.DllNotFoundException: Unable to load DLL 'db2app.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) warning : at IBM.Data.DB2.v.nmpTraceOn() warning : ...Show All
