Bissy's Q&A profile
Visual C# Creating a Process and passing in a string?
Hello, I am trying to use our 3rd party fax software FaxPress. It requires this line of text to be called during a command line. Our old VB 6 app is doing this but using a shell command. I was told this could be done using the Process class in C#. Here is what I have: /// <summary> /// Faxes attachments to destination /// </summary> /// <param name="output">Output directory for FaxP ...Show All
Windows Forms bind 4 string arrays as columns to a datagrid
Hi, I have 4 string arrays and one datagrid, how can I set each string array as a column of one datagrid How can I control the order of columns, so that I want str1 to be dispayed first, then str2 str3 and str4 in the end. Tha ...Show All
Visual C# Adding link buttons to a Browser menu strip.
I am very new to c# and am working on my first real program. A web Browser. I have everything done but now I want to add some buttons to the menue strip that I can click and go to a specified web page. I know how to add the buttons to the form and then click them to get the click event. But what do I add for code to make them open the web url in the browser. private void fRTHomePageToolStripMenuItem_Click( object sender, EventArgs ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DirectX Extensions for Alias Maya 7
When will the export X for maya 7 be released Or is there a way to convert 6 binary or 6.5 binary too work with 7 This is what we're saying, it doesn't work. It compiles, sure, but it also crashes like crazy and can never export a .x file. And yes, I updated the paths. What is MS doing about this Anyone know Or do they just continue to ignore their users ...Show All
Visual Studio 2008 (Pre-release) try rebooting...
Beta Page http://msdn.microsoft.com/windowsvista/getthebeta/default.aspx WinFX Components - Dec CTP http://www.microsoft.com/downloads/details.aspx familyid=BD3BA2D5-6ADB-4FB2-A3AA-E16A9EA5603F&displaylang=en Windows SDK - Dec CTP http://www.microsoft.com/downloads/info.aspx na=46&p=1&SrcDisplayLang=en&SrcCategoryId=&SrcFamilyId=2297BDC9-B5AE-4B8A-B601-EEF54A52867A&u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2f0% ...Show All
Visual Basic Reading characters from a line
I was wondering (DESPERATELY) how to read only certain characters from a line of text and how to define where the code will start reading and how far into the line the code will read. and lastly - is it possible to store these specified characters in a variable I've been messing around with "Mid()" but its not doing exactly what I need it to. THANX Mid is going to strip your string, but y ...Show All
Software Development for Windows Vista SQL Persistence, Loading Workflows and Workflow Properties
I have a workflow that has a bunch of properties on it. One of those properties is the name of the user that initiated the workflow (it is passed into the workflow via the Dictionary<string, object> class. I have SQL persistence working just fine (well, I can't figure out how to 'auto persist', so I am manually calling 'Unload' when the workflow idles), and I run through the list of workflow IDs persisted when my application starts up. ...Show All
Visual Studio ProjectNode.BuildLogger
I created a basic Logger: class XgenLogger : Logger { public override void Initialize( IEventSource eventSource) { eventSource.BuildFinished += new BuildFinishedEventHandler (Xgen_BuildFinished); eventSource.ProjectFinished += new ProjectFinishedEventHandler (Xgen_ProjectFinishedBuilding); } private void Xgen_BuildFinished( object sender, BuildFinishedEventArgs buildEvent) { MessageBox .Sh ...Show All
Smart Device Development WM5 on ipaq: Widcomm vs MS BT stack
Greetings, I'm developing a BT application with VC++, but it turns out that the ipaq hx2795 that's my target is using the Widcomm stack, not the MS stack. I found this out when the MS SDK BT sample code didn't run so good. :^) 1) Can I replace the Widcomm stack with the MS stack Where do I get the stack 2) I know I can write code using virtual com ports, but my app needs to initiate and close down the connections. My understanding is th ...Show All
Windows Forms How do I force controls to repaint during a loop
Can anyone tell me how I make sure controls are repainted during a loop I'm trying to slide a groupBox outside the window like this (and back in again later on): while ( groupBox1.Left < 800 ) groupBox1.Left++; I need to make sure all contained are repainted in each loop, to make the animation look smooth. OR - is there a better way to do this Thanks for your help, Mikael And a nice long delay so you can actually see it m ...Show All
SQL Server help with a scalare function
i wrote a scalare function- select name,id from tableName where function1(id) / function2(id)>100 but sometimes function2 returns zero so im getting a divide by zero exception. how can i solve this problem thanks in advanced. It depends on what do you want for output if function2 returns 0... Here's one way to handle it (return nothing): selec ...Show All
Smart Device Development WaitCursor not being displayed
We recently ported a mobile application to .NET Compact Framework 2.0, and we're seeing a case where we set a WaitCursor, but it is not getting displayed. It was being displayed with .NET CF 1.0. The WaitCursor is set from the event handler for a button click, which starts a relatively long "Save" operation. The call stack at the point where we set the WaitCursor is shown below. Notable is the fact that once condensed, the call sta ...Show All
Visual J# Wndproc in j# and mouse scroll event
He, i was working with j#. I could not override WndProc. How in that case to realize processing event mouse scroll in J# Hi, Please refer your other post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=124588&SiteID=1 on the same topic. Thanks. ...Show All
Visual Studio Team System Changing Drop Location in team build
Hi, We have developers at two different sites. Is it possible to have a single team build type that we can run on build machines at each site using a drop location local to the site Dean Yes, you are right. In Beta 3 we were redundantly passing the DropLocation. We fixed this sometime after Beta 3 and since I tried on my dev box which has latest build installed, it worked. Sorry about it ...Show All
Visual C++ Linking problem with WinSock2?
F:\PSDK\Include\WinSock2.h(112) : error C2011: 'fd_set' : 'struct' type redefinition F:\PSDK\Include\winsock.h(54) : see declaration of 'fd_set' F:\PSDK\Include\WinSock2.h(147) : warning C4005: 'FD_SET' : macro redefinition F:\PSDK\Include\winsock.h(88) : see previous definition of 'FD_SET' F:\PSDK\Include\WinSock2.h(156) : error C2011: 'timeval' : 'struct' type redefinition F:\PSDK\Include\winsock.h(97) : see declaration of 'timeval ...Show All
