SQLBOY36's Q&A profile
Microsoft ISV Community Center Forums VBA in Office 12
Could anyone show some information about VBA in Office 12 Does Microsoft support VBA in Office 12 Are there have any new features or improvements Thank you in advance! I believe that Visual Studio Tools for Office will be replacing VBA in Office 12, but that Microsoft will still support VBA. Here's a few sites that may be of use: http://www.microsoft.com/office/preview/default.mspx http://msdn.microsoft.com/office/understanding/vsto/default.aspx I hope this helps! -brenda (ISV Buddy Team) ...Show All
Visual Studio Express Editions Filling remote web form fields with C#
If this sounds like a novice question, well there's a reason for that How would I fill a field on a web site's form remotely and in the simplest possible way E.G. the login fields. Assuming by remotely, you mean a window remote to your process but local to your computer (if you mean a remote computer, then this is not possible unless you had special purpose software on the remote computer). If it's a web page you control, just alter its source so that its initial field is set to the string you want. Otherwise you may need to do something more complex, like implement a browser helper object (only w ...Show All
Visual Basic Option Strict On
Can someone elaborate for me what this does in a VB.Net application, and maybe why i would need that.....thanks i appreciate it bye It disables late binding, so you have to think about problems at compile time, e.g. if you have a textbox and you want a numeric interpretation: Dim i as Integer = tb.Text This compiles with Option Strict Off. At runtime if a user enters a non numeric value your program crashes, as "abc" cannot be converted to an integer. So the advantage with Option Strict Off is less to write and a quicker result. The downside are problems like that. Option Strict On forces you to "describe" the compiler how you would l ...Show All
Visual Studio Tools for Office Word object created in suspended thread won't close...
Hi, I have a Word object wrapped in a class which is created within a threaded method. The class has a Dispose method which cleans up all the Word stuff nicely, and works perfectly 99% of the time. The problem I have is if the user quits the application when the Word object has a document open and the thread is in a suspended state, Word is not destroyed and my application just hangs (it looks like it has closed, but it is still in memory). Any ideas Thanks. Reimplemented using the AutoResetEvents, it works like a charm! I call WaitAll after the first document is opened, then Set on the d ...Show All
Visual Studio code for using pull model crystal report in vb.net window application
can u help me in making a pull model report in vb.net window application by giving the sample coding for it. Hi, I would try posting your question in a different forum. Try Visual Studio Report Controls Thanks, Brad ...Show All
Visual C# Serial Port Reset
What does it mean to "reset" the serial port You need to be more specific. Are you trying to hang up a modem, change settings, release the serial port, etc. Hi, I am using VS2005 C# Beta 2, Framework 2.0. My serial port application works fine until Windows XP SP2 Hyperterminal is used. Start from system reboot, run my appl. on Com 1, no problem. Close my appl. Launch Hyperterminal using Com1, close it. Start my appl. on Com1, it is 100% CPU utilization, and Com port not working. No choice but to close it with some Windows error. To clear up this problem, I have to restart system or just launch shareware Tera ...Show All
Visual Studio Express Editions Application goes blanc
Hi when I'm using the graphics system to draw out points on my form in a loop ( finite) , the application sometimes goes blanc. It also doesn't update some labels even when these are in a different function. Anyone had the same problem I use this sub as a delay Sub Delay() Lvoltooid.Text = CStr ((i / 100000) * 100) & "% is voltooid" PgbVoltooid.Value = PgbVoltooid.Value + 1 System.Threading.Thread.Sleep(TBTijd.Value) End Sub But the Lvoltooid.Text just doesn't update I had this same type of problem where I was trying to update a label's text value. I ini ...Show All
Visual Basic Toolbox still does not display user controls.
My project, which has 2 user controls in it- does not display the user controls in the toolbox. Has anyone else had this problem, and/or know of a solution I have tried adding other user controls to the project, they do not appear in the toolbox. I have tried creating a new project, and it's user controls DO show up in the toolbox. If I add the user controls from the first project to the new project -THEY show up in the toolbox for that project. So it must be something tweaked out with the project right Any ideas Ok, I found the solution to the problem, though not the cause, I'll leave that up to MS: Remo ...Show All
Windows Forms Prevent columns in winforms datagrid from scrolling
In Windows Forms DataGrid I don't want first two columns to scroll. Is there any why of doing this thanks What do you mean Are you saying that if there are more rows in the datagrid that can be viewed vertically and the user scrolls down, you want the first two columns to "stay" where they are and only have rest  ...Show All
Visual Studio 2008 (Pre-release) UNIDRV.Dll
i'm in a big big probelm i need to install my printer which is hp dekjest 3420 but every time i try to do so i got a wrong message that 'UNIDRV.DLL" is missing i need a fast reply or how can i download these file notice : i don't have the windows xp pack 2 CD plz reply fastly Cool WPF problem… ;-) Here you get such a UNIDRV.Dll http://www.dll-files.com/dllindex/dll-files.shtml unidrv Maybe it helps you… ...Show All
Visual Studio Team System Why wss.wssportal failed message shown while creating new project
While creating a project in Visual Studio 2005 Beta 2, Following exception was thrown. What may be the possible reason for that. 04/29/2005 07:52:54.474 | Module: WssSiteCreator | Thread: 4 | Exception: System.Net.WebException: The server committed a protocol violation. Section=ResponseHeader Detail=CR must be followed by LF at System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request) at System.Net.WebClient.UploadData(Uri address, String method, Byte[] data) at System.Net.WebClient.UploadData(String address, String method, Byte[] data) at Mic ...Show All
Visual Studio Express Editions Form Question
Is there a way to keep my main form (I only have one), set to "always on top" I think you could do that in VB6, but I can't remember. Thanks hi, its property in form properties Me .TopMost = True hope that helps ...Show All
Software Development for Windows Vista TrackingService EventOrder
Hello, I have a case where I'm instancing a workflowdefinition an then it gets idle waiting on a delay activity. If I unload it and load it again to control some conditions then the event's orders notified by the tracking service are repeating... Is this a normal situation or a bug Regards, Markus Hi Markus, The event order should not be repeated for the same workflow. It should always be increasing but may not be continuous (since the service might not track some events). Can you give more details on your workflow Are you using your own tracking service or the sql track ...Show All
.NET Development Problems with XML serializer in .NET 2.0
Hi, A few weeks ago, I upgraded an XML server of ours to .NET 2.0. All went fine. Then a few days ago we noticed that server was deserializing one of our XML messages incorrectly in its release build although it continued to work fine in a debug build. I confirmed via source control that neither the schemas themselves nor the classes representing the messages had been altered but the problem continued. I took this as an opportunity to change the serializer to use an XmlSchemaSet rather than an XmlSchemaCollection but the problem persisted and now also occurred in debug build as well as an error mentioning an illegal path value although I c ...Show All
Smart Device Development HELP ON GPRS AND SOCKETS
Hi there, I am recieveing an error when connected to GPRS it says.. "An error message cannot be displayed because an optional resource assembly containing it cannot be found" at System.Net.Sockets.Socket.ConnectNoCheck() at System.Net.Sockets.Socket.Connect() at System.Net.Sockets.TCPClient.Connect() at System.Net.Sockets.TCPClient.Connect() at System.Net.Sockets.TCPClient..ctor() at SocketTest.Form1..ctor() at SocketTest.Program.Main() I have CNF2.0 installed and windows mobile 5.0 SDK as this device runs windows mobile 5.0, i did install the relevent CAB file "System_SR_ENU_wm.cab" But t ...Show All
