Software Development Network Logo
  • Visual Basic
  • Windows Forms
  • VS Team System
  • .NET Development
  • Microsoft ISV
  • Windows Vista
  • Visual FoxPro
  • Visual C#
  • Game Technologies
  • Audio and Video
  • SQL Server
  • Smart Devicet
  • Visual C++
  • IE Development
  • SharePoint Products

Software Development Network >> I.HJ's Q&A profile

I.HJ

Member List

Wanderermy
sammy chen
TheMaj0r
RickN
Stuart Robinson
NuclearChicken
R.X.
Luke1981
d72e4d
Sadie381943
Cappy Popp
su45937
Naftis
Kendal
Wee Bubba
ivanchain
Vivek Natani
Dhondtie
Poolius
Andrew Buyan
Only Title

I.HJ's Q&A profile

  • Visual C++ Startup ASSERT Problem

    When Windows starts to load I get a Debug Error with a message to see Visual C++ documentation on Asserts. The error line reads: C:\WORK\nc2_20020220\cyir\naturalcolor\systemtray.cpp Line:124 ("Naturalcolor" is a program that came with my Samsung SyncMaster 930b monitor). When this happens Windows stops loading the other programs in my systems tray. Sometimes I have to reboot several times before Windows loads correctly and all the correct icons display in the systems tray. I know nothing of Visual C++ and only have a very basic knowledge of computers. Is there any way of fixing this problems Thank you for your help. MacKenrick Windows XP SP2, with current updates PS: This is occurring on a newly built comput ...Show All

  • SQL Server access problem

    Hi, The Report Server and the server hosting web application are differrent. I have an aspx page with the reportviewer control. If I try to open the page with the report control its giving me a message privilages for the user 'domain/server$' are insufficient for performing this operation ". where the 'server$' is the IIS server hosting webapplication. Please help me in solving this ...Show All

  • Visual Studio Express Editions print the text in the rich text box

    Hi, Can any body tell me the complete procedure of printing the text in a richtextbox....   Please dont post a code snippet...  Iam really  about printing in C#... help me out... Regards Manoj B Try this link for a step-by-step procedure: http://support.microsoft.com/kb/812425 ...Show All

  • Visual Studio Express Editions copy forms between versions of Visual Express

    Summary: Can we copy forms between versions of Visual Express If someone has a real nice set of forms in Visual Basic Express and I want to use the same basic forms in C#, and I don't want to manually enter all the buttons and boxes and labels and positions, etc, is there a way to import the form into C#. I don't expect to get to be able to use the code, but getting the buttons would be nice. I strongly suspect that the core engines that drive all the Visual Express products are the same, only the syntax and grammar rules differ for the languages. If so, the conversion should be simple. That seems to work. I opened up the for design window in C#, selected all with ctl-A, then pasted into a form design window in Basic and it co ...Show All

  • Visual Basic Vb.net Crystal Reports graph legend

    Hi, I'm using vb.net code to open and populate a crystal report but having problems trying to rename the legend values on the graph. Has anyone figured out how to change these values in code. I'm using VB.NET 2003 and crystal Reports 11. I can change a fields settings by declaring an IGraphObject class from the craxdrt11.dll using ***************************** dim crChart as IGraphObject crChart = Craxdrt11.Report.Sections("ChartSection").ReportObjects("CHART") For i as integer = 1 To crChart.SummaryFields.Count crChart.SummaryFields(i) 'but i cannot find any properties within the summayfields to change the legend values next ***************************** I have figured out that I can read the name with crChart.SummaryFields(1).Summari ...Show All

  • Windows Forms errorprovider

    Hi, how to clear error provider from all the ctrls . instead of referring all the ctrls is it possible to do in few statements. because i've around 15 ctrls. thanks venp-- Don't use Dispose(), you'll bomb when you try to use the ErrorProvider again. You'd almost always have just one ErrorProvider per form providing errors for all the controls on your form. This ought to do the trick: errorProvider1.Clear(); ...Show All

  • Visual Studio Express Editions Embedding Video

    How can I play a video file from a path in my visual basic form Public Class Form1 ' Add a media player and an OpenFileDialog ' and 2 buttons to your form Private Sub Button1_Click( ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles Button1.Click ' for a file existing on your disk OpenFileDialog1.Filter = "WMV files (*.WMV)|*.WMV" If OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then AxWindowsMediaPlayer1.URL = OpenFileDialog1.FileName End If End Sub Private Sub Button2_Click( ByVal sender As System.Object, _ ByVal e As System.EventArgs) ...Show All

  • Software Development for Windows Vista Why are so many important design time classes internal only?

    I'm attempting to create an activity in a similar style to IfElseBranchActivity. This allows you to select the type of condition, and then set the properties on it. It does this by using a custom TypeConverter and overriding GetStandardValues which creates instances of the possible derived types, and then you can bind their properties. Now the first bit I've managed to do fine, but when it comes to binding the properties of the objects created by the TypeConverter, I get the error that only dependency properties can be bound. So I look at how the ConditionTypeConverted manages to create properties so that they get bound, and there are literally thousands of lines of code in internal classes like PropertyDescriptorFilter, and internal cl ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Threading - WaitHandle

    Hi, I thought now might be as good a time as any to try and get a grip on Threading in .Net and specifically for the 360. I've been having a a look at the "How to: Use a ThreadPool" article that is linked to at the bottom of the "Thread Pools in the .Net Compact Framework for Xbox 360" article in the XNA Help. The only problem with the example code seems to be that WaitHandle.WaitAll(...) does not exist on the 360, but does under Windows. WaitHandle on the 360 seems to serve no purpose at all as it's only methods are Equals and ReferenceEquals... so I'm at a loss really. If we kick off a load of threads in the constructor of our entry class what is the best way of waiting until all the threads in the ThreadPool ha ...Show All

  • Visual Basic Windows Service - Out of Memory Exception

    I have created a windows service using vb.net which uses a filesystemwatcher to monitoe files in a specifc directory, if images are added to the directory they are resized and saved in a remote directory. The original file is then backed up and deleted from the image directory. The code is as follows Friend Shared Sub ResizeImage(ByVal path As String, ByVal filename As String) Dim asr As AppSettingsReader = New AppSettingsReader Dim sRemoteDirectory As String = CType(asr.GetValue("RemoteDirectory", GetType(String)), String) Dim sBackupDirectory As String = CType(asr.GetValue("BackupDirectory", GetType(String)), String) ' Dim img As Image = ImageFromFile(path) (This was put in as an alternative but p ...Show All

  • Visual C++ How to associate user data to a workbook by using excel automation?

    Hi, I need to store some user data into the excel workbook and those data should be invisible to the user. What is the best way or easy way to do this I am using vc++. Thanks. JJ This forum is for questions about Visual C++ 2005 product itself. For questions about Excel programming (in C++ or not) please use the MSDN newsgroups: http://msdn.microsoft.com/newsgroups/topic.aspx url=/MSDN-FILES/028/201/008/topic.xml ...Show All

  • SQL Server Dts Package foreach loop container and Excel connection manager

    How can I use a foreach loop container with an Excel connection manager. It is virtually impossible to configure the ConectionString property through expressions builder. Everything works fine with a Flat File connection manager but when it comes to Excel, I get the following error message: Error 1 Validation error. Extract Four: Extract Four [1]: The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0202009. Tarification.dtsx 0 0 Please ! Heeeelp ! tel me how I can loop through Excel files ! Rafael, I have now used the expression builder to configure the FilePath property .... and this results in both: A ConnectionString prope ...Show All

  • Software Development for Windows Vista ScardAccessStartedEvent does not signal in Vista services - service hardening?

    Dear all, Migrating our core development platform to Windows Vista, one of our Windows services using smartcards is failing. We have debugged the problem and found that the event provided by the function ScardAccessStartedEvent does not receive notification. This event is supposed to signal when the SmartCard Resource Manager starts. As we have a WaitForSingleObject(event,INFINITE), the service hungs. Testing the same service as an ordinary executable ( registering with -regserver ) I can see it works properly. In XP it works properly both as an executable and service. I have read something about Service Hardening in Vista and I guess it may be caused by privilege reduction. So, I've created some code to enumerate the existing ...Show All

  • Windows Live Developer Forums Changes in AdCenterOrder?

    Is it me or there was no announcement for a new property in AdCenterOrder --> private boolean targetExists; This was raising axis deserialization errors for AdCenterOrder objects... Ok, I downloaded all the wsdl this morning and built a new package for the API so I haven't checked if there were other changes. It does not seem to be a new version either! I am wondering what would happen if there is that kind of modification when the api developer (me for instance) is on vacation... our system will just stop doing its job! ...Show All

  • Visual Basic What is the Me. thing for?

    What is the thing for that starts with Me. and something else goes here I'm just wondering. Thanks. Me. refers to the current instance of the object, it also helps in a sense that intellisense will bring a drop down list of the objects/properties/methods/functions in your current class/instance. Example:   Me.Text = "boo!"   sets the text of the current form to "boo" ...Show All

©2008 Software Development Network