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

Software Development Network >> robinjam's Q&A profile

robinjam

Member List

TheGreenGenie
shimshon
athnetix
Beese
MShetty
ZardoS42
traci779
fripper
NewbieDude
Horst Klein
enric vives
los1975
Chimme
DCollins
baer1208
progames25
drew_p
llap444
engr464495
CBenoit
Only Title

robinjam's Q&A profile

  • Smart Device Development Regarding Text to Speech in Windows Mobile 5.0 Pocket PC using vb

    hi everybody, I'm trying to write a small application regarding text to speech using vb in windows mobile 5.0 pocket pc. It has a simpel text-box and a button, when debugged and text like 'Hi' is enetered ,with button click it usually reads the text in that text box.......My code runs like this... Imports SpeechLib Imports System Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim x As String = Me .TextBox1.Text Dim voice As ISpVoice Dim a As UInteger voice.Speak(x, SpeechVoiceSpeakFlags.SVSFlagsAsync, a) End Sub End Class but it shows an warning and also an error null reference ...Show All

  • SQL Server Expression after table object forced to display on the last page even there are still spaces at the bottom of the first page.

    The following objects are placed on the Report body of the Report pane of SQL Server 2005 Reporting Services : <textbox: expression1> <textbox: expression2> <table:table1 with at least 30 columns and 30 expressions> <textbox: string1> - considered as the Title in the Footer section of the report <texbox:string2> <textbox:expression3> <textbox:string3> <textbox:expression4> <textbox:string4> <textbox:expression5> <textbox:expression6> I can't find any explanation why is it string1 and string 2 of the footer section of my report displayed separately from the expression3 which is aligned on it and the rest of the object on the second page. ...Show All

  • Windows Forms update datgridview

    im able to add rows but nt update or delte them ..plz help Private Sub updatedata( ByVal ds As db1DataSet) OleDbConnection1.Open() Dim addedrows As System.Data.DataSet Dim deletedrows As System.Data.DataSet Dim updatedrows As System.Data.DataSet updatedrows = ds.GetChanges(System.Data.DataRowState.Modified) addedrows = ds.GetChanges(System.Data.DataRowState.Added) deletedrows = ds.GetChanges(System.Data.DataRowState.Deleted) OleDbDataAdapter1.Update(updatedrows) OleDbDataAdapter1.Update(addedrows) OleDbDataAdapter1.Update(deletedrows) End Sub ...Show All

  • Visual Studio Trapping the F5 menu command

    I'm having some difficulty in trapping the F5/Start Debugging command. I've tried adding the command like this: id = new CommandID(VsMenus.guidStandardCommandSet97, 295); command = new OleMenuCommand(new EventHandler(ShowConsole), id); mcs.AddCommand(command); but no luck. I've also added a section in the commands table like this: CMDUSED_SECTION guidVSStd97:295; CMDUSED_END My other user defined commands work ok - I can trap and handle them fine. Is there anything else I need to do Thanks Dermot I've figured out how to do this by overridding the ExecCommandOnNode method of the ProjectNode class. Works fine. But the question still remains as to why ...Show All

  • Windows Forms Continue event processing after a prompt within the Validating event handler

    I have many controls visible simultaneously on my Windows Form. One of them is an "editor," and when the user tries to leave that control by clicking on another control, I want to prompt the user to save their editing session, with a "Yes/No/Cancel" prompt. If the user clicks "Yes" or "No", then (after saving if they clicked "Yes"), the original click event should be processed. if they click "Cancel," the user should remain in the original "editor" control. To cancel, I just set the Validating event handler's CancelEventArgs argument's Cancel property to true (i.e., in C#: e.Cancel = true; ). However, displaying the MessageBox prompt in the Validating event inter ...Show All

  • Visual Studio Express Editions Help Needed

    Hi folks, I need to locate a tutorial for a craps dice game for learning purposes can someone help with a link or something any other information will be helpful. Thank you for your support.   DKB In noway am I just trying to get someone to do my homework hell half of it is already completed. If you take the time and look at my other post you will see for yourself. There is a related post with half the program already in it. Let me defend myself in the prior post concerning homework, so what even if I was searching for help with homework, take the time and think about this, in this type of senario I did not have to mention the things I did I could have been a lowlife ...Show All

  • Architecture usb driver programming

    How can I program a usb driver for windows I am building my own electronic usb peripheral. Exepted the hardware aspect, how can i make windows to identify and handle the peripheral To create a driver you'll need to use the Windows DDK (Driver Development Kit). Last I remember, it contains two or three USB-related sample drivers you can use as a starting point. You might get better information on the microsoft.public.development.device_drivers newsgroup, btw. ...Show All

  • Visual Basic Passing variables

    What would be the correct way to pass a variable from one .vb file to another I get this value when I try to do it with ControlCharts.cn Reference to a non-shared member requires an object reference. chazparks wrote: I get this value when I try to do it with ControlCharts.cn FOr further clarification just post the code you are having problems with... ...Show All

  • Visual Basic textbox in date format in a form....

    can anyone pls tell me how to get date format in form designing but date and time picker. i mean i want to use date in a form without using date and time picker but using a simple textbox with date format... this will be very useful to me..... pls help me...   nogChoco wrote: If you want a textbox that shows the current date + time when designing it, then you'll have to create a customized textbox - add this to your form1's code Public Class Form1 End Class Public Class TimeDateTextBox Inherits System.Windows.Forms.TextBox   Sub New()      Me.Text = System.DateTime.Now. ToString("D") & " " & System.DateTime.Now. ToString("T")   End Sub End Class Now rebuild your appl ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How I get the skin weights?

    Hey, I am trying to understand how animations works in XNA. I have modified the content processor to get the vertex buffer of a mesh from a model in a raw data, and I believe that it is in the vertex buffer where the skin weights indices of each vertex for each bone is stored. Does anyone has some clue how to get the skin weights or how they are stored in the vertex buffer Or even better, does anyone know the proper way to retrieve the vertex buffer, index buffer and skin weigths from a model Yes! I find that much more interested. Now, my problem is I dont have any idea how to do that. The only example I have found is to modify the processor in order to ret ...Show All

  • Visual Studio Team System Loadtestreporting

    I am still not able to figure out how to generate reports this is what i have been doing:- 1)open this link" http://gotdotnet.com/codegallery/codegallery.aspx id=e96e012c-4eaf-4eda-ac26-34fb54e628e3 " where it says that the reports are avaliable. 2)This page opens Microsoft Visual Studio Team System 2005 Load Test Reporting Sample: Home 3)Under this page i see two options on the right bottom side under "DOWNLOADS" a) Load Test Reports b) Sample Load Test Maintenace ASP Application 4)I click on any of these options i get a zipped folder which only contains exe file that you have to run to ...Show All

  • Visual C++ Specifying DLL Location

    I've a C++/CLI console application which utilizes a custom-written DLL. How do I specify the location of the DLL when I startup the application I would like to have the DLL stored somewhere other than the current directory of the application. I think your problem can be solved using "delay-loaded" DLL. You can mark your DLL as delay-loaded using a linker option. Your EXE application will provide an implementation of certain helper functions which load your DLL from required location. This seems to be a large topic and you can start here: http://msdn2.microsoft.com/en-us/library/151kt790.aspx . Alternatively you can load your DLL explicitly using LoadLibrary an ...Show All

  • Visual Studio Express Editions Install Trouble

    If I try to install any Visual Studio Express, It will not install. I don't know what the problem is..... Please help Have you looked in the event viewer if it reports any errors Which express edition are you trying to install Are you able to start the installation application How do you start it What do you do in the installation application What do you do and what happens ...Show All

  • Visual Basic Is there a way to execute breakpoint on a certain value

    Or at least to run the code until a certain value is reached They are called Conditional Breakpoints. You can set a breakpoint by clicking the grey column to the left of the source code for a line . Then right click and click "Conditional" and then type your expression. ((HasCompleted==true) || (Counter>20)) then click okay. You can also do this from the Breakpoint window via debug -> windows -> breakpoints. Hope this helps. ...Show All

  • Visual Studio 2008 (Pre-release) Databinding not working in 1st XAML test app

    Databinding not working in 1 st XAML test app using code from: Get Started Using Windows Presentation Foundation http://msdn2.microsoft.com/en-us/library/ms752299.aspx . I went through the tutorial step by step and re-pasted the code several times to make sure I didn’t miss anything. Databinding works in the fist page when the app loads as I can see items in the list. But when I select an item from the list and click on the button to load the 2 nd page, all the code seems to execute OK but no databinding takes place. I’m stumped at where and how to start trouble shooting this. Although I’m using vb, I found code in c# at: C:\Program Files\Microsoft SDKs\Microsoft SDKs\Windows\v6.0\Samples\Demos\Ex ...Show All

©2008 Software Development Network