• Member Avatar for oussama_1
    oussama_1

    Replied To a Post in vb form save as document can be saved but its an empty page

    by data i mean plain text,now the question is where do your write your data, textbox or richtextbox? if so wordapp.Selection.TypeText(textbox) or wordapp.Selection.TypeText(richtextbox)
  • Member Avatar for oussama_1
    oussama_1

    Began Watching System.Runtime.InteropServices.COMException (0x80040154)

    I have project of vb.net when i make setup and run in my machine it works perfectly but when i run that setup in another machine it is giving "System.Runtime.InteropServices.COMException …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in System.Runtime.InteropServices.COMException (0x80040154)

    does both machine have the same platform ? (if not check this [Click Here](http://www.daniweb.com/software-development/vbnet/threads/463693/application-will-not-run-on-64-bit#post2018387)) check .NET Framework version try to include all your application files in your software (go to …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in vb form save as document can be saved but its an empty page

    try this Imports Microsoft.Office.Interop.Word wordapp = New Word.Application worddoc = New Word.Document 'create word file worddoc = wordapp.Documents.Add() worddoc.Activate() 'save data wordapp.Selection.TypeText("YOUR DATA") 'save as wordapp.Dialogs(WdWordDialog.wdDialogFileSaveAs).Show() 'close app worddoc.Close() wordapp.Quit() …
  • Member Avatar for oussama_1
    oussama_1

    Began Watching Form structure

    Hi Is there a way a vb form structure the same as its backgroud picture? Its same with making the form invisible and let its background picture remain Im trying …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in Form structure

    yes like what minimalist said and try to add mouse control to your form so you can move it around Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" _ (ByVal …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in How to generate thumbnails which preserve the aspect ratio

    ok now i get it. if you add the photos to the app resources, will that work for you ?
  • Member Avatar for oussama_1
    oussama_1

    Began Watching vb form save as document can be saved but its an empty page

    Hello.. good day evryone, i encounter a problem with my save as form..i use savefiledialog..the result is that the page is saved..but when i open the word doc, it is …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in vb form save as document can be saved but its an empty page

    Exactly! your code will create an empty word file. you need to add your data to the MS word file programmatically
  • Member Avatar for oussama_1
    oussama_1

    Began Watching c# xna simple camera

    So i'm making an rpg game in xna. I can move my player around the screen, however it can also move off the screen. How can I implament a simple …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in c# xna simple camera

    place this script on your camera transform.position = new Vector3(player.transform.x,y,z)
  • Member Avatar for oussama_1
    oussama_1

    Began Watching How to generate thumbnails which preserve the aspect ratio

    As part of a project to manage my collection of photos, I wanted to add the capability of displaying a series of files as thumbnails. This posed me with three …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in How to generate thumbnails which preserve the aspect ratio

    try adding the windows Explorer Browser, its much faster itll do the job.. just add your extension filter to it and set it to thumbnails. download Microsoft.WindowsAPICodePack.Shell.dll gd luck
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in where to start fro create video game

    game scripting of course differs from web or software scripting cause you will be scripting for prefabs, physics, how much life does your player still got or does he collide …
  • Member Avatar for oussama_1
    oussama_1

    Began Watching where to start fro create video game

    i make m3d modelling in AUTODESKMAYA and animation i would like to know how can create with a small action game (video game) waht language i must use what tolls …
  • Member Avatar for oussama_1
    oussama_1

    Replied To a Post in where to start fro create video game

    i work with unity..amazing game engine..we are team of two..my buddy is a 3d artist he deals with 3dmax and maya for modeling and creating enviroments and lightning..backing etc... and …

The End.